Is there any way to take out some of the white space before or after the"What We Do" featured item on the home page. Please look at http://50.56.69.145/wordpress/. Thanks!
Home page spacing
4 posts from 3 voices-
Posted 2 years ago #
-
Hey,
The spacing is set in style.css (around line 80) with this code:
#main { float: left; padding: 35px 0 0; position: relative; width: 100%; }You can simply adjust the value of 35px in the line 35px 0 0 to reduce the top padding, for example to set 15px it would look like:
#main { float: left; padding: 15px 0 0; position: relative; width: 100%; }and for no top padding just change it to 0 like this:
#main { float: left; padding: 0; position: relative; width: 100%; }James
Posted 2 years ago # -
Thanks!!
Posted 2 years ago # -
Glad that James could help you :)
Posted 2 years ago #
Reply
You must log in to post.














