
Signature
-bts
-Warning: I brake for lawn deer
> >> http://home.cfl.rr.com/jmartin104/uhf/
> >
[quoted text clipped - 6 lines]
> em instead of px, so when I increase the text, the divs expand with
> it.
I'll remove this. It came from my book but I think it had to do with
some example.
> font-family:times new roman, arial, sans-serif;
> should be:
> font-family: "Times New Roman", arial, sans-serif;
> font names with spaces need quoted.
That's what the CSS validator was complaining about.
> but why you want to mix serif and sans-serif fonts remains a mystery.
Even to me. It was another example. I have a book on fonts but can't
seem to find it.
> Consider also not using the color name in the selector.
> em.emRed {color:red;}
> Try em.emhot {color:red;}
> because next week you may want to use .. green .. and it will look
> strange to have a style called .emred that displays green.
Agreed.
> Whenever you assign a color, or background color, you need to assign
> the other as well.
How do you make the background color clear? I mean, if the text is
going over an image, you don't really want to SEE a background color.
Transparent? Is that a color?
> 185.72 KB (190181 bytes) for the background image is waaay to heavy.
> At Width: 1199px, Height: 801px. The edge where it repeats isn't
> pretty either. It needs more fading as I think it interferes with
> reading the content.
Oh yeah, I have to go back over the images for sure. Right now, they
are being used as ideas for design.
> Your logo is 44.42 KB (45485 bytes) and is resized in the HTML. Fix
> that. Same for the photo of the boys: 182.36 KB (186741 bytes) and
> resized from Physical Width: 592px, Physical Height: 400px
>
> Otherwise, it's pretty good.
Thanks! I need to read up some more. My book is not real clear on the
use of em.
Beauregard T. Shagnasty - 28 Oct 2005 20:42 GMT
> How do you make the background color clear? I mean, if the text is
> going over an image, you don't really want to SEE a background color.
> Transparent? Is that a color?
background-color: transparent; is legal. The reason is your visitor may
have a default black background, and your black text would be invisible
on it.
> Thanks! I need to read up some more. My book is not real clear on the
> use of em.
For most things, you can use some value of em instead of px, except
maybe for borders. Play with it, maybe starting with your nav div at
somewhere around 13em wide, and the content with a left margin of 14em.

Signature
-bts
-Warning: I brake for lawn deer
> >> http://home.cfl.rr.com/jmartin104/uhf/
> >
[quoted text clipped - 33 lines]
>
> Otherwise, it's pretty good.
Thanks for the help! I got it looking much better now.