<snipped a bit>
M> I have a masthead/banner on my site which uses a full bleed across the
M> top of the page. It currently works the old school way: tables, single
M> pixel gif trick, and some background images. I'm throwing that out and
M> going full CSS. Or at least I'm trying.
M> I tried using Blueprint for the banner layout, but for the most part I
M> can't because the 950px prevents the full bleed on the right side.
The container in BP is set to 950 px, so everything in the container
will only stretch that far.
Using a masthead/banner... that stretches the whole viewport you might
try to set the image on the body:
body {
background-image : url(path to your image);
background-repeat : repeat-x; <---- if needed, see comment below
}
By default, if you add a single, non-repeating background image to the
page, it will appear in the top-left corner of the viewport.
If it's a repeating image you want to use that needs to tile from
left to right, you use " background-repeat : repeat-x;"
Add these styles to your custom css sheet and see if it resolves your
problem...
That is, if i understood your problem the right way....
--
Best regards,
Lukie
-------------------------------------------
Using the best e-mail client: The Bat! version 4.0.18 with Windows XP
(build 2600), version 5.1 Service Pack 2 and using the best browser:
Opera.
"Diplomacy - the art of letting someone have your way." - attributed
to Daniele Vare.
--------------------------------------------
M> I said managage. :) That's what I get for working past midnight.
We all know that feeling lol
--
Best regards,
Lukie
-------------------------------------------
Using the best e-mail client: The Bat! version 4.0.18 with Windows XP
(build 2600), version 5.1 Service Pack 2 and using the best browser:
Opera.
"Men and women mix just like vinegar and water. That is why you need
to keep mixing them. Otherwise, they will separate." - Alan Alda
(1936-) - US actor
--------------------------------------------