PDA

View Full Version : Help with postbit mod - need HTML expert


imported_DigitalJE5U5
09-18-2002, 04:40 AM
can anyone tell me how to get rid of this space under avatar and add a lil space above the avatar?

Please see attached pic.
http://www.softwarezetc.com/images/help/spacinghelp.jpg

I've attached pertinent code (me thinks)

--------------------------------------------
<!-- start postbit user table -->
<div align="left">
<table border="0" width="100%" bgcolor="{firstaltcolor}">
<tr><td width="100%" height="12" bgcolor="{secondaltcolor}">$post[avatar]<p align="left"><a name="post$post[postid]"></a><font face="Verdana" size="2" color="{linkcolor}">
$post[firstnewinsert]<a href="member.php?s=$session[sessionhash]&action=getinfo&userid=$post[userid]" target="_blank">$post[username]</a>$post[search]<br>
</font></td>
</tr>
<tr>
--------------------------------------------

Thanks ALOT!

/DJ

Tony G
09-18-2002, 06:10 AM
I don't see any br's which would increase that space. Unless <p align> adds a paragraph space, I'm not sure.

Brad
09-18-2002, 08:48 AM
try this, its late so if it dosent work dont blame me heh.

<!-- start postbit user table -->
<div align="left">
<table border="0" width="100%" bgcolor="#FFFFFF">
<tr><td width="100%" height="12" bgcolor="#F9F9F9"><p align="left">$post[avatar]<a name="post$post[postid]"></a><font face="Verdana" size="2" color="#4274B6">
$post[firstnewinsert]<a href="member.php?s=$session[sessionhash]&action=getinfo&userid=$post[userid]" target="_blank">$post[username]</a>$post[search]<br>
</font></td>
</tr>
<tr>

eckels2
09-19-2002, 03:13 AM
replace the <p align="left"> with <br>

That'll do the trick.

make sure you find the trailing </p> and delete that too.

imported_DigitalJE5U5
09-19-2002, 05:31 AM
that got it. thanks alot for the help!

/DJ

Tony G
09-19-2002, 05:45 AM
Thought so, p makes a paragraph space and not a new line.