sorry, me again. 2 questions!!!

liunx

Guest
hi all!!! I'll get right to the point. <br />
<br />
<!-- m --><a class="postlink" href="http://www26.brinkster.com/matrix07/Test2.asp">http://www26.brinkster.com/matrix07/Test2.asp</a><!-- m --> <br />
<br />
see the content area...to the very right side, there's an image...which is called corner.gif. Why doesn't it fit nicely into the table cell??? Also, the way my table is setup, how do I add spaces to the beginning of the row. eg. <br />
<br />
<br />
[SPACES HERE] //News.Updates <br />
<br />
<br />
I did it for the end of the row by adding 's!!! I can't use cellpadding or cellspacing because it will work for spaces in front of the row...but it will only increase the size of my space at the end of the row since I have 's inserted. I hope I didn't confuse anyone.<!--content-->Looks okay to me, Matrix. <br />
<br />
And extra spaces can be done two ways. You could create an invisible spacer gif, 1x1, and insert it where you need it.<br />
<br />
Or you could type &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
<br />
For a total of 5 spaces. <br />
<br />
If you know exactly how many pixels you want your title indented, use the gif. It's a bit quicker. If you're looking for a space that's a bit more flexible, use the HTML code. <br />
<br />
Or you could <blockquote> the section you want indented. It'll affect both sides of the text, but not the entire table or cell.<br />
<br />
Does that help a bit?<br />
<br />
Peg<!--content-->change:<br />
<br />
<td align="right"><br />
<img src=http://www.htmlforums.com/archive/index.php/"corner.gif" valign="top"><br />
</td> <br />
<br />
<br />
to:<br />
<br />
<td align="right" valign="top"><img src=http://www.htmlforums.com/archive/index.php/"corner.gif" border="0" hspace="0" vspace="0"></td><br />
<br />
<br />
and see if lines up your corner gif.<br />
<br />
Note: valign=top is not a valid attribute of the <img> tag.<!--content-->
 
Back
Top