Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #679202

    Several days back I had changed a few colour settings not realising at the time that I had inadvertently changed the mobile menu’s icon box colours. So now when viewing on the phone the menu box is essentially white with the three dashed lines also white. The hover over is ok which shows up as blue.

    Just wondering which colour elements and where in the theme options I can change for this?

    Cheers
    john

    PS. the site is not viewable hence no link

    #680415

    Hi Guys,

    Could anyone point me to where the mobile icon box colours are changed?

    Cheers
    John

    #680713

    Hi,

    use this code inside Quick CSS field:

    #advanced_menu_toggle, #advanced_menu_hide {
    color: red;
    }
    

    and adjust color as needed.

    Best regards,
    Andy

    #681075

    Thanks Andy. Did the trick.

    Question: If I am using a background image in the header that sits behind the logo how may I have just a background color when viewed on mobile? Is there an admin panel setting or is this again a bit of CSS?

    Cheers
    John

    #681544

    Hi John,

    You can add CSS only for mobile screens by using media queries:

    @media only screen and (max-width: 767px) {
    MOBILE STYLES GO HERE
    }

    Regards,
    Rikard

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