PDA

View Full Version : 3 image header logo


CSS59
12-21-2005, 05:58 PM
3 image header logo

I am looking for a 3 part header logo with one image3 on the left, one on the right, and a small 1px image repeating in between. Can someone help me, I can?t get it to work. It works if you put it in an html file, but wont show the repeating image if I add it to my header file.

Any help is appreciated.

<!-- new logo -->
<table class="tborder" width="$stylevar[outertablewidth]" cellpadding="0" cellspacing="0" background="http://gmnewsline.com/designs/vision/header_02.jpg" border="0" align="center">
<tr align="center">

<tr>
<td width="276">
<img border="0" src="http://gmnewsline.com/designs/vision/header_01.jpg" width="276" height="90"></td>
<td width="100%">&nbsp;</td>
<td width="450">
<img border="0" src="http://gmnewsline.com/designs/vision/header_03.jpg" width="450" height="90"></td>
</tr>
</table>
<!-- end new logo -->

CSS59
12-22-2005, 11:05 PM
anyone? :(

Princeton
12-23-2005, 04:27 PM
<!-- new logo -->
<table width="$stylevar[outertablewidth]" cellpadding="0" cellspacing="0" border="0" align="center">
<tr>
<tr>
<td><img border="0" src="http://gmnewsline.com/designs/vision/header_01.jpg" alt="GMnewsLine" title="" width="276" height="100" /></td>
<td width="100%" style="background: #ffffff url(http://gmnewsline.com/designs/vision/header_02.jpg) repeat-x"></td>
<td><img border="0" src="http://gmnewsline.com/designs/vision/header_03.jpg" alt="" title="" width="450" height="100" /></td>
</tr>
</table>
<!-- end new logo -->

CSS59
12-26-2005, 01:52 AM
thank you :)