Posts Tagged ‘Coding’

twitter

Back in August I wrote an article about My Top 10 People to Follow on Twitter and I’ve decided to expand on that and narrow the field down my Top 10 people to follow in the design and web industry. This list includes designers, developers, social media folk and much more, it’s list of people that I draw inspiration and

More after the jump

dotted

Sick and tired of boring old underlines to show that a bit of text is a link? Here’s a really quick bit of CSS to show a dotted underline on your links (like this).

dotted-url

It’s so easy to do this that it hurts. We’re just swapping the underline for a border.

Dotted Underline on Hover Only a:link, a:visited { text-decoration: none; } a:hover { border-bottom: 1px dotted

More after the jump