Archive for February, 2008

Bragging Rights

Wednesday, February 13th, 2008

Kentucky Angus Association deserves some kudos. Their web site has existed for less than a year and they are showing up as the top search result in Google for ‘Kentucky Angus’ and ‘KY Angus.’ A cocktail of excellent content and good markup has made them a first page search result.

IE7 CSS List Bug

Tuesday, February 5th, 2008

Not really a bug, just a bad combination of CSS. If you style navigation links using list items, don’t repeat my mistake:
#nav ul{
list-style-type: none;
list-style-position: inside;
}
I had both these elements but in separate areas of my code. IE7 interprets this as an invisible bullet, creating a mysterious ~10px margin where the bullet would be located. Firefox [...]