How do I have a fixed background image or watermark?
sale clothes
sale jewelry
discount handbags
How do I have a fixed background image or watermark?
sale clothes
sale jewelry
discount handbags
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;
I think above mentioned post is really helpful in this matter.
Thanks dear friend.
Nice advice.
Have you solved your issue already, the OP?
thanks for sharing information in your post .