add space between posts and widgets
-
Hi, I need to increase the space between the posts (in circles) and the widget, how can I do it? I have the custom design so I can change the css
you can see the blog here: http://www.vidicultural.wordpress.comthanks
The blog I need help with is: (visible only to logged in users)
-
We can increase the top padding of the widget by 50 px and keep rest of the paddings (right, bottom, and left) as-is to 0px, 50px and 0px respectively).
Please try the following CSS and increase top padding to 100px ( original padding is 50px).
.widget-area { padding: 100px 0 50px 0; }You can adjust 100px to whatever you like if you need more space than 100px at the top of the widget area.
-
Hi!
first of all thank you for your reply!
I’ve tried and it’s perfect for the homepage (I’ve changed 100 to 200 px)!! in the other pages it looks a little too much!what do you think? It is possible to change it only in one page?thanks again
-
Could you try this and see if it helps:
body.home div#page div#main div#secondary { padding: 100px 0 50px 0; } -
- The topic ‘add space between posts and widgets’ is closed to new replies.