Hi
As I mentioned in the title, I want a transparent header on mobile that turns solid black when scrolling.
It works fine on desktop, but I can’t get it to work on mobile.
Just in case this issue is caused by me tweaking the theme settings for hours, I’ve attached the login credentials so you can have a quick look before suggesting any CSS code.
Best regards
Roland
Hey Scanmark,
Thank you for the inquiry.
The sticky behavior and transparent layout options are disabled on mobile view by default but you can try this css code:
@media only screen and (max-width: 767px) {
/* Add your Mobile Styles here */
.responsive #top #wrap_all #header {
position: fixed;
top: 0;
}
}
Best regards,
Ismael