Main Content

Category: Web Design & Development

Wanted: Site Map Software

I’m on the lookout for some good software to create site maps. Either computer based or internet based. You’d think it’d be easy enough for a program to spider a site and output the list of URLs with titles, however I’m having a hard time finding something that’s easy to use and works well. Any […]

SEO Online Marketing Blog Re-Designed

Check it out! The TopRank Online Marketing Blog has gotten a face lift. I took the old blogger template and re-worked it into something visually pleasing. Feel free to leave comments on the design here or there. Enjoy! 🙂

IE Actually Helped?

I was almost amazed at Internet Explorer (PC) yesterday. A new design looked great in everything except IE and I had to do some extra investigating. Well IE pointed out a few issues, like the columns were not adding up to the correct amount. So I fix them thinking this was a big help and […]

Using CSS to Control Multiple Hover Text Colors

I found a great new CSS trick today to control the hover text color for different links on a page. Basically you add five class’ to your CSS file. /* black links with blue rollover */ .link-black {color: #000000;} .link-black a:link {color: #000000;} .link-black a:visited {color: #000000;} .link-black a:hover {color: #0098cb;} .link-black a:active {color: #0098cb;} […]