Design Directory Discussion Forum Design Job Board Add Your Site Post a Message Post a Job / Gig

HomeDevelopers → css background on opera?

Hello there!

Just a very quick question, but i'm using a background image via css for the whole website - and thus its tagged in the global body styles. The image needs to be aligned at the bottom - but this doesn't seem to be working on Opera (only).

Any ideas???

Cheers!
hey same problem is with me..so thought to put here only..

I am using " body" alignment as centre in css...and its displaying fine in IE but not working in Firfox:-(

any help?
Visit My Website | www.creativevigor.com | www.nestcraft.com
Are you spelling it centre or center?
? Are you spelling it centre or center?
center:-)

-----------------------
body {
height: 0px;
margin: 0px;
pageTitle:abc;
text-align: center;
background-color: #EFEFEF;
background-image: url(images/main_bg.gif);
}
----------------------------
I want my page alignment as a center.
also if anyone can help me to write CSS code for page title.

thanks
Visit My Website | www.creativevigor.com | www.nestcraft.com
try this

? body {
? height: 0px;
? margin: 0px;
? pageTitle:abc;
? text-align: center;
? background-color: #EFEFEF;
? background-image: url(images/main_bg.gif);
? }

change the margin part to
margin: 0 auto;

see here for more details
http://www.macromedia.com/devnet/dreamweaver/articles/css_concepts_05.html

? also if anyone can help me to write CSS code for page title.

No such thing, page titles are always done in the head of the html not the css, all page titles should be different [they would all be the same if done via css].