snrdfrd Posted November 8, 2019 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; } ----------------------------------------------------
tuanphan Posted November 10, 2019 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 Contact Customer Care - Learn CSS - Buy me a coffee (thank you!)
snrdfrd Posted November 11, 2019 Author 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; } -------------------------------------------------------------------
Recommended Posts
Archived
This topic is now archived and is closed to further replies.