Repeating background behind another background that's repeating y

liunx

Guest
Hello all, ok here's the situation: I used css to create faux columns by using body {background: url(/images/main_bg1.gif) repeat-y 50% 0; } I want to put a normal repeating background behind the one thats repeating-y. I tryed putting one code on top of the other but that doesn't work.

incase you didn't understand i'll explain it again:

Normal Tile Background in Faux Columns Transparency


When i change the body bg color it shows through the faux columns but it doesn't let me put in a bg image.

here's the site so you can analize the situation:
<!-- m --><a class="postlink" href="http://www.redhot-studios.net/main.html">http://www.redhot-studios.net/main.html</a><!-- m -->
Please dont tell me about how bad the tables are and how horrible it is to use iFrames,,, i've heard it all before-- just cover the subject: bg behind bg... simple...? :confused:


thank u very much in advance for any help u can provide for me, i've been struggling for hours trying to find a solution.Just chuck a <div> tag in and specify a background on that.didn't work<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
<title>background</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">

<style type="text/css">
<!--
body {background: url(/images/another_bg.gif); }
#bg {background: url(/images/main_bg1.gif) repeat-y 50% 0;}
-->
</style>

</head>
<body>
<div id="bg">
Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
Praesent facilisis ante eget dolor. Proin ut magna. Morbi in nisl.
Cras pellentesque libero vel wisi. Duis volutpat congue nibh. Duis id est.
Curabitur nec enim. Sed dictum pede vel ligula. Etiam egestas. Mauris dignissim condimentum mi.
</div>
</body>
</html>
 
Back
Top