Thursday, September 09 2010 10:31 pm Eastern Standard Time
Home Music New!Videos New!Video Feeds RSS Feeds Photo Album Calendar Weblog Articles Loan Calculator
 
 

Pick an entry


2010-05-25
2010-04-16
2010-04-13
2010-04-10
2009-09-20
2009-09-18
2009-09-19
2009-09-16
2003-11-15
2003-07-19
2008-11-15
2003-05-11
2008-11-12
2008-11-11
2004-05-16
2007-12-31
2004-04-10
2007-12-30
2007-12-30
2007-10-11
2006-05-04
2006-03-11
2005-11-29
2005-10-04
2005-09-20
2005-08-15
2005-03-13
2004-11-30
2005-01-31
2005-01-25
2005-01-08
2003-12-04
2004-12-05
2004-09-25
2004-09-06
2004-08-03
2004-07-25
2004-07-16
2004-07-14
2004-07-11
2004-06-27
2004-06-13
2004-06-06
2004-06-01
2004-05-23
2004-04-24
2003-07-06
2003-12-12
2004-04-09
2004-04-17
2004-01-02
2004-04-06
2004-03-13
2003-12-14
2003-10-05
2003-08-10
2003-06-28
2003-06-20
2003-06-07
2003-05-18
2003-06-22
2003-09-12
2004-02-17
2004-02-16
2004-02-11
2004-01-31
2004-01-18
2004-01-11
2004-01-03
2004-01-01
2003-12-30
2003-12-27
2003-12-26
2003-12-24
2003-12-13
2003-12-06
2003-12-05
2003-05-28
2003-05-08
2003-05-09
2003-05-17
2003-05-20
2003-05-22
2003-06-16
2003-07-02
2003-07-04
2003-07-12
2003-07-13
2003-07-18
2003-07-20
2003-07-24
2003-08-09
2003-08-17
2003-08-20
2003-09-06
2003-09-20
2003-09-26
2003-11-01
2003-11-17
2003-11-07
2003-11-19
2003-11-24
2003-05-02
2003-04-28
2003-04-29
2003-05-04

Any of you monkeys want a banana?

Any of you monkeys want a banana?(81 KB)

Making progress...
Posted at 22:08 on Friday, December 5, 2003

There seems to be (at least) one absolute rule when it comes to building and maintaining a web site....it's a never-ending job, especially when new techniques are added that interact with old content. I've been slowly going through the pages and incorporating the style sheets I began creating earlier this year. CSS is a great help when building web pages...if you build web sites, you should be using CSS. It's too bad there isn't more consistent support in the current browsers, but that should get better as time passes. It's actually pretty good right now and, sad to say, for some things, IE6 supports the CSS standards better than Mozilla. For example, I've tried to create a style that sets my logo as the header background. In IE6, it works just fine. In Mozilla, I have so far been unable to get it to display the graphic. There's a trick to it I'm missing, because numerous sites out there do this successfully. I'll eventually figure it out, I suppose.

Another issue is converting entries from a database into a RSS feed. Well-formed XML demands that all tags be properly closed, or the parser will fail, and complain bitterly about some malformed something or other. I've been working on a feed for my weblog, and found that the creation of the xml document would not complete normally, because some of the tags imbedded in the text (to display pictures, offer hyperlinks, etc) weren't properly closed. The two main culprits were the line break and the image tags. Once I closed them properly (and removed a few characters the parser didn't like) the xml file could be created. Closing the line break means using < br /> instead of < br >, and a properly closed img tag has /> at the closing bracket. I'll be interested in finding whether the weblog loads faster using the rss feed or pulling from the database.