organizedhavoc
Member
Posted 6 years ago #
http://dailyblurt.com/blog/archives/1#comments
Any reason there is a space between the top image and the text Hello World?
I want the words "Hello World" to be all the way up to the black top logo.
Same with http://dailyblurt.com/
The word "About" should not be that far spaced down, anyone know why it is?
Please tell me what to edit.
Thanks!
-Organizedhavoc
You have this code in html
<div id="content" class="widecolumn">
<div class="navigation">
<div class="alignleft"></div>
<div class="alignright"></div>
</div>
<div class="post" id="post-1">
<h2><a href="http://dailyblurt.com/blog/archives/1" rel="bookmark" title="Permanent Link: Hello world!">Hello world!</a></h2>
So ...you have an empty div named "navigation" above heading.
And that class is defined in your css with:
.navigation {
display: block;
text-align: center;
margin-top: 10px;
margin-bottom: 60px;
}