emailshot

Wednesday, 6th September 2006

emailshot

First Impression launch emailshot, an HTML email marketing platform.

emailshot allows you to create and send high-impact branded HTML emails to your target customers, with detailed reports feeding back the effectiveness of your campaigns.

www.emailshot.co.uk


Basic HTML Cheat Sheet

Sunday, 30th April 2006

From time to time you may need you use basic HTML in your blog, forum or Content Management System (CMS). HTML consists of tags that go before and after the bit of text you want to effect. Here’s a few basic bits of HTML to help you out:

Making text bold

<strong>This text is bold</strong>

Making text italic

<em>This text is italic</em>

Making a link to a page

<a href="http://www.website.com" >This text is a link to website.com</a>

Making a link to a page (open in a new window)

<a href="http://www.website.com" target="_blank" >This text is a link to website.com</a>


CSS Bugs: Fix for IE / Win gap between list items

Tuesday, 21st February 2006

Recently I stumbled across the annoying IE/Win bug of gaps between vertically stacked list items.

After searching around for a while I found a fair few fixes. However, none of these seemed to work for me. The only different I could find was that my list contained images where the other examples were purely text.

I fixed the bug by chance whilst implementing a fix by John Serris at www.phonophunk.com.

It turned out that when using the “vertical-align: bottom” fix applied to the list item tag, I also needed to apply it to the ‘a’ and ‘img’ tags as well:

#navsec a, #navsec img { vertical-align:bottom; }

Read the rest of this entry »