Quote:
Originally Posted by plazzman
Thanks so much!
Quick question though, how would I use it in this code?
.supermod {
background: #191b1c url (whereever image is located);
background-repeat: no-repeat;
border-left: solid 1px #3c3c3c;
border-right: solid 1px #3c3c3c;
}
|
could be:
Code:
.supermod {
background: #191b1c url (images/misc/pizza.gif);
background-repeat: no-repeat;
border-left: solid 1px #3c3c3c;
border-right: solid 1px #3c3c3c;
}
or:
Code:
.supermod {
background: #191b1c url (/images/misc/pizza.gif);
background-repeat: no-repeat;
border-left: solid 1px #3c3c3c;
border-right: solid 1px #3c3c3c;
}
and you would place it in additional css definitions at the bottome of Main CSS