oh! thanks, Plei! It'll take me awhile, I'm really very slow-going on this stuff.
Jayne ,'Serenity'
Buffistechnology 2: You Made Her So She Growls?
Got a question about technology? Ask it here. Discussion of hardware, software, TiVos, multi-region DVDs, Windows, Macs, LINUX, hand-helds, iPods, anything tech related. Better than any helpdesk!
XP home. Closing it from time to time hasn't seemed to affect it.
Brenda, because IE has its nasty tentacles embedded in the operating system, the program launches faster (and convinces people that it's faster), but once it's launched, it's slower. Opera is faster than either, on Windows. Other geekery here: [link]
Nuh-uh. It's actually faster loading pages, etc. I may try out Opera at some point, though.
Allyson -- You've got a bunch of t table tags without any corresponding t /table tags (I count seven). It's almost as though you're using the t table tags as paragraph breaks. Get rid of all of them! That would probably cause some browsers to create columns where you don't want them.
Thanks so much, Jon!
I don't know what most tags do, at all. Got rid of 'em.
Now I gotta make the text not stretch to the edges. And add my email addie and make sure the title goes back to the front page.
And then I'm going to go throw up.
It's sort of sad that I've never gotten any better at this, given that coding up a simple page is the sort of knowledge people o' my generation tend to see as simple as dialing a phone.
The best way to learn coding is to steal the code of pages you like. I stole most of my code from Maayan, who's a very clean designer. I'm not in any way good, but I've learned a bit.
No problemo, Allyson. By the way, without the table tags, you also want to get rid of the tr, td, /tr and /td tags. They're only used within tables.
Oh, I just noticed that you took out the word "table", but left in the rest of the tag. You need to get rid of the whole thing, i.e. the entire t BORDER="0" CELLSPACING="0" CELLPADDING="30" COLS="0" WIDTH="80%"
oooh, but how do I properly space between objects without cellpadding, jon?
If there's no table, there are no cells, so no cell padding. One way to add spaces without using a table is to use . Each one equals one space. It'll be hard to line things up, though.
Another way is to create a one pixel clear gif image, and then insert the image wherever you need to space things. You can vary the size of the space by changing the width attribute (and/or height, too) in the image tag.