• jonwainwright

    (@jonwainwright)


    hi im using the pinboard theme and have made a few changes with a child theme. I have changed the colour of the menu and would like the drop down part of the menu to be the same colour as the hover over colour but cant find where to do it i think its something to do with this but cant seem to get it right

    #access li li a {
        background: none repeat scroll 0 0 #74AFAD;
        border-bottom: 1px solid #ffffff;
        border-top: 1px solid #ffffff;
        font-size: 13px;
        line-height: 33px;
        margin: 0;
        min-width: 150px;
        overflow: hidden;
        padding: 5px 24px;
        text-align: left;
    }
    
    #access li ul {
        box-shadow: 0 0 3px #74AFAD;
        display: none;
        font-weight: normal;
        height: auto;
        margin: 0;
        min-width: 240px;
        padding: 0;
        position: absolute;
        text-transform: none;
        z-index: 9999;
    }

    sorry the website is https://www.motortrader-insurance.com

Viewing 3 replies - 1 through 3 (of 3 total)
  • Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    In your Child Theme style.css file or Custom CSS section of the dashboard, where you made the change to hover over colour before, add some more selectors.
    E.g,

    #access li a,
    #access li li a:hover {
     ...
    }

    Focus on adding this selector #access li li a:hover
    and/or this selector #access li li a

    Thread Starter jonwainwright

    (@jonwainwright)

    i didn’t make the change in the child theme there was an option on the pinboard theme options to change the menu colour and the hover over colour but not the drop down menu colour (hope that makes sense).

    I have a limited knowledge of html/php/html and i mean VERY limited. I have looked and looked at the style css but cant find what i need to change

    Thread Starter jonwainwright

    (@jonwainwright)

    any ideas guy sorry to be a pain?

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘drop down menu’ is closed to new replies.