Click to See Complete Forum and Search --> : How to get background images to show correctly?


chausfeld
08-25-2008, 03:20 PM
I am working on this page:
http://concrete-creative.com/pp/products.html

and the problem I am having is that I want the rest of the "flower" image to show behind the content area... I have it set as the background image of that table, but it's not showing up. Here's an image of how it is supposed to appear:
http://concrete-creative.com/pp/pp_sample.jpg

Can anyone direct me on how to work this out?

Thank you!

LeeU
08-25-2008, 03:25 PM
This is more of a CSS question, unless I am missing something. If not, I'll move it to the CSS forum.

chausfeld
08-25-2008, 03:45 PM
sorry, I did post to the wrong section. thanks for moving it!

Taldos
08-25-2008, 10:42 PM
Looks like you need to set the background transparency on the body content. Here's a helpful link I've used in the past. http://www.mandarindesign.com/opacity.html

CSSNINJA
08-26-2008, 10:51 AM
filter:alpha(opacity=95);
-moz-opacity:.95;
-khtml-opacity: 0.95;
opacity: 0.95;

.95 being the level of transparency.

Just be careful when using this, sometimes the text can get hard to read.