Results 1 to 5 of 5

Thread: suggest me

  1. #1
    Join Date
    Apr 2010
    Posts
    3

    Default suggest me

    How do I have a fixed background image or watermark?



    sale clothes
    sale jewelry
    discount handbags

  2. #2
    Join Date
    Apr 2011
    Posts
    7

    Default

    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;

  3. #3
    Join Date
    Jul 2011
    Posts
    6

    Default

    I think above mentioned post is really helpful in this matter.
    Thanks dear friend.

  4. #4

    Default

    Nice advice.
    Have you solved your issue already, the OP?

  5. #5
    Join Date
    Sep 2011
    Posts
    3

    Default

    thanks for sharing information in your post .

Similar Threads

  1. Please suggest me
    By cmbadal in forum Web Hosting Community
    Replies: 9
    Last Post: 04-20-2015, 06:53 AM
  2. Please suggest me
    By cmbadal in forum Software & Hardware
    Replies: 5
    Last Post: 06-18-2014, 11:08 AM
  3. Please suggest a host
    By GeneticX in forum Web Hosting Solutions
    Replies: 14
    Last Post: 05-11-2012, 08:22 AM
  4. suggest me
    By fabulous in forum Business Tools
    Replies: 0
    Last Post: 04-02-2010, 04:14 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •