snrdfrd Posted November 8, 2019 Share Posted November 8, 2019 In mobile display there is always a white space across the top of the page which I would like to go away, so as to display full-bleed of images as similar to desktop display. If I view the CSS code with inspector, I see that there is a 'padding-top; 55px' associated with the site container described under Mobile Style. For the life of me I can't figure out how to over-ride this with custom code. Any suggestions? ---------------------------------------------------- /*Mobile Padding At Header Be-Gone*/ .site-container { padding-top: 0px; } ---------------------------------------------------- Link to comment
tuanphan Posted November 10, 2019 Share Posted November 10, 2019 @snrdfrd Can you share link to your site? 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
snrdfrd Posted November 11, 2019 Author Share Posted November 11, 2019 Never-mind, I solved my own problem. I am sure I tried the script below before - must have had some syntax wrong or something... Thx for nothing all - I'm the best! ------------------------------------------------------------------- /*Padding At Mobile Header - Be-Gone*/ .site-container { padding-top: 0px !important; padding-bottom: 0px !important; } ------------------------------------------------------------------- Link to comment
Recommended Posts
Archived
This topic is now archived and is closed to further replies.