| View previous topic :: View next topic |
| Author |
Message |
son0rous Black Belt 2nd Degree

Joined: 23 Jan 2003 Posts: 2575
|
Posted: Sat Aug 14, 2004 7:15 pm Post subject: Non-repetitive Backgrounds |
|
|
| Looking for a way in HTML to have a background that does not loop continuously, but instead simply shows one picture, then the rest of the page is just the default background color. |
|
| Back to top |
|
 |
Davek804 Black Belt 3rd Degree

Joined: 09 Jul 2003 Posts: 3696 Location: Rural Massachusetts
|
Posted: Sat Aug 14, 2004 7:31 pm Post subject: |
|
|
What if you built the entire webpage over an image that acted as a bg?
Other than that, i dont know of any way in regular HTML. May be a way in DW or something.. _________________ "We must embrace pain and burn it as fuel for our journey." |
|
| Back to top |
|
 |
son0rous Black Belt 2nd Degree

Joined: 23 Jan 2003 Posts: 2575
|
Posted: Sat Aug 14, 2004 7:33 pm Post subject: |
|
|
| can you explain a little further? |
|
| Back to top |
|
 |
Toby B. Lead Mobo-fu Master


Joined: 16 Dec 2001 Posts: 13960 Location: Maine
|
Posted: Sat Aug 14, 2004 8:47 pm Post subject: |
|
|
There is a way to do this. How to do it has escaped my mind though.... _________________ We Help You. You Can Help Us!
Read the rules prior to posting
Tell your newsgroup or mailing list
Link to us from your pages |
|
| Back to top |
|
 |
hypnotik Black Belt


Joined: 22 Oct 2002 Posts: 584 Location: Melbourne, Australia
|
Posted: Sun Aug 15, 2004 9:54 pm Post subject: |
|
|
You can do it with CSS. Put this code inbetween your <head> tags
| Code: | <style type="text/css">
<!--
.classname { background-image: url(xxxx.jpg); background-repeat: no-repeat}
-->
</style> |
Then use this <body> tag
| Code: | | <body bgcolor="#FFFFFF" text="#000000" class="classname"> |
You can also use repeat-x or repeat-y if you want it to repeat in one direction only. _________________ "I disapprove of what you say, but I will defend to the death your right to say it"
-Voltaire |
|
| Back to top |
|
 |
|