|
First here is the basic structure of the layout.
Put Your images and CSS in a separate folders.

Now here is how the HTML structure of the layout. Inside the content we
have the slideshow, text and contact option. In the footer there is
three column.
<li> <a href="#"> Home</a></li> |
<li> <a href="#"> Portfolio</a></li> |
<li> <a href="#"> Contact</a></li> |
<div id="vertical_list_box"> |
To get started first hide all the layers except the background and
export it as JPEG. and put it in the images folder. We put a global
CSS reset in the beginning. You can use any other reset you want to use.
background: #62563e url('../images/bg.jpg') center no-repeat; |
Next merge the images in the logo folder in the PSD layout and copy
the image to a new PSD file with blank background and save is as PNG.
Now, we need to export the content area image. Copy only background
layer a new file. You can select that layer by right clicking on the
layer and choose the Select PIxel options. Then just
open and new file and paste it. You will see the background is
different because we still have to apply the same layer styles. Copy
the layer styles from Layer > Layer Styles > Copy Layer Style or shortcut is just right click on the layer on the layer window and choose Copy Layer Styles. Then we use CSS to apply them in the HTML.

background: url('../images/logo.png') no-repeat; |
background: url('../images/content.png') no-repeat; |
font-family: Rockwell, Georgia, Serif; |
Keep in mind we are using Rockwell for font through out the layout,
It should fairly web safe. Now lets move on to the menu. The menu and
content border have the same transparent background. So, we will just
crop it from the the new PSD file that you created for the menu. Select
the edges of the content background copy to new file and save it as PNG.

Now we position the menu. You can see the full CSS code in the files,
but here something you should note. We are using CSS3 text shadow and
also on menu hover padding-top is 10px. So it looks like the menu item
is moving upward and it gives a realistic feeling.
background: url(../images/menu_bg.png) center repeat; |
font-family: Rockwell, Georgia, Serif; |
text-shadow: 1px 1px 1px #000; |
border-top:#aec451 4px solid !important; |
To get the background for slideshow image use color overlay in the Layer style for the image layer the PSD Layout.

After that we can just use CSS to position the this image for the
slideshow background. We put the image inside a div and add a class to
the image itself to position it.
background: url('../images/slideshowbg.png') no-repeat; |
#slideshow .slide_images{ |
The other text and in the content are pretty simple. We exported all
the image and saved them as PNG and positioned using CSS. The footer
box are created using CSS float property. However, lets look at the
first column. We are using span to create list. Here is the HTML :
<div id="vertical_list_box"> |
<img class="title" src="images/links.png" height="110" width="186" alt="Call us" /> |
<span> Link item 1</span> |
<span> Link Item 2</span> |
<span> Link Item 3</span> |
<span> Link Item 4</span> |
And here is the CSS:
#vertical_list_box ul li span{ |
background: url('../images/list.png') no-repeat; |
background-position: -10px 0px; |
padding: 10px 0px 10px 30px; |
display:block !important; |
As you can see we are using background-position property to have
list like image. That’s all . You can see all the detailed CSS in files
there are well commented. The layout is tested on latest version of
Firefox, Safari and Internet Explorer . If you do not understand any
step feel free to ask questions it in the comment. (Source)
|