View Full Version : reapeating bg along right...


KissesCutie
04-27-2003, 11:50 PM
OKay, actually it doesn't need to repeat itself as the bg is actually a bit bigger then the height of the page, so it can be just once and i'll make it fixed, bot how can i make it go along the right side? repeat-y makes it go against the left side but i want it against the right side. I tried no-repeat and the attribute being 100& 0& (all the way to the left and starts at the top) but it doesn't work. So how do i do it?

thewwfc
04-28-2003, 01:12 AM
I am not sure but trying using x not y ?????

kittycat
04-28-2003, 01:26 AM
Have you tried positioning it along the right side (background-position: top right;)? Sorry if that's what you meant by 'the attribute being 100& 0&'.

KissesCutie
04-28-2003, 03:03 AM
<style type="text/css">

A:link
{ text-decoration: none; color:#004B90; }
A:visited
{ text-decoration: none; color:#004B90; }
A:active
{ text-decoration: line-through; color:#000000 }
A:hover
{ text-decoration: underline overlinecolor:blue;

body
{ background-image:url(http://image1ex.villagephotos.com/pubimage.asp?id_=2358661);
background-repeat: repeat-y;

font-family: verdana,comic sans ms;
color: #5BB0FF;
font-size:10pt;

scrollbar-face-color : #C1E7FF;
scrollbar-highlight-color : #C1E7FF;
scrollbar-3dlight-color : #90BAD4;
scrollbar-shadow-color : #C1E7FF;
scrollbar-darkshadow-color : #90BAD4;
scrollbar-track-color : #D6EFFF;
scrollbar-arrow-color : #004A78; }

td
{ font-family: verdana;
color: #5BB0FF;
font-size:10pt;}

input, textarea
{ background: #A2C4DA;
font-family: verdana;
color: #004B90;
border-style: dashed;
border-color: #000000;
border-width: 1px;}

-->
</style>


That is my code and i want the background to repeat itself *or not reapeat, it dun matter) along the left, how do i change it so it will?

pink_fishies
04-28-2003, 03:10 AM
i think you put repeat-x instead of y..i'm not sure though

KissesCutie
04-28-2003, 03:19 AM
i tried that, and the background still doesn't show up

epolady
04-28-2003, 03:39 AM
Try

<style type="text/css">

A:link
{ text-decoration: none; color:#004B90; }
A:visited
{ text-decoration: none; color:#004B90; }
A:active
{ text-decoration: line-through; color:#000000 }
A:hover
{ text-decoration: underline overlinecolor:blue;
}

Dude128
04-28-2003, 04:46 AM
you also need a semicolon and line break (actually just the semicolon, the line break is just for readability :P) after the underline overline part:

text-decoration: underline overline;
color: blue;

you should also use the hex code for colors, not the name :)

epolady
04-28-2003, 05:34 AM
Originally posted by Dude128
you also need a semicolon and line break (actually just the semicolon, the line break is just for readability :P) after the underline overline part:

text-decoration: underline overline;
color: blue;

you should also use the hex code for colors, not the name :) Ah, good eye, I didn't see that, in my mind's eye it was one word, heh.