[Support request] Trying to change background and text color in mobile sub menu

Home Forums Support [Support request] Trying to change background and text color in mobile sub menu

Home Forums Support Trying to change background and text color in mobile sub menu

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1619898
    unoaime

    Looked in customize > colors and couldn’t find anything.

    Tried

    .mobile-menu #sub-menu ul li {
    background-color: white;
    }

    to test and nothing happens. Fiddled about it chrometools inspect aswell and couldn’t figure it out.

    #1620197
    David
    Staff
    Customer Support

    Hi there,

    try this CSS:

    .slideout-navigation.main-navigation ul ul {
        background-color: #fff;
    }
    #1620273
    unoaime

    Works a charm. Just wondering what the correct syntax is for changing the hover text color

    .slideout-navigation.main-navigation ul ul li:hover {
    		color: #0a508c;
    }

    doesn’t work

    #1620446
    Ying
    Staff
    Customer Support

    Hi Chris.

    Try this:

    .slideout-navigation.main-navigation ul ul li a:hover {
        color: #0a508c;
    }
    #1621018
    unoaime

    Sadly didn’t work. Something must be overwriting it somewhere. :/

    #1621409
    David
    Staff
    Customer Support

    Try:

    .slideout-navigation.main-navigation ul ul li:hover a {
        color: #0a508c;
    }
Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.