Page Index Toggle Pages: 1 Send TopicPrint
Normal Topic Want to do something simple (Read 1733 times)
LemonPoppyseed
New Member
*
Offline


I love YaBB 1G - SP1.2!

Posts: 2
Joined: Mar 24th, 2006
Want to do something simple
Jul 5th, 2006 at 3:07pm
Print Post  
I went through the tutorials and still could not find an answer to my question. All I want to do is use a background tile for the body. I know where to change it in the .css file, but I've tried all combinations and cannot get any code to work. I know I'm a helpless newbie. Could someone point me to the right part of the tutorial or help me please.

Here is the original code

body {
     padding: 0;
     background-color: #000000;
     font-family: Verdana, Helvetica, Arial, sans-serif;
     font-size: 12px;
     margin-top: 5px;
     margin-left: 0;
     margin-right: 0;
     padding-top: 0;
     padding-left: 0;
     padding-right: 0;

Want to change to something like this...

body {
     padding: 0;
     background-color: http://myserver.com/folder/muchbetterthankyou.gif;
     font-family: Verdana, Helvetica, Arial, sans-serif;
     font-size: 12px;
     margin-top: 5px;
     margin-left: 0;
     margin-right: 0;
     padding-top: 0;
     padding-left: 0;
     padding-right: 0;
  
Back to top
 
IP Logged
 
qersys
Senior Member
****
Offline


Yes, I am

Posts: 342
Location: SF
Joined: Dec 29th, 2002
Gender: Male
Re: Want to do something simple
Reply #1 - Jul 6th, 2006 at 1:13am
Print Post  
you would need to add something like this:

Code
Select All
    background-image: url("delicious_blu/bgblk1.gif"); 



instead of this:

Code
Select All
     background-color: http://myserver.com/folder/muchbetterthankyou.gif;
 

  
Back to top
IP Logged
 
MetalJoe
Full Member
***
Offline



Posts: 156
Location: Auburn
Joined: Aug 23rd, 2004
Gender: Male
Re: Want to do something simple
Reply #2 - Jul 6th, 2006 at 2:11am
Print Post  
He would most likely need to use the absolute url path to the image.
  
Back to top
 
IP Logged
 
Page Index Toggle Pages: 1
Send TopicPrint