How to: Implementing a PSD Template - Printable Version +- Support Forums (https://www.supportforums.net) +-- Forum: Categories (https://www.supportforums.net/forumdisplay.php?fid=87) +--- Forum: Webmaster Support (https://www.supportforums.net/forumdisplay.php?fid=36) +---- Forum: Website Development (https://www.supportforums.net/forumdisplay.php?fid=43) +---- Thread: How to: Implementing a PSD Template (/showthread.php?tid=13059) |
How to: Implementing a PSD Template - Pineapple - 10-21-2010 What you want to first do, is save each individual image and upload them to your site. The CSS 1. Background Code: body Background-repeat:repeat x,y; will repeat the image you have up and down throughout your website. X will repeat up Y will repeat down no-repeat will not repeat the background. 2. Alignment Code: position:absolute; Move Left - Use a negative value for left. Move Right - Use a positive value for left. Move Up - Use a negative value for top. Move Down - Use a positive value for top. Width is explanatory, as is height. (replace X with the numbers you want.) B. The HTML 1. Using <div> Tags Code: <div id="insert section name">Content</div> For example Code: #insert section name{ Here Final Product: main.css (Click to View) index.html (Click to View) |