PDA

View Full Version : Header Code Correct


Trip
09-01-2008, 08:30 PM
Take a peek at my header code used for my logo. I wanted to include a link back to my portal page within the main body of the header/logo. I was getting a defined yellow border around the third section of the header. I inserted "border="0", not sure if it's in the correct spot though, but it seems to be working. Does this seem correct to you?

<td align="left" valign="top"><img src="$stylevar[imgdir_misc]/head_left.gif" alt=""/></a></td>
<td align="right" valign="bottom"><a href="$vboptions[forumhome].php$session[sessionurl_q]"><img src="$stylevar[imgdir_misc]/head_right.gif" border="0" alt="" /></td>

Princeton
09-05-2008, 11:26 AM
it looks good

Opserty
09-05-2008, 12:55 PM
Missing a closing anchor tag (and you have a random extra one in there...):

<td align="left" valign="top">
<img src="$stylevar[imgdir_misc]/head_left.gif" alt=""/></a>
</td>
<td align="right" valign="bottom">
<a href="$vboptions[forumhome].php$session[sessionurl_q]">
<img src="$stylevar[imgdir_misc]/head_right.gif" border="0" alt="" />
</a>
</td> Remove the red one and add the green one. :)

Trip
09-22-2008, 12:18 PM
Thank you for the input. I made the changes you mentioned :)