Reputation: 21
I am trying to move my blog title up a little higher. If you will look at my blog you will see that the title & subtitle are too far down.
http://www.melissavenable.blogspot.com
The title (Little Mrs. Married) should be in the turquoise area above the pink line & the subtitle (some things...) should be right under the pink line, but still above where it is now. It was suggested me to put this
.descriptionwrapper {padding-bottom: 50px;}
or this
.descriptionwrapper {margin-bottom: 50px;}
in the HTML code above where it says but that didn't work. Any other ideas?
Thank you! Melissa
Upvotes: 2
Views: 3034
Reputation: 18262
You need to remove
padding: 60px 0 0;
in your #header h1
style.
Should look like:
#header h1 {
margin:5px 5px 0px 20px;
line-height:1.2em;
text-align:left;
text-transform:uppercase;
letter-spacing:.2em;
font: normal normal 220% 'Times New Roman', Times, FreeSerif, serif;;
}
Upvotes: 4