Forum Moderators: open
.rightalignbg{
background-image: url(path/to/your_image.gif);
background-repeat: repeat-y;
background-position: right;
}
But it doesn't work with older browser.
If you know the size of your frame you could use the reverse of your image as you said you did.
Could you past the code of your frame here (and remove any specific file name or url) so we can check if the pb is not coming from somewhere else.
Leo
page.html, bg.css and tile.gif are all in the same folder.
The page with the tiled background
<html>
<head>
<title>Untitled</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link rel="stylesheet" href="bg.css">
</head>
<body class="rightalignbg">
</body>
</html>
The stylesheet
body {
}
.rightalignbg{
background-image: url(tile.gif);
background-repeat: repeat-y;
background-position: right;
}