How to reduce padding beneath home page image in motif?
-
how to reduce padding beneath home page image on motif?
The blog I need help with is: (visible only to logged in users)
-
You can add and edit this code to your Custom CSS:
.entry-summary, .entry-content { padding: 1.3334em; }Please let us know if you need any further assistance!
-
I stated my need incorrectly. It’s not padding that needs reducing.
I’d like to reduce the vertical white space after my last line of text in the Page entries. It looks like there are two lines of white space. Perhaps reduce to only one line of space between text and block edges.
-
-
Thanks for helping.
On the Home Page, the white space beneath the image “Everything you want”. It seems there is too much space within the entry. Same with the Strategies and Examples pages…where I use the grid layout. It feels like that Parent page entry has too much bottom-margin space after text or images.
-
That white space can be removed with the CSS I posted in my previous reply. Let me know how that goes.
The grey space can be reduced by using this CSS code:
.hentry { margin-bottom: 55px; }You can read more information about editing CSS at http://support.wordpress.com/editing-css/
-
The grey space reduction code worked as planned. Thank you.
Regarding the white space, the proposed code eliminates margins all around the text, so what happens is the text in the sub-page summary windows ends up touching the edges of the windows.
What I’d like to do is reduce only the bottom and or top margin, not the side margin.
-
Sorry about that, you just need to add and adjust this code:
.entry-content { padding: 1.3334em; } -
Unfortunately that code eliminates margins around the text. You can see this if you click through to a child page article…the text is on the edge of the entry box.
-
I see what you mean. Please try this instead:
.post-330 .attachment-motif-page-thumbnail.wp-post-image { margin-bottom: -10px; } .entry-meta { display: none; } .post-330 .entry-content { display: none; } -
-
- The topic ‘How to reduce padding beneath home page image in motif?’ is closed to new replies.