• Resolved Akasashasha

    (@akasashasha)


    Hello,

    how to highlight the current page in the menu (I’d like to change the background color of the current menu) ?

    thank you

Viewing 6 replies - 1 through 6 (of 6 total)
  • Depending on your theme, generally, each page has a unique class or id assigned to it (look at the code using Firebug) — so you can use that as part of a CSS selector to target the menu when on that page. Without seeing your site no way to be more specific.

    Thread Starter Akasashasha

    (@akasashasha)

    thanks, I found the solution … sorry I forgot to say I’m using Esplanade theme by onedesigns.com …

    sooo in case someone needs it, it is very simple :
    if using this template, edit the file wordpress/wp-includes/css/admin-bar.css and add this line :

    #access li.current-menu-item a { background-color:#code_of_the_color_you_want_as_background; }

    thats it !

    see you guys

    PS : I think it is the same process for theme twenty eleven

    Are you trying to change the menu on your actual site? If so, that file is not the correct place to make CSS changes…

    Thread Starter Akasashasha

    (@akasashasha)

    I’m working locally at the moment … why isn’t it the right place ? if that is a question of child theme, I made a complete copy of the theme and renamed it so no problem if an update comes … anyway, I always update my website with winmerge or the likes … more work, but much safer, and this enable me to learn about any new features.

    admin-bar.css styles the admin bar, not the theme. You should be putting any CSS changes in a style.css file (unless you theme is very atypical and has some other set up).

    Thread Starter Akasashasha

    (@akasashasha)

    so … that means I should make the changes in my style.css and enter a lign of code for each of my menu item ?
    is that right ?

    edit : ok, I added this line in my style.css

    #access li.current-menu-item a {
    background-color:#B0648B;
    }

    … funny that firbugg was pointing to the admin-bar.css …

    thank you for your help

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Highlight the current page in menu’ is closed to new replies.