Old 09-07-2004   #1 (permalink)
Sheep Worrier
 
Man1c M0g's Avatar
 
Join Date: Sep 2003
Location: Portsmouth, UK.
Posts: 4,105
Blog Entries: 14

Send a message via ICQ to Man1c M0g Send a message via MSN to Man1c M0g Send a message via Skype™ to Man1c M0g
An Introduction to CSS

I was recently disturbed to find out that many people have not heard about the miracle of cascading style sheets and the absolutely fantastic ways in which they can make designing websites far easier. Before I could start on a tutorial, however, a very helpful chap called Gus Mayo stepped forward with one on the very same subject! His submission, An Introduction to CSS, does exactly what it says on the tin, and helps you get to grips with the technology, using numerous practical examples. Check it out!

Oh, and before I forget, I've decided to set myself a roadmap until the next revision of the Biorust Design. Most interestingly, there are only two items on it - a much-requested human translation add-on system for the tutorials, and 5 illustrator tuts. Once both of these tasks are complete, work will start on Biorust v4. Estimates currently suggest that the new design may emerge around Jan/Feb, although this will vary according to unforeseen circumstances. Still, its nice to have goals I guess... :-)
__________________
Man1c M0g is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Old 09-08-2004   #2 (permalink)
Red Dawn
 
BlodoPKNZ's Avatar
 
Join Date: May 2004
Location: Eastern Europe
Posts: 302

Yay for biorust v4! We cant wait already lol.
__________________
BlodoPKNZ is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Old 09-09-2004   #3 (permalink)
Read my sig and hire me
 
Evdawg's Avatar
 
Join Date: Oct 2003
Location: Canada, eh!
Posts: 775

Send a message via MSN to Evdawg
Overall a good intro but I picked up what look to me like some errors.

First:
Code:
<link rel="stylesheet" type="text/css" href="yourfile.css" title="Your Title" />
I think that
Code:
media="screen"
or
Code:
media="all"
should be added to that before the tag ends. What this does is specifies the media which the style sheet should be used on. for example
Code:
media="print"
that stylesheet will be used only when a user prints the page or in a print preview.

Next, Mayo says
Quote:
IDs work exactly the same way as classes. The reason it exists is to allow you to incorporate Style Sheet models into JavaScript or DHTML. So, unless you are attempting to use these with JavaScript, stick with the CLASS command
. This is also wrong. There are differences between IDs and classes. With an ID you identify an element to be a unique element in the document. Classes on the other hand can be applient to any number of elements any number of times within a document. I beleive that standards say that IDs should be used to identify those unique elements: for example a <div id="head"> that would be used as the header for the page, etc. Classes rather, should be used to style paragraphs, for example if you want a certain <p> to look a certain way on a page, but it appears multiple times you should use <p class="special">.

Go ahead, get mad at me. The tutorial has errors that should be fixed.
__________________
Yes, I do freelance design. Feel free to PM me if you want to , or visit my Website.
Evdawg is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Old 09-09-2004   #4 (permalink)
Recursively call who?
 
GoldNetX's Avatar
 
Join Date: Nov 2003
Location: Pittsburgh, PA
Posts: 294

Send a message via AIM to GoldNetX
Thanks for catching those, I completly forgot about the media attribute.

For the IDs, I had written about them being unique in a text doc, but I guess that I forgot to put that in when formatting it for html. (no longer have the source files)

Thanks for the catches Evdawg.
__________________

www.gusmayo.com
- Maybe a story or two -


www.jaloobie.com
... your new home ...

www.webinkproductions.com
- professional web application design -
GoldNetX is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Old 09-09-2004   #5 (permalink)
Incredible Indelible Etiquette
 
Young Spartan's Avatar
 
Join Date: Oct 2003
Location: Hobe Sound, Florida
Posts: 1,751

Send a message via AIM to Young Spartan Send a message via MSN to Young Spartan Send a message via Yahoo to Young Spartan
Nice tutorial, first of all.

Moving along, I can't wait to see v4. I'm sure it will be a delight, as v3 was a huge step forward, I can't imagine what they odd mind of yours will produce next.
Young Spartan is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Old 09-09-2004   #6 (permalink)
Read my sig and hire me
 
Evdawg's Avatar
 
Join Date: Oct 2003
Location: Canada, eh!
Posts: 775

Send a message via MSN to Evdawg
Quote:
Originally Posted by GoldNetX
Thanks for catching those, I completly forgot about the media attribute.

For the IDs, I had written about them being unique in a text doc, but I guess that I forgot to put that in when formatting it for html. (no longer have the source files)

Thanks for the catches Evdawg.
No problem.
__________________
Yes, I do freelance design. Feel free to PM me if you want to , or visit my Website.
Evdawg is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Old 09-09-2004   #7 (permalink)
Sheep Worrier
 
Man1c M0g's Avatar
 
Join Date: Sep 2003
Location: Portsmouth, UK.
Posts: 4,105
Blog Entries: 14

Send a message via ICQ to Man1c M0g Send a message via MSN to Man1c M0g Send a message via Skype™ to Man1c M0g
Many thanks for letting me know Ev! I'll see about getting those errors fixed this weekend (if my brain remembers... ).
__________________
Man1c M0g is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Old 09-10-2004   #8 (permalink)
Incredible Indelible Etiquette
 
Young Spartan's Avatar
 
Join Date: Oct 2003
Location: Hobe Sound, Florida
Posts: 1,751

Send a message via AIM to Young Spartan Send a message via MSN to Young Spartan Send a message via Yahoo to Young Spartan
How can you not be reminded? It's sitting on your forums.
Young Spartan is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Old 09-12-2004   #9 (permalink)
Sheep Worrier
 
Man1c M0g's Avatar
 
Join Date: Sep 2003
Location: Portsmouth, UK.
Posts: 4,105
Blog Entries: 14

Send a message via ICQ to Man1c M0g Send a message via MSN to Man1c M0g Send a message via Skype™ to Man1c M0g
And its corrected. Let me know if you find any further issues 'n stuff.
__________________
Man1c M0g is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Closed Thread

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump


All times are GMT +1. The time now is 06:02 AM.
Content Relevant URLs by vBSEO 3.2.0

Design & Content © BioRUST 2008 :: PRIVACY STATEMENT :: LEGAL INFORMATION :: ADVERTISING MEDIA KIT