Forum Moderators: not2easy
<img src="image.gif" width="115" height="25" alt="" />
<div class="side">
Entries: Count<br />
Comments: Count<br />
Author Login: Link<br />
About C12<br />
</div>
<img src="image.gif" width="115" height="13" alt="" /><img src="spacer.gif" width="1" height="10">
With the external CSS having:
.side {
color:#104E8B;
background-color:#FFFFFF;
font-size:xx-small;
font-weight:normal;
border-right: 2px solid #104E8B;
line-height:140%;
}
I want the text to be indent as a whole so that it does not rest right against the left edge, by about 5 pixels, but I can't get it to work and I really don't want to nest a DIV in it.
On a side note, you see that last line of HTML for the "spacer.gif"? I'm using it to separate the DIV sections in the columns and it works fine in Safari, but there is nothing there in Firefox. Anyone care to tell me why?
Thanks all!
[edited by: SuzyUK at 6:07 pm (utc) on July 21, 2005]
[edit reason] examplified image paths [/edit]
.side {
color:#104E8B;
background-color:#FFFFFF;
font-size:xx-small;
font-weight:normal;
border-right: 2px solid #104E8B;
line-height:140%;
padding: 0px 0px 0px 5px;
}
That should push the test over 5 pixels to the right.
I'm not sure what your question is about the spacer .gif however.