oops, my blog is http://mytestcitizenblog1.wordpress.com/
I'm trying to eliminate the gap above my header. Where in the CSS would fix this? Thanks!
The blog I need help with is mytestcitizenblog1.wordpress.com.
WordPress.com is an easy way to start blogging. Get a blog, check out our features, read the latest announcements, choose from great themes, or learn about the team behind it.
Need help? Check out our Support site, then
oops, my blog is http://mytestcitizenblog1.wordpress.com/
I'm trying to eliminate the gap above my header. Where in the CSS would fix this? Thanks!
The blog I need help with is mytestcitizenblog1.wordpress.com.
First off, it is recommended that:
a) when you add/modify an existing theme CSS, you don't copy the whole thing in the CSS editor; just add your changes/additions.
b) if you are going to add the whole CSS in the CSS editor, then check the "start from scratch" radio button.
Now, in your #page definition, change the padding property to this:
padding: 0 0 10px;
so, the whole definition reads like this:
#page {
background:white;
text-align:left;
position:relative;
width:780px;
border:1px solid #ddd;
border-top:none;
margin:0 auto;
padding: 0 0 10px;
}
That should take care of the gap.
HTH
This topic has been closed to new replies.