Board index PBase HTML and Style Sheets Webdev CSS questions

HTML and Style Sheets

Webdev CSS questions

Customize your galleries.
pixelpusher2
 
Posts: 1

Webdev CSS questions

Post Wed Jun 02, 2004 7:26 pm


I have a question about the Webdev CSS page, how and where do I modify it if I want the thumbnails to scroll but leave the background intact. I want to leave the background intact because I may want to replace the background with a picture.

Where in the CSS script do I do this. This all looks like a foreign language to me :(

thewedding
 

Re: Webdev CSS questions

Post Wed Jun 02, 2004 9:07 pm


pixelpusher2 wrote:I have a question about the Webdev CSS page, how and where do I modify it if I want the thumbnails to scroll but leave the background intact. I want to leave the background intact because I may want to replace the background with a picture.

Where in the CSS script do I do this. This all looks like a foreign language to me :(


just insert the next line within the the tag where is states body{}

Code: Select all
background: url(your_background.jpg) #2D2D2D fixed;


you could send some more variables with that if wanted, like

Code: Select all
background: url(your_background.jpg) #2D2D2D left top no-repeat fixed;


you can use no-repeat / repeat-x / repeat-y /

or even two background images.. exmp

Code: Select all
html{
background: url(your_background_1.jpg) #2D2D2D repeat-x fixed;
}
body{
background: url(your_background_2.jpg) #2D2D2D repeat-y fixed;
}


etc etc ..

hope it helps


Board index PBase HTML and Style Sheets Webdev CSS questions

Who is online

Users browsing this forum: ClaudeBot and 0 guests