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

    how can I set the burger icon to be black no torquoise? please send css

    #1479082

    if you enlarge the logo (as mentioned on the other post ) you had to correct the padding-top of #main ( for that screen-width)

    #top .header_color .av-hamburger-inner, 
    #top .header_color .av-hamburger-inner::before, 
    #top .header_color .av-hamburger-inner::after {
      background-color: #000;
    }

    so change the css rules for that too:

    @media only screen and (max-width: 989px) {
      .responsive.html_header_top #top #main {
        /* padding-top: 320px !important; */
        padding-top: 400px !important;
      }
    }
    
    @media only screen and (min-width: 768px) and (max-width: 989px) {
      .responsive.html_mobile_menu_tablet.html_header_top #top #main {
        /* padding-top: 320px !important; */
        padding-top: 420px !important;
      }
    }
    #1479088

    you said change this:
    “so change the css rules for that too.

    @media only screen and (max-width: 989px) {
    .responsive.html_header_top #top #main {
    /* padding-top: 320px !important; */
    padding-top: 400px !important;
    }
    }

    @media only screen and (min-width: 768px) and (max-width: 989px) {
    .responsive.html_mobile_menu_tablet.html_header_top #top #main {
    /* padding-top: 320px !important; */
    padding-top: 420px !important;
    }
    }

    So I understand that it is already there? Correct? but I could not find this in my CSS anywhere? So I just added it but it doesn’T seem to do anything.

    #1479097

    Change means not add !
    you placed it on top of the quick css.

    but my settings are after your (top) insertion so the code is overwritten by mine.
    i changed that code as mentioned.

    #1479099

    PS : du hast jetzt die container weite auf maximal 1000px gestellt ?
    Na das hat sich dann ja richtig gelohnt, für die 10px unterschied das Menü zu stylen ;) bis (990px ) bis der Hamburger greift

    ___________

    PS : you have now set the container width to a maximum of 1000px ?
    Well, that was really worth it to style the menu for the 10px difference up to (990px ) until the hamburger takes over ;)

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