• Resolved Blackhallow

    (@blackhallow)


    Hello everyone,

    The site in question: http://theyellowmouse.com/wordpress/

    I am using a custom menu so that I can give the sidebar links different titles than the pages. All works fine except I cannot figure out how to change the color/style of the links so something better than the standard blue underlined look. I tried adding a CSS class to the menu items under Appearance > Menu, but it did not work.
    The links also do not center in the sidebar, but I suspect that will also be cleared up once I discover how to style the menu items.

    Any help would be very much appreciated!

Viewing 1 replies (of 1 total)
  • use development tools to get the id of the every li item in the sidebar..

    like for the example the home page menu has an id ‘menu-item-32`. now you can give any css for this menu..

    for the alignment of menus search for this on style.css

    #sidebar li {
    list-style-type:none;
    text-align:center;
    }

    change this center to left….

    I think now your problem is solved, if not please reply to this answer…

Viewing 1 replies (of 1 total)
  • The topic ‘CSS for a custom menu’ is closed to new replies.