New website on it’s way

September 24th, 2009

Next week I shall be launching the new improved version of AheadCreative. I’ve got lots of interesting blog articles up my sleeve and I’ll be posting on:

  • Design
  • CSS
  • Wordpress
  • Productivity

…and much more. The first few posts will be a series on “The Definitive Guide to setting up a portfolio with WP 2.8″. Check back next week.

0Commments

Removing unwanted button padding in Firefox

May 13th, 2009

Recently I came across a issue with the <button> element in Firefox. It seems that if you have the following code:

<button><span>Text</span></button>

..and then apply CSS styles to set padding to zero for both the elements Firefox will automatically insert padding on the button. This is impossible to remove with standard CSS.

However there is an easy fix. Just add the following rule to your button element:

button::-moz-focus-inner { 
    border: 0;
    padding: 0;
}

This should fix everything.

13Commments

New website launched!

February 6th, 2009

I’m (finally!) pleased to announce the launch of the all new aheadcreative.co.uk - my personal web design blog and portfolio.

It’s been a difficult task.  Having just spent 8 hours at a computer at work, the last thing you want to do it to jump straight back on another computer but I managed it. I’ve designed, built  and implemented this website and now it’s time to use it.

I intend to focus on the blog element of this website,  posting tips, tutorials and information relating to the world of the web. So don’t be shy! Come back and check it out from time to time.

1Commments