• Evon

    (@evon)


    Hello i have tried to search the entire theme for the sub menu background code but can’t seem to find where to change it.

    It is currently white and i would like to change it to black or a different color or if i can change the white font which doesn’t show because of the white background please help?

    The page I need help with: [log in to see the link]

Viewing 5 replies - 1 through 5 (of 5 total)
  • Stef

    (@serafinnyc)

    Currently your theme is controlling the color. Not by any dynamic CSS but by the theme itself. Here is the URL for the CSS

    Or simply add a custom CSS to Additional CSS and you’ll be all set.

    #menu_wrapper .nav ul li ul, #menu_wrapper div .nav li ul {
        background: #121212 !important;
        
    }
    Thread Starter Evon

    (@evon)

    Thank you your code works however when i hover over it the white background comes up again:(

    Stef

    (@serafinnyc)

    That’s because the a:link inside that div has a hover of #ffffff

    So now you’re going to rewrite what I gave you to be on the a:link too

    #menu_wrapper .nav ul li ul, #menu_wrapper div .nav li ul a,
    #menu_wrapper .nav ul li ul, #menu_wrapper div .nav li ul {
        background: #121212 !important;
        
    } 
    Thread Starter Evon

    (@evon)

    Thank you very very much you been amazing i have one last question
    when i visit the site through mobile i seem to see a grey color above the logo and i’ve tryed to find the color code using a searching folder program however i’m not successfull

    https://ready.mobi/#1529107-70al

    that’s what it looks like on mobile how can i find where that grey is and remove it or make it black but id like for it to be gone ??

    Stef

    (@serafinnyc)

    You have too many classifications on that one selector. Some are in the grid.css and some on a custom.css. Too many chefs in the kitchen. There’s at least 5 that I saw alone. You need to clean up that css. It’s a mess.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Change Sub Menu Background Color’ is closed to new replies.