I have just started practicing converting PSD's to HTML/CSS. But sometimes you see PSD's and it just seems impossible to craft using html and css.

Like the one here :

http://i.stack.imgur.com/rx0dl.jpg

Thanks alot

link|improve this question
and what is your question? – JMax Aug 12 '11 at 8:08
This question is off topic to a programming Q&A site. Please read the FAQ. – Oded Aug 12 '11 at 8:09
feedback

closed as off topic by Oded, Tim Post Aug 12 '11 at 8:12

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.

3 Answers

The way you should approach this is the same as you would approach any other PSD to HTML, divide it in blocks in your head and start from the top.

Here I made a very rough example of how you could divide this:

http://i.imgur.com/glZJ5.jpg

link|improve this answer
That's exactly how I was about to show to split that up. Good thing I clicked through to your link first. – Corey Alexander Aug 12 '11 at 8:09
feedback

Use grid lines in photoshop to divide your image in different sections and create slices from there. You can even export to html once you've done that and it will create the css styles required too.

You can find a video explaining how to it here: http://www.youtube.com/watch?v=DVfxe4pqvo8

link|improve this answer
feedback

Well, start with the basics:

  • A central content container. Unfortunately, images only describe the layout with one particular screen resolution, but it looks like the designer wanted a centered element with fixed with, probably 960px.
  • In that container, two headers. You can use the border-radius CSS property to make borders round, but you'll probably need some background images for some icons.
  • Add the example text, unstyled so far.
  • Add the front image. You can probably crop it in Photoshop.
link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.