This is a migrated thread and some comments may be shown as answers.

sitefinity skin: dots at title bar

1 Answer 25 Views
Dock
This is a migrated thread and some comments may be shown as answers.
prayag ganoje
Top achievements
Rank 1
prayag ganoje asked on 03 May 2011, 12:03 AM
Hello,

I used sitefinity skin for the raddcok control. Its really awesome. But there are few dot like appearance at the start of title bar.

It consumes some space. How to remove those dots? Please see attached image.

1 Answer, 1 is accepted

Sort by
0
Accepted
Bozhidar
Telerik team
answered on 03 May 2011, 08:47 AM
Hello,

The following code should be useful for you:

<%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<head runat="server">
    <title></title>
    <style type="text/css">
        div.RadDock_Sitefinity tr.rdTop td.rdCenter
        {
            background-position: -10px 0 !important;
        }
         
        .RadDock_Sitefinity .rdTitleBar em
        {
            text-indent: 4px !important; /*  you could change it to what is needed*/
        }
    </style>
</head>
<body>
    <form id="form1" runat="server">
    <asp:ScriptManager ID="sc1" runat="server">
    </asp:ScriptManager>
    <telerik:RadDock ID="rd1" runat="server" Width="300" Height="300" Skin="Sitefinity"
        Top="30" Left="30" Title="Title">
    </telerik:RadDock>
    </form>
</body>
</html>


All the best,
Bojo
the Telerik team

Browse the vast support resources we have to jump start your development with RadControls for ASP.NET AJAX. See how to integrate our AJAX controls seamlessly in SharePoint 2007/2010 visiting our common SharePoint portal.

Tags
Dock
Asked by
prayag ganoje
Top achievements
Rank 1
Answers by
Bozhidar
Telerik team
Share this question
or