• Resolved cvf

    (@cvf)


    Developing a new site and in the menu can’t seem to sort out the text color for current page hover. Text needs to turn white on hover as background changes to blue. Works everywhere except for current page.

    Not an option in weaver admin, tried all the css I could think of, looked at with firebug and still don’t get it. Sure it’s something simple I’m just overlooking.

    Site is here. Thanks for the help.

Viewing 6 replies - 1 through 6 (of 6 total)
  • Looks liek this is what’s causing it to stay green

    .menu_bar .current_page_item > a, .menu_bar .current_page_ancestor > a {
        color: #008C82 !important;
    }
    Thread Starter cvf

    (@cvf)

    Thanks, zeaks. I should have been more specific with my question. You’ve definitely identified the problem, but the real issue is that I haven’t found a way to fix it that only changes the color on hover. CSS help is what I really need here.

    Could you post what CSS you are using for the menu so far? Please also add any options you’ve choosen within Weaver admin that control the menu colors.

    Wouldn’t just changing the above code I posted to #FFFFFF work? I find menus can be confusing with the hover on/off active and submenus so maybe I’m totally wrong>.<

    Thread Starter cvf

    (@cvf)

    Thanks for the effort. I’ve found changes to WeaverII much more challenging than previous versions – especially for menus.

    Changing the code above to #FFFFFF makes the text white all the time, so it will not show up at all unless you hover. I tried adding `.menu_bar .current_page_item > a: hover, .menu_bar .current_page_ancestor > a: hover {
    color: #008C82 !important;
    }`
    to no avail. I’ve tried repeatedly to style both .current_page_item and .current_page_ancestor, but I don’t understand the structure of the CSS the way it’s written in Weaver II and can’t get it to change anything.

    Here’s a screengrab of the settings I have for Weaver menus. I’ve removed all other custom CSS I’ve tried. The complete code (at least what I’ve been able to find) in the Weaver stylesheet is:

    [131 lines of CSS moderated as per the Forum Rules. Please just post a link to your site.]

    Thread Starter cvf

    (@cvf)

    Solved.

    .menu_bar .current_page_item > a:hover, .menu_bar .current_page_ancestor > a:hover {
        color: #FFFFFF !important;
    }

    Had already tried this but left out !important; Doesn’t work without it.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Problem with current page hover – WeaverII’ is closed to new replies.