SitePoint Sponsor |
|
User Tag List
Results 1 to 6 of 6
Thread: Css - Questions
-
Oct 6, 2002, 13:08 #1
- Join Date
- Oct 2002
- Location
- Leeds
- Posts
- 8
- Mentioned
- 0 Post(s)
- Tagged
- 0 Thread(s)
Css - Questions
Hi All,
Im not new to web design but my skills are very limited.
I am curious to know how CSS can help me with my website design no matter what aspect i try to go for.
I cannot create .php or .asp or even .cgi webpages as i am only experienced with .htm or .html webpages. I havent tried any in shockwave, livemotion, fireworks or flash as of yet.
I was curious to know the advantages of Css integration in my website. What could i get out of it, and how could i do it?
Could someone please helped a troubled youth ?
Thankyou in advance!Learning the ropes of webdesign - Favourite application : Dreamweaver MX - Favourite gfx application : Adobe Photoshop 6
-
Oct 6, 2002, 13:34 #2
- Join Date
- Jul 2001
- Location
- The Netherlands
- Posts
- 2,617
- Mentioned
- 0 Post(s)
- Tagged
- 0 Thread(s)
Hi there Anthony,
Have you already read some introductory articles on what CSS is about? Well, let me give you a brief breakdown:
CSS stands for Cascading Style Sheets. These are basically pieces of code, or seperate files, in which you can store all the markup of an entire website. This would mean that if you would like to change the colour of the text on your website, you don't need to plow through all the pages and edit every line of code where you refer to that colour. All you need to do is change the colour code in one file, at one place. You basically refer to that file and it's contents on every page.
This makes the life of a webmasters much easier, since updating or changing the layout of a website is done in the blink of an eye.
Let me give you a small practical example:
Let's say I have a very basic website, containing the following HTML code between the body-tag:
Code:<font color="#0000FF">A lot of text here</font>
If I want to use CSS in this example, I would use the following code:
Code:<p class="text">A lot of text</p>
Code:<link rel="stylesheet" type="text/css" href="styles.css">
Our stylesheet would look like this:
Code:p.text { font-colour: #0000FF; }
).
If you want to read up on this subject, I recommend you check out the article CSS is easy! by our resident coding Guru Kevin Yank. It should give you a basic understanding about what CSS can be used for, and by the end, you won't be using anything else anymore.
If you have any more questions, feel free to ask!
-
Oct 6, 2002, 13:44 #3
- Join Date
- Oct 2002
- Location
- Leeds
- Posts
- 8
- Mentioned
- 0 Post(s)
- Tagged
- 0 Thread(s)
AHA - That post was the most informative post i have ever read on any forum i have ever been on.
I thankyou gracefully Mark T. for showing me and letting me into the whole new world of CSS for webdesign ease.
I wil definitley look into it
Thankyou yet again
THANKYOULearning the ropes of webdesign - Favourite application : Dreamweaver MX - Favourite gfx application : Adobe Photoshop 6
-
Oct 6, 2002, 13:44 #4
- Join Date
- Jul 2001
- Location
- The Netherlands
- Posts
- 2,617
- Mentioned
- 0 Post(s)
- Tagged
- 0 Thread(s)
Not a problem
.
-
Oct 6, 2002, 14:18 #5
- Join Date
- Jan 2002
- Location
- Mississippi
- Posts
- 76
- Mentioned
- 0 Post(s)
- Tagged
- 0 Thread(s)
w3c CSS tutorial
w3c, the guys who make web standards, have a tutorial on just about anything on the web, including CSS. Might want to check it out, it's how I learned all the css I know and I like to think I'm pretty good at it since that is all I use now to format my pages. http://www.w3schools.com/css/default.asp
Derrick
Creativity is great, but plagiarism is faster!
-
Oct 7, 2002, 07:27 #6
- Join Date
- Oct 2002
- Location
- Leeds
- Posts
- 8
- Mentioned
- 0 Post(s)
- Tagged
- 0 Thread(s)
Thanx for the website m8 - will have a thorough look
Learning the ropes of webdesign - Favourite application : Dreamweaver MX - Favourite gfx application : Adobe Photoshop 6
Bookmarks