Log in

View Full Version : Little Help with my Banner!


DaddyCool8
07-04-2008, 09:06 PM
Hi, Im really new to the forum building world and need a lil help

We have recently installed a fluid skin and we need to get the banner to stretch all the way accross.

here is the images:

http://www.pesvirtualsuperstar.co.uk/forum/smoothred/misc/logol.png

I need this part to repeat accross the screen.
http://www.pesvirtualsuperstar.co.uk/forum/smoothred/misc/logobg.png

http://www.pesvirtualsuperstar.co.uk/forum/smoothred/misc/logor.png

and here is the code used to insert them:


In Header in Edit Templates:
<tr>
<td align="left" width="415">
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
<a href="$vboptions[homeurl]"><img src="$stylevar[imgdir_misc]/logol.png" border="0" alt="" /></a></td>
<td align="left" width="18">
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
<a href="$vboptions[homeurl]"><img src="$stylevar[imgdir_misc]/logobg.png" border="0" alt="" /></a></td>
<td align="left" width="125">
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
<a href="$vboptions[homeurl]"><img src="$stylevar[imgdir_misc]/logor.png" border="0" alt="" /></a></td>
<td align="left" width="100%">
<table border="0" cellpadding="0" cellspacing="0">
<tr>

looking around, I found a custom CSS code that was not tested but assumed to work but surprize surprize, it never:

The bottom of the bottom box in Main CSS:
.header {
background: #000 url('http://www.pesvirtualsuperstar.co.uk/forum/smoothred/misc/logobg.png') repeat-x;
height: 153px;
width: 100%;
}

any help would be greatly appreciated ;)

MoT3rror
07-05-2008, 03:59 AM
<div style="background: url('$stylevar[imgdir_misc]/logobg.png'); width: 100%; height: 185px;">
<img src="$stylevar[imgdir_misc]/logol.png" style="float: left" />
<img src="$stylevar[imgdir_misc]/logor.png" style="float: right" />

</div>


I find it much easier to do it with div then a table.

DaddyCool8
07-05-2008, 08:56 AM
that worked a charm, thanks for helping ;)