
-
AuthorPosts
-
March 11, 2025 at 1:03 pm #1479080
how can I set the burger icon to be black no torquoise? please send css
March 11, 2025 at 1:23 pm #1479082if 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; } }
March 11, 2025 at 2:52 pm #1479088you 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.
March 11, 2025 at 4:53 pm #1479097Change 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.March 11, 2025 at 4:57 pm #1479099PS : 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 ;) -
AuthorPosts
- You must be logged in to reply to this topic.