May help:
Online PSD to HTML Converters (Some Free):
http://jadii.com/ (May be free)
40 Options for Converting PSD to HTML -
http://vandelaydesign.com/blog/desig...html-services/
From PSD to HTML: Building a Set of Website Designs Step by Step:
http://nettuts.com/site-builds/from-...-step-by-step/
Or...
Background Image Code:
For the body tag example:
Code:
body {
width: XXXpx;
height: YYYpx; /* optional */
margin: 0 auto; /* centers page */
background: #fff url(image_name.jpg) no-repeat center scroll;
}
That is the proper CSS code for a non-tiled image where the contents scroll with the background image. Change "#fff" to preferred bg color. Change "scroll" to "fixed" if you want page contents to scroll over bg image. Be sure to set proper width/height to provide minimum page size to display bg image. Put the CSS on an external CSS file (Between the head tags of each page: <link rel="stylesheet" type="text/css" href="css-file-name.css">). If using embedded CSS, then place CSS between the style tags and place those style tags between the head tags of the page.
For a tiled image, change to:
Code:
body {
width: XXpx;
height: YYpx;
margin: 0 auto;
background: #fff url(image_name.jpg) repeat top left scroll;
}
Put that CSS on an external CSS file if you have more than one page. Put the CSS between the style tags and place them between the head tags if using it on one page. Style another tag other than the body tag if you are using a div wrap container. Should you want the contents of page to scroll over the background image, change "scroll" to "fixed".
Inline background image styling:
Code:
Inline CSS example: <body style="width: 960px; margin: 0 auto; background: url(image.gif) no-repeat center fixed;">
Inline CSS example: <body style="width: 960px; margin: 0 auto; background: url(image.jpg) no-repeat center scroll;">