+ Reply to Thread
Results 1 to 4 of 4

Thread: background - repeating vertically, but not horizontally
      
   

  1. #1
    socks198915 is offline Sergeant
    Join Date
    Jan 2006
    Posts
    29

    Default background - repeating vertically, but not horizontally

    I have this image:

    http://www.socks198915.com/images/

    and would like to have it repeat vertically along the left hand side of the page. I right clicked and went to page properties, but I don't know how to specify where I want it oriented.

    I also tried a html box with the code:

    <style>body{background:url(http://star.walagata.com/w/socks1989...act_dragon.png) right bottom}</style>

    in it.

    Does anyone have any suggestions on how to achieve the look I need?

    Thank you in advance :)

  2. #2
    Watdaflip's Avatar
    Watdaflip is offline Major General
    Join Date
    Sep 2005
    Location
    Cincinnati, Ohio
    Posts
    2,119

    Default Re: background - repeating vertically, but not horizontally

    Try
    Code:
    <style>
    body {
        background: url(http://star.walagata.com/w/socks1989...act_dragon.png);
        background-repeat: repeat-y;
    }
    </style>

    Register/Login Script
    Do you use a Password Protected Directory? Need a way to allow users to make their own account, try my .htaccess Login Script

  3. #3
    Join Date
    Feb 2006
    Location
    Earth
    Posts
    8,719

    Default Re: background - repeating vertically, but not horizontally

    Hi, give this a try. Main menu>View>Page HTML>Between the head tab. Cut & paste the code below in this area. Preview.

    Good luck.

    <style>
    body{background:url(http://www.socks198915.com/images/ba...act_dragon.png) top left}
    </style>

    Ah! I just see Watdaflip got here 1st with the faster fingers, go with his code.

  4. #4
    socks198915 is offline Sergeant
    Join Date
    Jan 2006
    Posts
    29

    Default Re: background - repeating vertically, but not horizontally

    Thanks it worked :)

    Sorry for the delay, final projects due XD

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49