The very nice and beautiful CSSArtillery made my last month perfect. The tly-design has been selected and featured again on a frontpage. CSSArtillery is a very new web design gallery i think, that showcases CSS based web designs from all over the world. It’s a site that I will check regularly for inspiration and to see what design trends are popular, and being featured on a site I admire so much feels like a huge achievement.

But when i visited my profile the first time i couldn´t believe what i saw. This design of the artillery is so stunning, so minimal and dark, crazy, i kissed my flatscreen because i fell in love. This is exactly what i await eagerly, a design that kicks your shoes off. Dudes and Dudettes form the artillery, i have to thank you for your design and featured entry on your page.

After visiting your page i don´t like mine anymore…

Be sure you get my highest rating on all other showcases your design is listed. I´m very proud and impressed to be part of this ubersuper gallery. And my plans to rule the world are for now delayed, yarr.

LinkCreme is a gallery with beautiful css and flash sites updated on a daily base. I´m featured on this site and its wonderful to see my page grow. With this entry it was possible for me to get in touch with two very nice persons and new offers to work. So i have to thank you for promoting my page and design.

As all other gallerys showcases LinkCreme the best designs only i´m sure that LC is getting to be one of the best website of ranks in the world.

With using wordpress as engine and the quilm, on of the most succesfully themes out there, there are many wordpress powered blogs listed. To see other designers work with the probably best blogging software out there is great. Thats why i love welovewp and looppress.

This project was born in the 2006 with many other inspiration and gallery css sites that exist on the web and i´m very ashamed to write now that i´ve never heard of this page before. But LC has something interesting and unique, its not only the passion for wordpress.

I still feel somewhat excited when I see tomlovesyou being showcased and recognized at other sites. 

I can´t believe what happens in this year so far, the design is selected and officially listed on the gallery heavyweight and my absolute favourite, CSSmania.

This is my daily inspiration, motivation and i believe this is the most famous and biggest CSS showcase gallery in the world. Well since good things come in three’s, i´m really proud to be featured again.

I guess one bad thing did happen though, apparently on CSSmania they spelled my last name Nussbaumm, instead of Nussbaum, but I think I will live.

You normally have to submit your site for selection/approval. I never have, because I figured there’s no way tomlovesyou is nearly good enough to be featured in the gallery. This was totally unsolicited, so yarr!

For those of you who haven’t heard of CSSmania, it is an online showcase of well designed Web sites with standards compliant code. Quite a few people like tomlovesyou for the articles that are featured on the site, but it feels good to be recognised for the design and code aspect of it as well.

Now i´m really a step closer to the world domination! Thanks to the CSS Mania team and congratulations on an inspirational web design showcase. Click to see tomlovesyou´s profile on CSSmania.

 

 

No Comments January 26, 2008

I had an unbelievable week and month and the best is, this year had just begun. The second time in this week i got featured on a wonderful CSSgallery, this time from the impressive nice looppress.com.

Looppress is a very beatiful showcase devoted to beautiful websites, blogs and themes built on the Wordpress platform. To be featured in this gallery is an honor to me and to see other developers and designers using wordpress is very interessting and a great inspiration for me. And thats why we all love to work and design with WP.

Looppress likes designs that adhere to the latest design trends, look great, function well and have creativity. So, i´ve shown you mine- now show me yours!

2 Comments January 24, 2008

And tomlovesyou made it again and is on the best way and one step closer to tear the world domination!

This time  i´m proud to announce that CSSstar likes my design and featured it on their frontpage. This is a very nice CSSgallery with mostly WP powered projects and i am very pleased to find out that one of my designs, my blog is featured again!

CSSstar is a very new gallery out there and its great to be part of it. It´s designed and developed by the guys over DA studio, i hope they set up on botch pages a little about section.

What do we do tomorrow?

No Comments December 16, 2007

I’m writing this article because I regularly find myself explaining this (somewhat) basic CSS maneuver to many people. I know that when I first started learning CSS this task befuddled me. However, looking back it’s definitely one of the more easy techniques to master. I find a lot of folks that want to replace text with an image do something like this:

<h1>  <img src="blog-title.gif" alt="blog title" /></h1>

So instead of the blog title appearing in plain text you have an image. While this techincally “works” it really doesn’t work. Mostly because now you have no text at all for Google to crawl, or for people to search, or for screen readers to read. The only audience this method works for is people who can see images and that excludes a lot of your desired audience. Google bots, people who can’t see well, and humans searching your site all will be hurt by the fact that no text at all is present. So generally speaking, if you want to replace text with an image you really don’t want to completely do away with the text, you just want to make it so seeing people can’t see it.

It should also be noted that it’s commonly believed to be a “best practice” to use real HTML text when you need text. This is opposed to, say, using an image of text rather than text itself. Text is preferred because it’s searchable, indexable, and you can cut & paste it. However, there are some times where using an image for text is preferred but this is suitable only for limited instances. Basically, you don’t want to be replacing large blocks of text with an image … bad idea. But sometimes you’ll want to replace a company name with an image so you can use a special font or something. OK, now that we have that covered, let’s move on.

In my toolbox I have two techniques that will replace text with an image. It should be noted that I will not go into sIFR here. Also, there are other methods of replacing text with an image but for the purposes of this article I’m only going to go into the two most simple ones.

Phark

This one, as far as I know, was invented by Mike Rundle and the name “Phark” is what the book CSS Mastery gives this technique, so I’ve begun using that title too. It solves the challenge of replacing text with an image in a way that screen readers can still handle. This method is the first way I learned, and I still use this method the most.

First, create your markup:

<h1>  Blog title</h1>

Then style it:

h1 {  text-indent: -9999px;  background: url(blog-title.gif) no-repeat;  width: 100px;  height: 50px;}

What we’re doing here is basically just putting a background to the text and then pulling the text waaaaay to the left, off the screen. Incidentally, you should get in the habit of only pulling text to the left with a negative text-indent. Pulling the text in other directions will often work but sometimes it won’t and when it doesn’t you’ll end up scratching your head for hours only to remember “Oh yeah, Ben said to pull it to the left!”

FIR

The Fahrner Image Replacement technique was the second way I learned how to replace text with an image. I find that this is the most foolproof means to do so and if you’re a n00b to CSS and webdesign I’d just use this until you feel ready to move on (or if you become a professional web designer).

First create your markup. Wrap the text you want to replace in <span> tags like this:

<h1>  <span>Blog title&lt;/span></h1>

Second, you apply your image to the background of the text. Note that the width and height MUST be the exact same as the dimensions of the image you’re using!

h1 {  background: url(blog-title.gif) no-repeat;  width: 100px;  height: 50px;}

Third, and finally, you set the <span> to display: none; like this:

h1 span {  display: none;}

This method is super simple and I see it used all over the place. The only problem (as I’m told) is that many screen readers will categorically ignore (and not audibly reproduce) any text that is set to display:none; in the CSS. So if you use this method you can pretty much count on leaving some of your visitors out to dry.

There you have it. It’s really very simple to replace text with an image. Again, I would recommend you use the Phark technique where possible but I’ve been known to use the FIR technique in some instances. If this tutorial helped you please let me know.