if I select a page for 'additional homepage text' the margin below it on the homepage is huge it's about 200 pixels height lost space and I could use that ;)
where in the code can I change this margins?
(9 posts)
(2 voices)
if I select a page for 'additional homepage text' the margin below it on the homepage is huge it's about 200 pixels height lost space and I could use that ;)
where in the code can I change this margins?
Hello roderickvs,
If possible send us a link to your page and we'll take a closer look.
http://www.antonissen.org/wordpress/
below the text under the 4 images is al lot of space, I'd love to reduce that
Try adding this in Dashboard -> your theme -> General Settings -> Custom CSS,
#content_inner { padding-bottom: 0px !important; }
thanks!
tried it but it doens't work I can make the margin larger, nut setting it to zero still leaves a huge space between the content and the following ruler / content
on the test site it seemed to work http://www.antonissen.org/wordpress/ there I used fancy images in that section / on that page
on the .nl domain I'm using a portfolio shortcode .., could it have someting to do with margins of the different shortcodes??
You can do this to reduce it further,
#main { min-height: 0px !important; }
And if it needs to go down further then you can set the height like so,
.is_home #main { height: 100px !important; }
that worked! thanks!
You must log in to post.