PDA

View Full Version : Line Spacing???


Bodley
Aug-05-2006, 02:52 PM
When entering text into my header/footer such as
<h4> aaaaaaaaaaaaaa </h4>
<h4> bbbbbbbbbbbbbb </h4>

It shows up on my site with what appears as excessive spacing between the lines of text. I know when I have a line of text longer than the window it will wrap and have the appropriate spacing but I don't want the text to go all the way across the screen and I also want more control.

How do I do it (I did search text spacing but could not find an answer)

Thanks,

Mike Lane
Aug-05-2006, 03:58 PM
When entering text into my header/footer such as
<h4> aaaaaaaaaaaaaa </h4>
<h4> bbbbbbbbbbbbbb </h4>

It shows up on my site with what appears as excessive spacing between the lines of text. I know when I have a line of text longer than the window it will wrap and have the appropriate spacing but I don't want the text to go all the way across the screen and I also want more control.

How do I do it (I did search text spacing but could not find an answer)

Thanks,

the header html tag comes built in with margins. Try something like this in your CSS:

h4 {margin:0; padding:0;}

That should clear it up.

Bodley
Aug-05-2006, 04:12 PM
the header html tag comes built in with margins. Try something like this in your CSS:

h4 {margin:0; padding:0;}

That should clear it up.
Worked Like a charm. :thumb

Thanks,