PDA

View Full Version : small background prob


Dubzero
09-28-2005, 08:20 AM
I want to have 1 background image in my top bar and not that the srcipt repeats it.
i've got a piece of my code:<td width="100%" heigth="0" colspan="2" valign="bottom" align="left" background="images/topbar.jpg">
please help me

PsychoticDude85
09-28-2005, 10:23 AM
You want it not to repeat?

If so replace background="" with style="background: url(images/topbar.jpg) no-repeat;" like this:

<td width="100%" heigth="0" colspan="2" valign="bottom" align="left" style="background: url(images/topbar.jpg) no-repeat;">

Dubzero
09-28-2005, 10:10 PM
You want it not to repeat?

If so replace background="" with style="background: url(images/topbar.jpg) no-repeat;" like this:

<td width="100%" heigth="0" colspan="2" valign="bottom" align="left" style="background: url(images/topbar.jpg) no-repeat;">

thnx dude

PsychoticDude85
09-29-2005, 08:19 AM
No problem, glad to be able to help.