rejetto forum

Software => HFS ~ HTTP File Server => HTML & templates => Topic started by: Salerno on March 25, 2007, 01:15:18 AM

Title: Fairly simple background/HTML question
Post by: Salerno on March 25, 2007, 01:15:18 AM
I'd like to get an image into the background of HFS but I need to image to be repeated as it is rather long vertically. However, because I have limited coding experience, I cannot figure out how to do this in HTML. Although I've tried quite a few searches through google I can't seem to find something that works the way I want it, let alone get the image to repeat across the entire background. I'd really appreciate it if anyone could assist me with how to code this. Thanks.
Title: Re: Fairly simple background/HTML question
Post by: rejetto on March 25, 2007, 11:15:02 AM
i would use CSS
style='background-repeat:repeat-y'

or something similar
Title: Re: Fairly simple background/HTML question
Post by: Salerno on March 25, 2007, 08:43:20 PM
Thankyou! I appreciate you telling me that. I was able to find a perfect example (because you told me to use CSS) at this website:

http://www.tizag.com/cssT/background.php

and using the code:

body { background-image: url(insert here); }

 ;D
Title: Re: Fairly simple background/HTML question
Post by: Salerno on March 26, 2007, 01:09:37 AM
Does HFS support Opacity, and generally what would the code look like?
Title: Re: Fairly simple background/HTML question
Post by: rejetto on March 26, 2007, 01:12:39 AM
what's the opacity you are talking about?
Title: Re: Fairly simple background/HTML question
Post by: Salerno on March 26, 2007, 01:43:08 AM
Something like this:

http://www.mandarindesign.com/boxes.html#transbox
Title: Re: Fairly simple background/HTML question
Post by: rejetto on March 26, 2007, 01:58:13 AM
it has nothing to do with the server.
it's only up to the web browser.
Title: Re: Fairly simple background/HTML question
Post by: Salerno on March 26, 2007, 02:19:04 AM
After fooling around a bit I was able to get opacity working using the code line:

td { font-size:10pt; background:#FFF; filter:alpha(opacity=50);opacity:.50; border:2px solid #123}