Website FAQ
Because I'm busy, and I appreciate people generally want answers as quickly as possible here are some I prepared earlier.
Pick a question
- How do you get the "watermark" image to stay in the same place on the screen?
- How do you make a semi-transparent image like you have on your menus?
- Can you help me with my CSS problem?
The answers
How do you get the "watermark" image to stay in the same place on the screen?
The effect is created using CSS. The sample stylesheet given below demonstrates how to specify a background image for the body
element and manipulate its position on screen using background properties.
body
{
background-image : url(backgroundimage.jpeg);
background-attachment : fixed;
background-position : bottom left;
background-repeat : no-repeat;
}
This sample will instruct the browser to fetch the image from the specified URL. The image will have a fixed
attachment, so it doesn't scroll, and will be placed in the bottom left
corner of the screen. The background-repeat
property ensures that it does not "tile".
Can you help me with my CSS problem?
Possibly, however I am quite busy therefore you can probably get your answer quicker if you try one of the resource below. I read these fairly regularly so there is a possibility I'll be the one answering the question anyway :)
- CSS-Discuss, mailing list that discusses practical CSS.
- comp.infosystems.www.authoring.stylesheets, Usenet newsgroup that discusses stylesheets. (CSS FAQ, Newsgroup FAQ)