-
AuthorPosts
-
December 10, 2021 at 11:38 am #1332277
Hey,
I need help with a Responsive adaptation.
1. The header is in a transparent light turquoise in the normal version. On the tablet and smartphone version there is a gold colour behind the transparent colour. I don’t know where I specified this colour.
2. On the I-Phone 7, the Karatone font for the header is not displayed.
The link to the page is in the private content.
Thanks for the help and best regards,Sabine
Translated with http://www.DeepL.com/Translator (free version)
December 11, 2021 at 8:12 pm #1332431Hey Sabine,
Thank you for the link to your site for mobile your header background color is transparent:@media only screen and (max-width: 767px) { #top #wrap_all .av_header_transparency { background-color:transparent; color: #22666d; border-color: #d0e4e3 } }
but the background color for the “wrap_all” div is #947d52
.html_stretched #wrap_all { background-color: #947d52; }
which is what you are seeing, you could change the body background color in the theme options or change the header background color in your css from transparent to a color, or you could move the background image up a little with this:
@media only screen and (max-width: 767px) { .responsive #top #wrap_all #main { margin-top: -80px; } }
After applying the css, please clear your browser cache and check.
Best regards,
MikeDecember 14, 2021 at 1:53 pm #1332760Hej,
I don’t understand fully what mean.
I want a transparent header in the mobile versions. What code do I need? All that codes you sent me, didn’t work. I’ll send you two screenshots with ink to Dropbox in the private content.
Thank you – my english is not so perfect and I used a translator.
I have also not set the golden colour #947d52 as background anywhere – only in the socket and the footer. I don’t even know where I have set this.
Thanks again for the help and best regards
Sabine
- This reply was modified 2 years, 11 months ago by TakiwaSoulArt.
December 15, 2021 at 1:21 pm #1332946Hi,
Please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:@media only screen and (max-width: 767px) { .responsive #top #wrap_all #main { margin-top: -80px; } }
After applying the css, please clear your browser cache and check.
Best regards,
MikeDecember 15, 2021 at 6:00 pm #1333005Hej,
thanks for the code. But when I use this code, the burger menu is completely gone. But that should already be visible.
Thanks again for the help
Sabine
December 16, 2021 at 12:32 pm #1333114Hi,
This is a very odd issue. The header is not visible but the mobile menu is still clickable. We cannot find any issue with the css and when we tried to increase the z-index value of the header, it didn’t affect the visibility of the mobile menu. Did you apply other css to the header?
Best regards,
IsmaelDecember 16, 2021 at 5:36 pm #1333159Hej,
I don’t know, but feel free to check the codes. The login data is in the private content.
Thank you so much for helping.
Kind regards, Sabine
December 17, 2021 at 1:37 pm #1333257Hi,
With the above solution, the background image is moved up under the transparent header, the reason you don’t see the burger menu is because it is the same color as the background.
Try this css instead that changes your burger menu to black so you can see it, feel free to adjust the color to suit:@media only screen and (max-width: 767px) { .responsive #top #wrap_all #main { margin-top: -80px; } #top .av-burger-overlay li li .avia-bullet, #top .av-hamburger-inner,#top .av-hamburger-inner::before, #top .av-hamburger-inner::after { background-color: #000 !important; } }
Best regards,
MikeDecember 17, 2021 at 2:06 pm #1333258Hi Mike,
thank you, it is great – it works now. And you can close this topic.
Kind regards,
Sabine- This reply was modified 2 years, 11 months ago by TakiwaSoulArt.
December 17, 2021 at 2:23 pm #1333262Hi,
Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
Mike -
AuthorPosts
- The topic ‘Header background is not displayed as set’ is closed to new replies.