Productivedreams.com ProductiveDreams - Everything that web designers need, owned by Gopal Raju

A blog to keep you updated on the latest design trends.
RSS

20 Creative Cloudy Designs

Filed Under

Designs that are based on clouds have struck me a number of times. This post is to show the usual and unusual use of clouds in webdesign. I have collected a few designs that are amazing and some of them prove that clouds doesn’t always need a blue sky to make it beautiful. Not sure how long this trend is gonna survive!

1. Biola University



2. Simayaa



3. Keithar



4. Webdesignbeach



5. Mydezzign



6. Ali Felski



7. Andres Gallego



8. Scroll Magazine



9. Memigo



10. Future of Web Apps



11. Jonathan D Mendoza



12. Help With



13. Blummi



14. Nathan Sanders



15. Tiny Crumb



16. Qwertcity



17. Straw Poll



18. Cabedge



19. Moshi Monsters



20. Joyent



If you come across websites with similar concept, feel free to post a comment here.

It’s Twitter Time! Free vector icon set

Filed Under
Today, I’m happy to release the Free Twitter Icon Set which is 100% vector (Fireworks file). This set contains 4 different poses of the Twitter bird. Both PNG and PSD versions has been included in the .zip file.You can use the icons for private and commercial projects, blogs and web-sites for free, without any restrictions whatsoever.

However, you are not allowed to sell or redistribute the icons.

Don’t forget to follow me on twitter Thanks and Enjoy!

Free twitter icons
Download Free PD Twitter Icon Set Version 1.0
Download the latest braindumps with hundreds of free web icons and pass 350-040 exam using 646-563 tutorials.

12 Beautiful Twitter Themes

Filed Under

I’ve been browsing through a few Twitter profiles recently. If you haven’t heard about Twitter, click here Theming is an important aspect for any social networking site since that lets you represent your interests as well as your business. Good looking themes obviously draws the attention of your visitors.

Twitter has it’s own restrictions when it comes to theming. All you can do is change your background image/color, color of the side bar and fonts.

I noticed a few themes that were based on the profile owners website design(even my Twitter theme is based on my website). So just thought of putting together a few themes, that really impressed me.

1. Dezinerfolio



2. Aleklisefski



3. AlexBuga



4. Divvoted



5. Idesignstudios



6. Jakemarsh



7. larissameek



8. Melkirk



9. Rogieking



10. Timvansas



11. UstreamTV



12. Presetsheaven



Feel free to suggest any (good looking) Twitter themes that you come across and don’t forget to follow me on twitter ;)
We offer scjp training for programmers and IT professionals who want to earn a name with their microsoft certification. We also provide best quality tutorials for cisco certification.

IE CSS hack without using any hacks!

Filed Under

A few days back while working for a MAJOR client (sorry, can’t mention their name), I discovered something new (I hope it’s new ) – A pure CSS based image replacement solution for IE. This method is helpful especially to solve the PNG issue in IE6. I know there are many CSS hacks available out there to solve the PNG transparency issue, but this method doesn’t need any hacks!! Interesting isn’t it?

Step-1: Let’s review the HTML part first.

HTML
01
02
<html>
03
 
04
<head>
05
<title>ProductiveDreams</title>
06
<link href=”style.css” rel=”stylesheet” type=”text/css”/>
07
</head>
08
 
09
<body>
10
<div class=”bg-image”></div>
11
</body>
12
 
13
</html>
14
The following are the images that I've used for this tutorial. The image without saturation is a .gif and the colored one is a .png. You may right click and save the image.

PNG Image

Colorful PNG Image



Desaturated GIF Image

Desaturated GIF Image


Step-2: The stylesheet

I included the following code in the stylesheet
CSS
01
body{
02
background:#000;
03
text-align:center;
04
}
05
 
06
div.bg-image{
07
background:transparent url(images/pd.png) no-repeat center !important;
08
width:134px;
09
height:134px;
10
}
Let me walk you through the CSS. The first part simply applies a background color to the body and center aligns the div element. In the second part, I've specified the width and height of the div (134px) based on the image dimensions and have given the .png as the background image. Everything works fine?

Step-3: Solution for IE

This the most interesting part that does the magic.

I added another line of CSS code just below
background:transparent url(images/pd.png) no-repeat center !important;
and the following is the code
background-image:url(images/pd.gif);

Check out the result in IE! Awesome.... isn't it? In all other browsers except IE you will see the colorful png image.

Consolidating the entire thing

So. the final css would look like:
CSS
01
body{
02
background:#000;
03
text-align:center;
04
}
05
 
06
div.bg-image{
07
background:transparent url(images/pd.png) no-repeat center !important;
08
background-image:url(images/pd.gif);
09
width:134px;
10
height:134px;
11
margin:0px auto;
12
}

For your ease, I have attached the sample files as a zip. Feel free to download it :) and do let me know your feedbacks.

Download CSS Solution for image replacement