Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS WordPress sidebar custom menu Re: WordPress sidebar custom menu

#106316
AntonNiklasson
Participant

One way is to check out the outputted source code in your browser and from there figure out how to style it. You might find that WP automatically puts classes like .custom-menu to an un-ordered list when showing custom menus. I’m not saying it is exactly .custom-menu, it’s something like that usually.

sidebar .custom-menu {
list-style: none;
}