Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #1089084

    Hi,

    I can’t figure out how to change the color of the word ‘menu’ I added with the next code:

    /* Add word menu next to hamburger icon
    /*————————*/
    .av-hamburger strong {
    display: block!important;
    position: absolute;
    left: -90%;
    top: 0;
    font-size: 20px;
    transform: translate(-90%, -44%);
    }

    As you can see the word menu is green and the burgermenu is white and I want the word menu also to be white. But will scroll down it has stay green as it is now.

    Can you help me out?
    Best regards, Sascha

    #1090424

    Hey Sascha,

    This is the class:
    .header_color strong

    you need here to add a color: value.

    Best regards,
    Basilis

    #1091912
    This reply has been marked as private.
    #1092308

    Hi Sascha,

    Please add the following css:

    
    @media only screen and (min-width: 990px) {
      .av-hamburger strong {
        color: #fff;
      }
    }
    

    Best regards,
    Victoria

    #1092640
    This reply has been marked as private.
    #1092832

    Hi,

    Great, I’m glad we could help. Please let us know if you should need any further help on the topic or if we can close it.

    Best regards,
    Rikard

    #1093552
    This reply has been marked as private.
    #1094021

    Hi Sascha,

    Please try the code like this:

    
    @media only screen and (min-width: 990px) {
     .av_header_transparency .av-hamburger strong {
        color: #fff;
      }
    }
    

    Best regards,
    Victoria

    #1096426
    This reply has been marked as private.
    #1096613

    Hi,

    If you need additional help, please let us know here in the forums.

    Best regards,
    Jordan Shannon

Viewing 10 posts - 1 through 10 (of 10 total)
  • The topic ‘Color word menu before burgermenu’ is closed to new replies.