PDA

View Full Version : Can someone check this please?


stained
07-06-2009, 08:03 PM
I'm a total amateur at html but this code worked on my forum header until I implemented Vbseo relative replacements. Now it interfers with the display of the RR. The code I mean is the graphics stuff at the end. Can someone let me know what needs to be corrected please? The 3 graphics need to be horizontally aligned above the navbar.

<!-- logo -->
<a name="top"></a>
<table border="0" width="$stylevar[outertablewidth]" cellpadding="0" cellspacing="0" align="center">
<tr>
<td align="center"><a href="$vboptions[forumhome].php$session[sessionurl_q]"><img src="$stylevar[titleimage]" border="0" alt="$vboptions[bbtitle]" /></a></td>
<td align="$stylevar[right]" id="header_right_cell">
<if condition="$ad_location['ad_header_logo']">$ad_location[ad_header_logo]<else />&nbsp;</if>
</td>
</tr>
</table>
<!-- /logo -->

<!-- content table -->
$spacer_open

$_phpinclude_output

$ad_location[ad_header_end]

<p align="center">

<img src="images/badges.gif" border="0">

<a href="http://www.dasreich.co.uk/index.html">
<img src="images/dasreich/das_reich_header_003.gif" border="0">

<a href="http://www.hj-research.com/forum/billspaypal.php">

<img src="images/supporter_banner.gif" border="0">

</center></p>

Gamezod
07-06-2009, 08:58 PM
Just a quick point.... ive only briefly scanned it, but your opening Links but not closing them before opening a new one. (See red additions below), and you also dont need to close the Center tag at the end as it is already contained with in the Paragraph Tag.

<p align="center">

<img src="images/badges.gif" border="0">

<a href="http://www.dasreich.co.uk/index.html">
<img src="images/dasreich/das_reich_header_003.gif" border="0"></a>

<a href="http://www.hj-research.com/forum/billspaypal.php">

<img src="images/supporter_banner.gif" border="0"></a>

</center></p>

napy8gen
07-09-2009, 02:39 AM
adding from gamezod.
your image tage should be closed inside the tag. like this.

<img src="images/badges.gif" border="0" />

and you can manipulate spacing between those 3 images by inserting a style in the image tag.like this

<img src="images/badges.gif" style="padding-right:5px;" border="0" />