PDA

View Full Version : suggest me



fabulous
04-02-2010, 04:05 AM
How do I have a fixed background image or watermark?



sale clothes (http://www.fabulouslyfunkyfinds.com/c-93-clothing.aspx)
sale jewelry (http://www.fabulouslyfunkyfinds.com/c-96-jewelry.aspx)
discount handbags (http://www.fabulouslyfunkyfinds.com/c-94-handbags.aspx)

pamelarose
04-21-2011, 09:36 AM
Watermarks are easy to create using three CSS style properties.
You use background-image to define the image to use as your watermark, background-repeat to make it display only once, and background-attachment to turn it into a watermark.

Add the following to the HEAD of your Web page. Change the URL to your background image, and you'll have a watermark:

<style>
<!--
body {
background-image: url(image.gif);
background-repeat: no-repeat;
background-attachment: fixed;

joni27
07-27-2011, 11:18 AM
I think above mentioned post is really helpful in this matter.
Thanks dear friend.

1paket.com
07-28-2011, 08:06 AM
Nice advice.
Have you solved your issue already, the OP?

manohar
09-29-2011, 12:54 PM
thanks for sharing information in your post .