View Full Version : Changing how <br> lengths?


DevinIsPurtyFly
09-14-2005, 01:46 PM
On my page, I want to have a space between certain lines, but when I use <br> it makes the space too big. Is there a way to change how much it goes down?

girl_in_cullowhee
09-14-2005, 03:29 PM
Using the font style attrribute should work, or you could use CSS?

<FONT style="line-height:x%">

x=the number you want.... 50% leaves less space than 100%, for example.

DevinIsPurtyFly
09-14-2005, 03:49 PM
Sweet, thanks!

EDIT:

I have a background image on each page inside my frame so it is transparent, but when I scroll, the image repeats. How do I make an image not repeat?

mandarinspyce
09-14-2005, 04:07 PM
Sweet, thanks!

EDIT:

I have a background image on each page inside my frame so it is transparent, but when I scroll, the image repeats. How do I make an image not repeat?

<body style="background-image: url(image.jpg); background-repeat: no-repeat;">

^^ http://www.lissaexplains.com/css.shtml

maztrin
09-14-2005, 04:17 PM
you could do this all with css. in the long run it will be a lot easier to update and you wont have to sift through your code to find a specific tag.

DevinIsPurtyFly
09-14-2005, 04:48 PM
Well, I took the <FONT style="line-height:x%"> and put it in my CSS already. So yeah, I do have one. Thanks for the bg code, I'll try it out and get back to you. Will it be transparent in Firefox, too?

Douglas
09-14-2005, 08:06 PM
it should work

Monkey Bizzle
09-14-2005, 08:51 PM
Will it be transparent in Firefox, too?

No, Firefox does not support transparent iFrames.

DevinIsPurtyFly
09-14-2005, 09:11 PM
How come it is white in IE? Can I get around this somehow?

DevinIsPurtyFly
09-14-2005, 09:14 PM
How come it is white in IE now?

Monkey Bizzle
09-14-2005, 09:32 PM
First of all, be patient.

Second of all, how can we know what you are talking about if you don't provide a link to your page?