CSS has very little if any impact on SEO. Especially for the kind of thing she is doing. Where it impacts SEO is if you have portions of the page not visible then parts become visible as you hover over items and things like that.
It will impact download speed, because the formatting only gets downloaded from the css file once for the entire site, so as people move from page to page, that should happen faster because each page is not full of bloated formatting. It makes it easier to create alternate looks for her site without ever touching a single page of content. Useful for site makeovers. Or useful for tuning a site for multiple devices. Example: the same site uses one set of css if viewed on a computer, and another set of css when printed,and another set when viewed on a mobile device.. Generally it helps assure the entire site has the same look rather than having to remember to go make changes to every page.
To maintain the good aspects she has, she should keep the same page filenames. Not alter her meta-descriptions and not change her titles and headings (unless she is making improvements to them of course.).
A-ha! Another question then...this stylesheet I will set up for media: screen. Should I create separate stylesheets for different media? Do they all go in the header and I hope that the right one is used?
Thanks for all the other bits in the previous post...I'll change to em instead of px. And work on the pic tags. And look at Kompozer. (You realize it's scary to change editors at this date. Plus I don't know if my webhost will accept Kompozer.)
Because I have to touch every page to put the code in and fix anything that falls apart and take out all the old code I don't need, I am also going to work on the titles, descriptions and headlines. Which is why this is going to be such a long project.
.
Kompozer will work with with any host that supports FTP

... (they all support FTP ... microsoft was the only one to create extentions for that FP used that would have to be placed on the server)
I would stick with one stylesheet becasue within the stylesheet you can use the @ command to specify the media. Usually the differences for different media are small ... like hiding a large banner image for cell phones or printers.
A couple things I noticed while looking at your css... and I realise you are working on it now and may have already altered these things.:
- In your font definition you switch font styles within the definition, which is a bit odd.
"font-family: Arial, Georgia, Times New Roman, Times, serif;" Arial is a sanserif font while the others are all serif variants. Usually for continuity you specify similar styles of fonts as you move from specific to generic. Also any font with more than one word should be encased in quotes like this "Times New Roman"
- At the bottom of your css, style1 will prevent style 2 from being read because style1 lacks a closing semicolon.
.
swirt said:
Kompozer will work with with any host that supports FTP

... (they all support FTP ... microsoft was the only one to create extentions for that FP used that would have to be placed on the server)
I would stick with one stylesheet becasue within the stylesheet you can use the @ command to specify the media. Usually the differences for different media are small ... like hiding a large banner image for cell phones or printers.
A couple things I noticed while looking at your css... and I realise you are working on it now and may have already altered these things.:
- In your font definition you switch font styles within the definition, which is a bit odd.
"font-family: Arial, Georgia, Times New Roman, Times, serif;" Arial is a sanserif font while the others are all serif variants. Usually for continuity you specify similar styles of fonts as you move from specific to generic. Also any font with more than one word should be encased in quotes like this "Times New Roman"
- At the bottom of your css, style1 will prevent style 2 from being read because style1 lacks a closing semicolon.
Anything that I do that is 'odd' is probably because I don't know what I'm doing! I just added the 'Arial' to the list that El had because I wanted Arial. I have no idea how the font ordering system works. (And didn't know there was one!) I suppose there's a place I can look that up.
I'm not using the the styles, but thanks for pointing that out. I'm going to comment them out in case a need arises for them someday.
Right now my brain is full so I need to do something un-CSS tomorrow like the site map and the privacy statement. And right now the power is sketchy here so I'm shutting down altogether.
.
Bree said:
I have no idea how the font ordering system works. .
The list is designed so that the first font in the list is the first one the site will try to use, but if the font is not available, the site tries the next one in the list, and if that one is not available, it tries the next one. So the idea of the list is to have a safety net.
All machines may not have Georgia, but they are likely to have Times, but just in case, they ALL have Serif. Put them in order from what your really want, down to what you can live with
.
swirt said:
Bree said:
I have no idea how the font ordering system works. .
The list is designed so that the first font in the list is the first one the site will try to use, but if the font is not available, the site tries the next one in the list, and if that one is not available, it tries the next one. So the idea of the list is to have a safety net.
All machines may not have Georgia, but they are likely to have Times, but just in case, they ALL have Serif. Put them in order from what your really want, down to what you can live with
I knew that part (about having the list in case someone's computer doesn't have the particular font I want to show), just didn't know how to tell one font type from the other...ie serif from sans serif...just by the name. I realize you can tell by looking at them.
Is there a partucular number of fonts I should list? I figured just having the basic ones would cover it whether they are serif or sans serif. Should it matter which they are as long as they are fairly common? Is it a matter of all of my *beautiful* formatting going horribly awry with the wrong font being chosen by the computer?
.
Bree said:
Is there a partucular number of fonts I should list? I figured just having the basic ones would cover it whether they are serif or sans serif. Should it matter which they are as long as they are fairly common? Is it a matter of all of my *beautiful* formatting going horribly awry with the wrong font being chosen by the computer?
3 is probably the most typical going from specific, to family, to generic family
example: Georgia, Times, serif
example: Antique, Arial, sans-serif
There is nothing catastophic about mixing serif and sans-serif fonts in definition, it is just usually web designers are control freaks who specifically want the text heavy or text light look of either a serif or sans-serif font so they would want to make sure their desires are carried out regardless of which font is available to any particular computer.
.