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

    Hi guys

    To make the glassy header a little darker I have added the following CSS. This works fine on desktop, however on mobile menus I would like it to display white (#FFFFFF), not the 60,60,60 grey color.

    ———————————
    #top .av_header_glassy.av_header_transparency #header_main {
    background-color: rgba(60,60,60,0.3);
    }
    ———————————
    Is there a work around for this?

    Cheers

    #598781

    Hey pantoni,

    Could you provide us with a link to the site in question so that we can take a closer look please?

    Thanks,
    Rikard

    #598789

    Hi Rikard

    Please see below.

    thanks

    • This reply was modified 8 years, 7 months ago by pantoni.
    #599402

    Hi!

    Try the following CSS to change the color on mobile only:

    @media only screen and (max-width: 767px){
    #top .av_header_glassy.av_header_transparency #header_main {
    background-color: #FFFFFF;
    }
    }

    Cheers!
    Jordan

    #599414

    Thanks Jordan

    That worked!

    cheers

    #599451

    Hi!

    Glad I could be of assistance!

    Cheers!
    Jordan

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.