View Single Post
  #2 (permalink)  
Old 11-07-2009, 12:36 PM
ishkey's Avatar
ishkey ishkey is offline
Moderator
 
Join Date: Aug 2007
Location: North GA USA
Posts: 1,766
ishkey will become famous soon enough
Default

Quote:
Does uploading the template mean that you just upload images, and then you have a seperate html/css txt document outlining how these images are displayed and used.
Yes that is what it means.

You create a graphic of what your page will look like, saved as a psd file.
From it you take out all the parts you need and put them into a directory.

Here is one example to code a basic Logo from a psd file.
You create a "css" file which sets the style and properties for the elements.
Code:
/* ----------LOGO STYLES---------- */
#logo { 
float: left; /*floats our logo left*/
height: 37px; /*gives our logo a height of 37px same as our logo image*/
width: 270px; /*sets our logo div's height to 270px same as our logo image*/
}
Then you create a "html" file which tells the browser what to get from the "css" file, where to put it, how to display it.
Code:
<div id="logo"><!--LOGO STARTS-->
<img src="your_images_directory/logo.png" alt="Welcome To Your PROject" /> 
</div><!--LOGO ENDS-->
Basically you have 3 items;
1. a directory with your graphics
2. a style.css fie
3. a somefilename.html
again the psd file is the visual graphic you used to create what was in your head. You then cut out the parts you needed and placed them in a directory for use with the "css" and "html" files.
Attached Images
 
__________________

Consultant - Programmer - WebMaster
cleandeck - lawn mower undercoating
wilmargraphite - graphite lubricants
Reply With Quote