Collis Ta'eed on Jun 19th 2008 with 371 comments
Today I’m going to take you through my entire process of getting from Photoshop to completed HTML. We’re going to build out a set of 4 PSD mockups of a website that eventually will become a WordPress theme. It’s a massive tutorial, so if you’re going to follow through to the end, make sure you have a few hours to spare!
If you’re like me, you like to see the end before beginning. You can see the final four HTML files by following these links:
Additionally you can download the full HTML/CSS/Image source files here.
As you may or may not know, I’ve (very slowly) writing a book on WordPress theming. What we’re building is actually the HTML that I’m using in the book to build the main example themes. The final set of themes is called Creatif. You can see the 4 mockups shown in screenshots below (click to get the larger versions).
You can get the full layered PSD files *and* a tutorial on designing them up from our PSDTUTS Plus membership – but it will cost you $9 a month to access. If you don’t wish to join though, don’t worry because you can follow today’s tutorial completely just using the JPG screenshots below.
Unlike previous Site Builds this tutorial is covering a decent sized template. So we’re going to take this in stages. First we’ll do the framework, then the first page, then alternate pages, then finally an alternate colour scheme.
So first of all we boot up our code editor of choice. I actually use Dreamweaver most of the time (and Textmate sometimes). I find it has some pretty decent code tools and a few features that I’m really used to (in particular a powerful Find+Replace and a quick <img> hook up). If you do use Dreamweaver, I recommend setting up a "Site".
In any case the first things to do are create a directory structure and get ready to build. I usually have an /images/ directory and a /scripts/ directory, and then plonk all my CSS and HTML in the root.
The first thing we’ll do is a quick overall layout in HTML with some barebones CSS just to make sure we’ve got a solid foundation. We can also check it in the major browsers (IE7, IE6, Firefox, Safari) just to make sure we’re on a solid footing. There is nothing worse than coming back all the way to the beginning to fix browser compatibility issues. It’s much better to do it as you go.
So we’re building the first mockup, we can see a few things:
So here’s a HTML layout:
view plaincopy to clipboardprint?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>Creatif</title> <link href="style.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="main"> <div class="container"> <div id="header"> Logo / Menu </div> <div id="block_feature"> Featured Content </div> <div id="block_content"> Content </div> </div> </div> <div id="footer"> <div class="container"> Footer Stuff Goes in Here </div> </div> </body> </html>
As you can see there are two segments: the #main area and the #footer area. Inside each we have a <div class="container"> element which will be fixed width and centred. Then inside the main container we just have a sequence of <div>’s. Now let’s add a little CSS as follows:
view plaincopy to clipboardprint?
body { margin:0px; padding:0px; background-color:#131211; } #main { background-color:#c4c0be; } #footer { color:white; } .container { width:950px; margin:0 auto; border:1px solid red; }
So we’re setting the body’s background colour to the dark brown of the footer. Then the #main area has the lighter background. Finally you can see the .container elements have a width of 950px and are centred using margin: auto. I’ve also added a red border just so you can see where the elements are on the page.
You can see the layout here, or view the screenshot below.
So our layout is looking ship shape. With the main elements positioned, it’s just a matter of going through and styling it all up, couldn’t be easier
The first thing we need are some images. You can make these yourself if you have the layered PSD’s, or just grab the download ZIP and you’ll find some I made earlier!
Here’s a screenshot of me saving the first image – a large background JPG. I’m using this large background image to get that radial gradient highlight, then I’ll use a thin 1px slice to fill out the left and right sides so it extends off.
Similarly we’ll create a background image for the footer to tile along as a border between it and the main area (you can find that image in the ZIP file, it’s called background_footer.jpg). Now we’ll update the CSS file to remove that red border and add our new background images, as follows:
view plaincopy to clipboardprint?
@charset "UTF-8"; /* Background-Styles */ body { margin:0px; padding:0px; background-color:#131211; } #main { background:#c4c0be url(images/background_light_slice.jpg) repeat-x; } #main .container { background-image:url(images/background_light.jpg); background-repeat:no-repeat; min-height:400px; } #footer { background-image:url(images/background_footer.jpg); background-repeat:repeat-x; color:white; padding:40px; } .container { width:950px; margin:0 auto; position:relative; }
Two things to note:
So far so good. Don’t forget to test in different browsers. Here you can see in IE7 it’s looking fine and dandy!
Next I’ve created the logo element. Because later on we’ll be running an alternate colour scheme I’m going to use a transparent background PNG file. You can make these by switching off the background in Photoshop and then going to File > Save for Web and Devices and selecting PNG-24. You should be aware that PNG-24 produces pretty high file sizes. It’s OK for a small image like this, but for larger ones it can be big.
(If anyone knows how to make compressed PNG files, leave a comment, because I’m pretty sure there is a way to do it, I just don’t know how!)
Anyhow you can grab the transparent logo PNG here.
Now we’ll add our logo and also a menu with this HTML:
view plaincopy to clipboardprint?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>Creatif</title> <link href="step_2.css" rel="stylesheet" type="text/css" /> <link rel="shortcut icon" href="images/favicon.ico" /> </head> <body> <div id="main"> <div class="container"> <div id="header"> <ul id="menu"> <li><a href="">Portfolio</a></li> <li><a href="">Services</a></li> <li><a href="">About</a></li> <li><a href="">Testimonials</a></li> <li><a href="">Request a Quote</a></li> </ul> <div id="logo"> <h1>Creatif</h1> <small>A Family of Rockstar WordPress Themes</small> </div> </div> <div id="block_feature"> Featured Content </div> <div id="block_content"> Content </div> </div> </div> <div id="footer"> <div class="container"> Footer Stuff Goes in Here </div> </div> </body> </html>
and this extra CSS:
view plaincopy to clipboardprint?
#header { padding-top:20px; } #logo h1, #logo small { margin:0px; display:block; text-indent:-9999px; } #logo { background-image:url(images/logo.png); background-repeat:no-repeat; width:194px; height:83px; } ul#menu { margin:0px; padding:0px; position:absolute; right:0px; } ul#menu li { display:inline; }
Some things to note:
Now the one problem with transparent PNGs is that our friend Internet Explorer 6 doesn’t support them! Fortunately that’s relatively easily fixed thanks to this article I found – The Easiest Way to Fix PNG for IE6. We just download a script and add this line in our CSS:
view plaincopy to clipboardprint?
/* Fix up IE6 PNG Support */ img, #logo { behavior: url(scripts/iepngfix.htc); }
Unfortunately for me though my testing copy of IE6 which because I’m on a Mac is through Darwine – doesn’t recognize the fix … So I have no idea if my hack is working
So anyhow at this point I stopped paying attention to IE6 I’m going to have to get me yet another way to view IE6, maybe through parallels.
In any case, here’s a screenshot of what we get in IE6 when transparency is *not* working…
Now our menu is still looking pretty ugly, so let’s add a few styles to finish it off, as follows:
view plaincopy to clipboardprint?
ul#menu { margin:0px; padding:0px; position:absolute; right:0px; } ul#menu li { display:inline; margin-left:12px; } ul#menu li a { text-decoration:none; color:#716d6a; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:10px; font-weight:bold; text-transform:uppercase; } ul#menu li a.active, ul#menu li a:hover { color:#211e1e; }
Nothing very exciting here except that we’ve defined an "active" style which is the same as the :hover style (namely it’s a darker shade). That means we can write <a href="" class="active"> and the link will darken. Later in WordPress we’ll make it so that you can tell what page you are on at any given time.
Now we have the base of our page laid out, it’s time to start adding the content blocks. As I mentioned earlier we are going to make this site as a series of interchangeable content blocks. The first one is the "Featured Project" block. So let’s add some HTML:
view plaincopy to clipboardprint?
<div id="block_featured" class="block"> <span class="block_inside"> <div class="image_block"> <img src="images/sample_feature.jpg" /> </div> <div class="text_block"> <h2>Eden Website Design</h2> <small>in <a href="">web design</a> tagged <a href="">corporate</a>, <a href="">web2</a></small> <p>And then a short description of the website would go in here. Something saying maybe what awesome skills I used on the project and how happy the client was. </p> <br /> <a href="" class="button">View Project</a> </div> </span> </div>
So that code goes below the <div id="header"></div> code from the previous steps. And unstyled it looks like this:
There are two important things to note here:
Now we apply some basic styling like this:
view plaincopy to clipboardprint?
/* Block-Styles */ .block { border:1px solid #a3a09e; background-color:#ffffff; margin-bottom:20px; } .block_inside { display:block; border:1px solid #ffffff; background: #ffffff url(images/background_block_slice.jpg) repeat-x; padding:30px; overflow:auto; } .image_block { border:1px solid #b5b5b5; background-color:#d2d2d2; padding:5px; float:left; } .image_block img { border:1px solid #b5b5b5; } .text_block { float:left; width:430px; margin-left:30px; }
So as I mentioned above we have the .block class which just sets a border and bottom margin. Then immediately inside we have the .block_inside element which has a white border, thin slice background (to give it that faint gradient), some padding and finally an overflow value.
We have overflow:auto because we are going to have two floated elements inside. I used to use a clearing <div> but someone in my previous comments pointed out that this works just as well and is a lot cleaner!
Then inside we have an .image_block class which gives our image a double border (one on the <div> and one on the <img> itself) and which is floated left with our main .text_block also floated left to form a mini columned layout.
So our layout now looks like this:
Now the text styling is all over the place at the moment. It sort of looked OK in the previous screenshot because Firefox which I was using has defaulted to a Sans-Serif font. But if I’d screenshotted IE you would have seen a Serif’d typeface instead. So we should get the text sorted out now. We’ll add these bits of CSS to our stylesheet:
view plaincopy to clipboardprint?
body { margin:0px; padding:0px; background-color:#131211; font-family:Arial, Helvetica, sans-serif; color:#7f7d78; font-size:13px; line-height:19px; } /* Text-Styles */ h2 { margin:0px 0px 10px 0px; font-size:36px; font-family:Helvetica, Arial, Sans-serif; color:#000000; } small { color:#595856; font-weight:bold; font-size:11px; display:block; margin-bottom:15px; } a { color:#007de2; text-decoration:none; } a:hover { text-decoration:underline; } p { margin: 0px 0px 15px 0px; } a.button { background:#32312f url(images/button_bg.jpg) repeat-x; padding:5px 10px 5px 10px; color: #ffffff; text-decoration: none; border:1px solid #32312f; text-transform:uppercase; font-size:9px; line-height:25px; } a.button:hover { background:#007de2 url(images/button_bg_o.jpg) repeat-x; border-color:#007de2; }
So:
Withour extra styling, the page is starting to take shape!
One of the neat things about this design is the little blue ribbon strips in the right corner. Thanks to a mix of CSS, transparent PNG files and absolute positioning, these are really easy to add. So first we need to make the image. Once again we create an image with a transparent background and save it as PNG-24, here’s the image:
Next we need to place the image in our HTML, we can do it like this:
view plaincopy to clipboardprint?
<div class="block"> <img src="images/ribbon_featured.png" class="ribbon"/> <span class="block_inside"> <div class="image_block"> <img src="images/sample_feature.jpg" /> </div> <div class="text_block"> <h2>Eden Website Design</h2> <small>in <a href="">web design</a> tagged <a href="">corporate</a>, <a href="">web2</a></small> <p>And then a short description of the website would go in here. Something saying maybe what awesome skills I used on the project and how happy the client was. </p> <br /> <a href="" class="button">View Project</a> </div> </span> </div>
So you can see the <img> tag there on the second line. Note I’ve given it a class=”ribbon” and put it inside the .block element, but outside the .block_inside element. That’s because if we do it inside .block_inside it messes up the overflow:auto property we set earlier. Anyhow right now this will just mess up our layout, so let’s add some styling:
view plaincopy to clipboardprint?
.block { border:1px solid #a3a09e; background-color:#ffffff; margin-bottom:20px; position:relative; } .ribbon { position:absolute; top:-3px; right:-3px; }
You can see that we’ve:
Easy! Back in the day, we would have had to use some super complicated <table> layout to achieve that same effect. Here’s how it’s looking now:
With the ribbon added, our first block element is complete! Now it’s time to start on the next <div> block. This one will have that text about the theme and the recent projects list. So first we add some HTML:
view plaincopy to clipboardprint?
<div id="block_portfolio"> <div id="portfolio_items"> <div class="mini_portfolio_item"> <div class="block_inside"> <img src="images/sample_mini_portfolio.jpg" class="thumbnail" alt="PSDTUTS" /> <h3>PSDTUTS Theme Design</h3> <p>Website design for leading photoshop tutorial site and creation and maintenance of WordPress theme. </p> <a href="#" class="button">View Project</a> </div> </div> <div class="mini_portfolio_item"> <div class="block_inside"> <img src="images/sample_mini_portfolio.jpg" class="thumbnail" alt="PSDTUTS" /> <h3>PSDTUTS Theme Design</h3> <p>Website design for leading photoshop tutorial site and creation and maintenance of WordPress theme. </p> <a href="#" class="button">View Project</a> </div> </div> <div class="mini_portfolio_item"> <div class="block_inside"> <img src="images/sample_mini_portfolio.jpg" class="thumbnail" alt="PSDTUTS" /> <h3>PSDTUTS Theme Design</h3> <p>Website design for leading photoshop tutorial site and creation and maintenance of WordPress theme. </p> <a href="#" class="button">View Project</a> </div> </div> </div> <div id="text_column"> <h2 id="text_title">Creatif is a WordPress portfolio theme for designers and creatives</h2> <p>You can use it to quickly turn WordPress into a portfolio website. Not familiar with WordPress? Fear not, the theme accompanies a book called <a href="#">How to Be a Rockstar WordPress Designer</a> by Rockstar Resources due for release in 2008.</p> <p>The book teaches you to use WordPress theming to take advantage of this flexible CMS product to create dynamic sites.</p> <p>And as if that’s not enough, you can see a photoshop to HTML tutorial on designing the theme over at <a href="http://psdtuts.com">PSDTUTS</a> and <a href="http://nettuts.com">NETTUTS</a>.</p> </div> </div>
So that looks like lots of code, but it’s not really. Let’s go through it:
Here’s the CSS:
view plaincopy to clipboardprint?
/* Portfolio-Home-Styles */ #block_portfolio { overflow:auto; margin-bottom:20px; } #portfolio_items { width:615px; margin-right:25px; float:left; } #text_column { float:right; width:310px; } #text_column h2#text_title { text-indent:-9999px; background-image:url(images/creatif.jpg); background-repeat:no-repeat; width:310px; height:129px; } .mini_portfolio_item { border:1px solid #a3a09e; margin-bottom:10px; } .mini_portfolio_item .block_inside { background:none; background-color:#e2dddc; padding:25px 30px 15px 30px; } .mini_portfolio_item .thumbnail { float:left; margin-right:20px; border:1px solid #979390; }
OK again, looks like a lot, but it’s not too bad. Let’s go through it step by step:
Next we have three style definitions for the mini_portfolio_item elements as follows:
So all in all it’s looking like this:
Now we want to add a "Recent Projects" ribbon to the top most item. To do this we simply slot it in, in the same position in the HTML as previously, like this:
view plaincopy to clipboardprint?
<div class="mini_portfolio_item"> <img src="images/ribbon_recent.png" class="ribbon" alt="Recent Projects"/> <div class="block_inside"> <img src="images/sample_mini_portfolio3.jpg" class="thumbnail" alt="AudioJungle" /> <h3>AudioJungle Site Design</h3> <p>Website design for leading photoshop tutorial site and creation and maintenance of WordPress theme. </p> <a href="#" class="button">View Project</a> </div> </div>
Then we add a position:relative attribute to the mini_portfolio_item element like this:
view plaincopy to clipboardprint?
.mini_portfolio_item { border:1px solid #a3a09e; margin-bottom:10px; position:relative; }
But something weird happens… While the right hand side looks correct, the top is getting cut off, as you can see in the screenshot:
The reason is that the element that our mini_portfolio_item is sitting inside is cutting it off. So we check up and see that the mini_portfolio_item’s are all inside a <div id="portfolio_items">. So the solution is pretty easy, we add 3px of padding to the top which is just enough space for our ribbon to show through. Here’s the adjusted CSS:
view plaincopy to clipboardprint?
#portfolio_items { width:615px; margin-right:25px; float:left; padding-top:3px; }
Finally I’ve swapped in a few images and titles so we can see how the page looks with 3 different items instead of the same one repeated. Then I also decided to get rid of the View Project button and just have a text link. This looked a bit cleaner and less busy. So here’s the final portfolio items section (shown in Safari, don’t forget to keep testing in different browsers!):
Now there is just one more section to our page: the footer! Let’s add some text content to it:
view plaincopy to clipboardprint?
<div id="footer"> <div class="container"> <div class="footer_column long"> <h3>Designed by Collis Ta’eed, do with this as you please</h3> <p>You can read a photoshop tutorial for creating the design at <a href="http://psdtuts.com">PSDTUTS</a>, You can read a PS->HTML tutorial for creating the site at <a href="http://nettuts.com">NETTUTS</a> and you can learn how to turn the HTML into a WordPress theme in the upcoming book <a href="http://freelanceswitch.com/book">How to be a Rockstar WordPress Designer</a></p> </div> <div class="footer_column"> <h3>More Links</h3> <ul> <li><a href="http://vectortuts.com">VECTORTUTS</a></li> <li><a href="http://activeden.net">FlashDen</a></li> <li><a href="http://audiojungle.net">AudioJungle</a></li> <li><a href="http://freelanceswitch.com">FreelanceSwitch</a></li> <li><a href="http://faveup.com">FaveUp</a></li> </ul> </div> <div class="footer_column"> <h3>RSS</h3> <ul> <li><a href="">RSS Feed</a></li> <li><a href="">What is RSS?</a></li> </ul> </div> </div> </div>
A few things to note:
Here’s how it’s looking!
Styling the footer is a pretty simple job, here’s the code we need:
view plaincopy to clipboardprint?
/* Footer-Styles */ #footer { font-family:Verdana, Arial, Helvetica, sans-serif; font-size:10px; } .footer_column { float:left; width:120px; margin-right:30px; } #footer .long { width:610px; } #footer h3 { color:#e2dddc; text-transform:uppercase; font-size:10px; } .footer_column ul li, .footer_column ul { list-style:none; margin:0px; padding:0px; }
Going through: