How can I center an image as by background for an html page without it tiling?
I want to center an image as my background but i do not want the picture to be as big as the page? so please help and im using html codes
Public Comments
- body{ background-image:url(image url here); background-position:Center Center; background-attachment:fixed; background-repeat:no-repeat; } Table, Td{ background-color:transparent; } obviously replace "image url here" with the url, but keep it in the parenthesis. the first "center" is top-bottom alignment, the second is left-right alignment. if this doesn't work, message me a section of the html where you want the background code and i'll see if i can figure anything out. i'm better at fixing html when i can see it to play around with it some.
- You'll need to use the following CSS : repeat: no repeat; I don't think this can be done w/just using HTML
Powered by Yahoo! Answers