Hello. I am freelance webdesigner. I create modern websites with XHTML and CSS

Design and development of modern, accessible and elegant websites. Webdesign with web standards and fresh design.

Feb 19
Remove Firefox’s border at :active and :focus links

As you probably have noticed, Firefox adds a grey, dotted border around a link when it’s active or focused (tab). This could sometimes look a little strange espezially when the background color of your design has the same color as the border. But there’s an easy solution of how to get rid of it:

a:active, a:focus{ outline: none; }

Feb 19
10 best CSS Hacks

Dejan Cancarevic created a great list on StylizedWeb.com of the 10 best css hacks. Brilliant; I always looked out for something like this. Thanks. Visit Site

Friend’s Note

Some companies that have lousy website design should find web publishers and advertising networks to add css code to bring it to life. The web design developed by a professional will make sure to give your company instant results. Upload your site with a cheap web hosting company along with getting a domain name registration. For secuity purposes, dedicated servers are better than shared servers.

Feb 14
CSS Type Set

I’ve just found a great utility called CSS Type Set. It’s similar to the Typetester, with the difference that the tool also gives you the css code. I really love this tool, because you can perfectly experiment with a different kinds of CSS typography settings and see the results live. The design, look and feel is also great. Very simple, but powerful. Visit Site

Feb 08
Use CSS to create frame similar sites

CSS gives you a great way to create frame similar sites. Simply apply the overflow: auto; property to create a scroll area.
Read On