frisky
05-31-2005, 09:13 AM
OK I HAVE A BACKGROUND ON MY SITE IM USING PHP NUKE BUT I WANT THE BACKGROUND TO ALSO SHOW UP HERE
http://img172.echo.cx/img172/2670/fgdfg4sl.jpg
IS THERE A WAY TO DO THAT
first of all, don't post all in caps. it hurts the eyes.
answer to your question might require some code, but if that area you were pointing to was a div layer, then this might work, but it's CSS.
#mylayer {
background: #FFF url(myimage.gif)
The attribute:
#FFF is the colour displayed when the image does not load. #FFF is white.
url(myimage.gif) is your image.
the italic attributes must be the same, change one, and the other must be the same.
then find your div layer, and give it an ID:
<div id="mylayer">
...... your content ......
</div>
hope this helps....