lisaxhearts Posted August 2, 2020 Share Posted August 2, 2020 Skye has a fixed, or sticky, header. It can't be disabled in Styles, so to have the header move with the rest of the page, I have to do something in CSS. I tried the following code - Quote .header-announcement-wrapper { position: absolute; } While this did solve the problem, it made mobile view a mess. Before the changed code, my site on mobile did not stick to the top and so it wasn't a problem. With this added code, it disables most of the header, leaving only the logo that sits on top of other content. Is there a way I can implement this code to only the desktop view so it doesn't affect mobile? Thanks, -Lisa Link to comment
Solution tuanphan Posted August 2, 2020 Solution Share Posted August 2, 2020 Edit your code @media screen and (min-width:641px) { .header-announcement-wrapper { position: absolute; } } lisaxhearts 1 Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message How to: Setup Password & Share url - Insert Custom CSS - Page Header - Upload Custom Font - Upload File - Find Block ID - Contact Customer Care Link to comment
lisaxhearts Posted August 2, 2020 Author Share Posted August 2, 2020 You're amazing. Thank you so much. This has been making me crazy. Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment