How do you get css style sheets to fit around your web template? I made one in photoshop but are still wondering how to do this.
CSS Style sheets
Started by WebDesign, Nov 21 2005 08:33 PM
3 replies to this topic
#1
Posted 21 November 2005 - 08:33 PM
#2
Posted 21 November 2005 - 08:54 PM
Photoshop can't produce css stylesheets. Photoshop can only produce html documents with the images placed in a very bad style being that you can't exactly extend the content boxes unless you manually code it yourself.
The css is the thing that changes colours of items in the layout or adds effects to them, etc.
For example, in this forum skin, the css makes the "Fast reply" button have a 5px padding around it, and makes the category headers have an extending blue background.
So essentially, you'll need to code the css document yourself. Start reading some tutorials here.
Hopefully that answers your question
The css is the thing that changes colours of items in the layout or adds effects to them, etc.
For example, in this forum skin, the css makes the "Fast reply" button have a 5px padding around it, and makes the category headers have an extending blue background.
So essentially, you'll need to code the css document yourself. Start reading some tutorials here.
Hopefully that answers your question
#3
Posted 21 November 2005 - 10:27 PM
here's an easy way of defining css:
css is the code/script that add's all the visuals (colors/backgrounds/positioning) to an html document.
css is the code/script that add's all the visuals (colors/backgrounds/positioning) to an html document.
#4
Posted 22 November 2005 - 02:10 AM
coolaid, on Nov 22 2005, 02:27 PM, said:
here's an easy way of defining css:
css is the code/script that add's all the visuals (colors/backgrounds/positioning) to an html document.
css is the code/script that add's all the visuals (colors/backgrounds/positioning) to an html document.
WebDesign, a basic example of css is this:
.content {
background:#FFF url(images/background.gif);
color:#000;
font:Arial, sans-serif, Times new roman;
font-weight:bold;
padding:5px;
}
If you read it, it's very easy to understand. The background colour will be white and there will be an image over the top of it. If the image is not uploaded, the background will just be white. The 'color' tag represents the text colour. In this example, it's black. The font tags are self explanitory, and the padding is how far in the text is indented
1 user(s) are reading this topic
0 members, 1 guests, 0 anonymous users
