How can remove the top padding across all pages?
-
We recently overhauled this site, and I cannot seem to find the correct CSS to remove the top padding from some of the pages. The homepage is just fine, but About, Services, Join our team, and Contact still show a large amount of white space (padding). This is the current CSS, but it obviously only targets the homepage.
.home .hentry {padding-top: 0; padding-bottom: 0;}
.postid-181 .hentry {padding-top: 0; padding-bottom: 0;}
/* Fixed Header */
position: fixed;
top: 0;
left: 0;
right: 0
Please help so I can remove the padding from all pages. Thank youThe blog I need help with is: (visible only to logged in users)
-
for others that may need support in the future
/* Remove padding from all pages */ .page .hentry, .single .hentry, .archive .hentry, .blog .hentry { padding-top: 0; padding-bottom: 0; }
- The topic ‘How can remove the top padding across all pages?’ is closed to new replies.