What more can I say, firefox it works ie it doesnt, fix ie, firefox breaks etc...
please look back to this topic (it links to this one) http://www.webmaster-talk.com/websit...eaver-cs4.html
Basically I have used css to contain my background image (content, nav, banner, ad, bottom ad...)
but the div id i used to contain it, I was using to position my text (cause it wouldn't align correctly to start with so I was using top:*px; left:*px; to align it)
For some reason it always seems to be the banner / header that messes the website up, on EVERY websit I have tried to make thats the part that messes up...
anyways I suppose what i am asking is;
- how would i then align my text
Would I just do like
<Div class="banner></div>
<Div id="banner_text>
<!--text here-->
</div>
and in css do
.banner { position:relative; z-index:1; width:*px; height:*px; background:#000 url(/image.jpg) no-repeat}
#banner_text {position:relative; z-index:2; width:*px; height:*px; font-family:font; font-size:*px; color:#fff; left:0px; top:0px; }
-how would I make it appear the same in both firefox and ie (or gecko and non-gecko based browsers)
-how would I stop people being able to select the layout, would I need to add all images in as a background image?
Last edited by UUilliam; 01-15-2010 at 06:05 AM..
|