White header title bar in mobile view

http://kidsbalance.bike/demo-home/

White header title bar in mobile view.
how to get it to stay transparent like it does in the desktop view

Also is there a way to get the parallax the desktop has to work on the mobile phone?

Hi There,

Please try adding this custom CSS under Theme Optiions > CSS:

@media (max-width: 979px){
     body.x-navbar-fixed-top-active .x-navbar-wrap {
        height: 0;
     }
}

Also add the following CSS to your Theme Options -> CSS area.

@media (max-width:979px){
	.x-section.bg-image.parallax, .x-section.bg-pattern.parallax {
		background-attachment: fixed !important;
		background-position: center center !important;
	}
}

We aren’t sure if the code will work 100%, but you can try it. For specific issues, read the following (https://stackoverflow.com/questions/23236158/how-to-replicate-background-attachment-fixed-on-ios)

Hope that helps and thank you for understanding.

1 Like

Worked wonderfully, thank you very much.
now if I can just get better at design :wink:

Hi,

Of course, you can. visit the following link below it might help. :wink:

Glad we could help,
Cheers!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.