View Full Version : fixed backgrounds, within a table?


EnchantedSLN
10-24-2003, 01:14 AM
I'm not quite sure whether to post this in the HTML or CSS section, but here goes. I'm working on a new layout for my website... basically the page looks like a table with 3 columns and a banner/button panel that spans across the top. I would like the center (largest) column of my page to be a frame in which the background is fixed and and the text/content scrolls over the image, but I'm having some trouble figuring out how to do that. Can anyone help me? I can provide a screenshot of the page as it is now or the code for the page, if that would make it easier. Any assistance would, of course, be very appreciated :).

I've never posted before, but have always found lissaexplains.com to be very helpful... thanks to everyone involved.

Take Care,
Tiff

bejayel
10-24-2003, 02:58 AM
<body bgproperties="fixed">

MaGiCSuN
10-24-2003, 04:44 PM
<table border="0" cellspacing="0" cellpadding="0">
<tr><td valign="top" colspan="3">banner in here</td></tr>
<tr><td valign="top">first collumn</td><td valign="top" style="background-image: url(IMAGHERE.GIF); background-attachment: fixed;">middle collumn</td><td valign="top">3th collumn</td></tr></table>

or

<table border="0" cellspacing="0" cellpadding="0">
<tr><td valign="top" colspan="3">banner in here</td></tr>
<tr><td valign="top">first collumn</td><td valign="top" background="URLHERE.GIF" bgproperties="fixed">middle collumn</td><td valign="top">3th collumn</td></tr></table>

Love,
Mirna