View Full Version : backgrounds..


RubyMoon
08-23-2004, 06:50 AM
Does anyone know how to use HTML and make a background image that does not repeat? Like how on xanga that have that option...only on a website, how do you make it with HTML {Not CSS}? Sorry if this has been posted already, but it's not like hm otaku and I don't want to search through every single page about backgrounds just for this one code...

pb&j
08-23-2004, 06:56 AM
normal HTML will not do your requested action.
CSS must be used.

either like this in the HEAD area...

<style type="text/css">
body {background-repeat: no-repeat;}
</style>

or inside the BODY tag itself....

style="background-repeat: no-repeat;"

RubyMoon
08-23-2004, 07:33 AM
OH! THANK YOU SOOOOOOOOOOOO MUCH! This background I'm using is really ugly when it's repeated =P

Thanks! ~edit~Yay. Now it looks so pretty

pb&j
08-23-2004, 05:20 PM
no problem. glad it worked out for ya.