-
AuthorPosts
-
June 13, 2015 at 1:26 pm #300923
Any chance I can get some assistance in reducing the space above my <h2> tags and the content right above it? Seems like there’s a large gap right before every h tag I enter.
Thanks!
June 13, 2015 at 1:30 pm #300924I’d also like to decrease the space on this page between the title and the content, but only on the page. On the posts it seems my spacing is fine.
Please see link below:
uphoming.com/about
June 14, 2015 at 3:04 am #301224Hello There,
Thanks for writing in!
To reduce the space above your <H> tags, please add the following css code in the customizer, Appearance > Customize > Custom > CSS
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 { margin-top: 20px; }
And to decrease the space between the title and the content of the page, please add the following css code in the customizer, Appearance > Customize > Custom > CSS
.offset.cf { margin-top: 10px; } .x-header-landmark { padding-bottom: 0px; } .entry-content { margin-top: 0; }
Feel free to change the numbers. Please let us know how it goes.
June 14, 2015 at 10:18 am #301440The top of the page code seems to work, although I had to not use the entry content bracket due to it affecting the actual posts.
The code for reducing the heading space above the headers is not working. Please assist, thank you!
June 14, 2015 at 12:44 pm #301552Hi There,
If you want to change only in pages not in posts then just use a preceding .page class. Like –
.page h1, .page h2, .page h3, .page h4, .page h5, .page h6{ margin-top: 20px; }
If you want to reduce the heading space then also use margin-bottom: 0 property. Like –
.page h1, .page h2, .page h3, .page h4, .page h5, .page h6 { margin-top: 20px; margin-bottom: 0; }
If you want to reduce it even more then use –
.entry-content p { margin-bottom: 10px; }
Hope that will solve your problem.
Thanks
June 14, 2015 at 12:55 pm #301565thanks will try this.
June 14, 2015 at 12:57 pm #301568Let me reclarify the issue.
On my Pages AND posts, I want to reduce the space above each h tag. Both of the codes you provided have not worked.
On my Pages ONLY, I want to reduce the space between the content and the title.
Both of the provided codes have not yet worked.
Thanks.
June 14, 2015 at 3:03 pm #301657Hello There,
Sorry for the confusion. Would you please take a screenshot and mark the space you want to reduce? That will help to identify your issue correctly.
Thanks
June 14, 2015 at 4:27 pm #301716June 14, 2015 at 4:48 pm #301729Hi There,
Try the codes below. It should solve your issue. Feel free to change the values with your own.
.page .x-header-landmark { padding-bottom: 0; } .page .entry-content { margin-top: -10px; } .page h3 { margin-top: 20px; }
Cheers!
-
AuthorPosts