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

Bullets Displayed in First Submenu Row

2 Answers 64 Views
Menu
This is a migrated thread and some comments may be shown as answers.
Bruce
Top achievements
Rank 1
Bruce asked on 18 May 2011, 09:56 PM
All,

I am using a custom version of the Sitefinity skin for my RadMenu, and am having one issue I can't seem to find. For some reason, the first row of submenus is showing a bullet. I can't seem to find where in the skin I need to make the change to set the bullet invisible using     list-style-type:none;

Any and all help is greatly appreciated!

Thanks,
B

2 Answers, 1 is accepted

Sort by
0
Accepted
Shinu
Top achievements
Rank 2
answered on 19 May 2011, 05:56 AM
Hello Bruce,

I am not quite sure about the scenario and most probably this type of issue happens when you are having some global CSS which overrides the control appearance. Check out the following forum which discussed similar scenario.
http://www.telerik.com/community/forums/aspnet-ajax/window/radwindow-displays-icons-at-the-bottom-of-the-window.aspx#1649595

Thanks,
Shinu.
0
Bruce
Top achievements
Rank 1
answered on 19 May 2011, 12:00 PM
Hi Shinu,

I copied the following from the DotNetNuke portal.css file into the custom menu.sitefinity.css file. I added the list-style-type:none; and it worked like a charm. Thanks for the assistance!

/* Removes bullets in FF*/
UL LI  
{
    list-style-type:none;
}
 
UL LI LI   
{
    list-style-type:none;
}
 
UL LI LI LI {
    list-style-type:none;
}
 
OL LI   {
    list-style-type:none;
}
 
OL OL LI    {
    list-style-type:none;
}
 
OL OL OL LI {
    list-style-type:none;
}
OL UL LI   {
    list-style-type:none;
}

Tags
Menu
Asked by
Bruce
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Bruce
Top achievements
Rank 1
Share this question
or