Newsletter and webmaster resources site   How Much is Your Ad Inventory Really Worth?
  Advertise in SiteProNews SiteProNews Archives About SiteProNews SPN Privacy Statement FeedBack SiteProNews Homepage SiteProNews Image Map SEO-News Discussion Forums
  Happy Holidays to Our Readers and Advertisers
    QUICK LINKS
 
DEC. 22,  ISSUE #883
Web Search

ExactSeek Links
      Add your Site
     Buy a Top 10 Listing
     Newsletter SignUp
     ExactSeek Member Login

Buy Results, Not Promises - Your Intial Deposit Matched to $100
SiteProNews Blog
SiteProNews has launched the SiteProNews Blog for webmasters. Drop by to read regular posts by two of the Web's top writers, Jim Hedger and Kim Roach.

Top SEO Tools

Try it Fr-e-e for 14 Days
SEO Tools and Services

Webmaster Tools
   Site Ranking Tool
   Meta Tag Generator
   Link Popularity Checker
   Search Engine Submitter
   Internet Tools Directory
   Site Resource Directory
 

SEO-News Forums
Join the SEO-News Forums to post comments, articles and tips or learn from SEO experts.
Forum Posts
Yahoo 205
Google 1810
SE Articles 124
Link Exchanges 351
General Discussion 177
Join the SEO-News Forums
Blog Search
   Add a Blog
   Search 10,000+ Blogs
   Grab a Blog RSS Feed
   Blog Express for RSS Feeds

ExactSeek Toolbar
Get the toolbar with spyware scanning, webpage keyword analysis, web search on multiple meta engines, popup-blocking, Alexa site ranking, word highlighting, auto-upgrade and erase browser cookies.
Download Version 2.3

Traffïc Exchanges
Get Frëe Traffïc for Your Site with these Traffïc Exchanges:


TrafficZap


TrafficSwarm


Site of the Day
NewFreeDownloads.com is a popular freeware /shareware directory with 1000's of apps in 11 major categories. Easy to navigate and well organized.

Does your web site qualify as a SPN Site of the Day? Webmaster resource sites can apply via email: sotd@sitepronews.com
 

App of the Day
ALPass v2.7 (4.6 MB) allows you to store logins and passwords in an encrypted database and automatically login to web sites and email. The program is portable and can be copied to a USB drive or iPod. Freeware for all Windows versions. Requires I.E. 5.0 or higher.

If you have a Webmaster App that you would like listed on the SPN site, send us an email with details to: wapps@sitepronews.com
 

Jayde Newsletters
Subscribe to SiteProNews, the Net's foremost Webmaster ezine or SEO-News, the weekly ezine for do-it-yourself website optimizers. Just enter your email address in the field below and use the Subscribe button.

HTML Newsletter
SiteProNews
SEO-News


Must Read Ebooks
SPN offers one of the best eBook libraries on the Web. Our current selection includes Commercial and over 183 Frëe eBooks.

Authors can submit eBooks to SiteProNews via email: ebooks@sitepronews.com
 

Link to SPN
Link your site to SiteProNews, the newsletter and resource site for Webmasters.

Or, Add SPN to your site with just 2 lines of Java-script code. Top content for your site without any of the work.

Visit our SPN Promotion Partners page. Some great sites have opted to support the SiteProNews newsletter.

SPN Partners
SubmitPlus - Promote your site to 110 search engines... Frëe!

Template Monster - The Web's number one website templates are available for immediate download.

PreWired.com - Providing ISPs & Publishers a Web based revenue stream!

FindMyHost.com... Review detailed Report Cards of web hosts who made the grade.

Web-Source... Your Guide to Professional Web Site Design & Development.

TheCgiSite.com - A directory of programming resources.

TechNewsletters.com - A search engine where you can review and subscribe to thousands of IT newsletters.

Frëe Alexa Toolbar
An indispensable tool for web professionals, providing Traffïc Data, Site Stats, and Contact Info for all the sites you visit!.

NewWebDirectory- A new internet web directory of professionally reviewed web sites providing both frëe and paid site submission.

FreeWebMonitoring - Monitor your web site's availability 24 hours a day, 7 days a week with ínstant email alerts and weekly web site performänce statistics.

Top 10 Exposure - Forget PPC. Get Google-Type ads for $3 - $4 per month and top 10 exposure across 245+ search engines & web directories.

 

Submit Plus
Blog Search
FindMyHost
Add Me.com
DesignerWiz
Web Position
Alexa Toolbar
SubmitExpress
Top SEO Tools
Website Builder
Top 10 Exposure
$100 Free-Traffic
SiteProNews Blog
WebMaster Radio
NewWebDirectory
Website Templates
FreeWebMonitoring
Search Engine Tool
FreeWebSubmission



Embracing Cascading Style
Sheets Makes Good Sense

By Fred Black

Why do I like Cascading Styles Sheets (CSS) and what makes CSS so great. The answer only makes sense if you know what CSS is.

The Holy Grail of CSS is to separate the content of a web page from the instructions that control what it looks like. This makes it much easier for various devices to display the web page correctly. The same page would display correctly on all standard web browsers (Internet Explorer, FireFox, Opera, Netscape, etc.), and devices used by persons with a handicap, cell phones, other devices, and yet-to-be-developed interfaces. The web site designer would not have to make separate pages for these devices. However, reality is different and here in the real world CSS does not do all these things. It does have enough positive points to make it worthwhile to learn and incorporate it into your web pages.

Editorial Note: SiteProNews will not be published on Monday, December 25th, Friday, Dec. 29th or on Monday, January 1st.

Pay-Per-Click That Pays Off - $50 in Clicks!

There are multiple ways to control how something looks on a web page. The color, size, and font used for a headline or for a paragraph of text can be defined with in-line styles and tags. The term "in-line" means that the commands for controlling the color, size, and font are mixed in with the content. This makes the source code for the page cluttered and hard to read and edit when you want to update it or fix something. Also, because you're repeating the same commands over and over throughout the page, the file size of the page gets larger and hence slower for those browsing your site.

As opposed to in-line styles, CSS is not repeated throughout the page. CSS can be defined in the head section, or put in a separate file and referenced from the HTML file, or both. CSS consists of definitions of how a page component should render itself on the page. For example, you can define that a headline should be blue, 24 point, centered text and that a paragraph should be black, 12 point, justified text. Once that is defined, any normal HTML paragraph tags or headline tags would use these definitions when rendered.

You can define almost all the normal HTML objects this way; background color, background image, background image position, tables, cells, images, divs, etc. This leaves your HTML code clean and much easier to read. Just like those Ronco TV commercials, there's more! If you have a multi-page web site and you use CSS and all your CSS definitions are in a separate file, you have one place to go to change the look and feel of all the pages in your site. Imagine if you have a 50 page site and you learn that the size of your text in all your paragraphs is too small or the wrong color to maximize sales: instead of having to edit 50 pages and change the definition of each paragraph, you simply edit the CSS file and you're done!

Virtual Employees - Get Speaking Characters that can Engage Your Visitors!

But with CSS what do you do if you want one paragraph or a set of paragraphs to look different? You define a class. If you have a right column where you display ads in your CSS, you would define a class and give it a name such as ".rcol", then you would define the necessary items that you want to look different (p tags for example). ".rcol p" would be used to control how a paragraph tag was rendered. You simply add "class=rcol" to the paragraph tag, or the table tag if it's in a table, or div tag if it's in a div, etc.

This is also where the cascading in CSS comes into play: the default definitions cascade down into a class as long as the class does not contain something that overrides the default. This means that in our example text rendered in a paragraph tag looks different for the rcol class, but because that's the only thing we've defined for rcol, everything else would use the same styles as the rest of the page.

You can also define size and positioning for objects in CSS. This is one place where we hit the real world of CSS pretty hard. Not all browsers support the size and position commands the same way. This leads to hacks that define a position and then use a command that is known. For example, to cause Internet Explorer to bail out of the CSS, after that line you use a position command that Netscape for example understands. CSS uses the last definition of an object so this technique can be used to "trick" or "hack" CSS into working across more browsers than it normally would.

Get High Rankings in Google and Yahoo!

I don't recommend doing this. One reason is that it's messy and easy to forget why you did something. The other reason is because as browsers are updated, or new devices come online, they may not follow these unwritten and unsupported hacks and your pages are apt to be all messed up. To get around this I usually use CSS as much as I possibly can and then use tables and in-line definitions to control positioning and size. Some people will go to great lengths to use CSS for everything, even replacing all tables, but here in the real world, you should get the page built, functioning, and in a form that can be used reliably on as many platforms as possible.

Forget Expensive PPC Advertising - There is an Alternative!

Not all web site software packages like Microsoft Front Page, Dreamweaver, or Adobe GoLive, etc. fully support CSS. You'll have to do some coding manually. Don't worry, it's not that hard. I have an online course that can teach you how, just follow the link at the end of this article. Take the time to learn CSS and implement it in your web pages. It will be time well spent.


About The Author
Fred Black is an experienced web developer offering instructional videos at www.WebSiteTrainingOnline.com, An Introduction to Creating Web Sites.



Printer Friendly Version of this Article


Recommended Articles and Blog News for Webmasters

Future Evolution of Search
The Life and Near Death of DMOZ
2006 Search Engine Blog Awards
Web Development with SEO in Mind
Road Kill: Good vs. Bad Web Pages
Anatomy of a Web-Advertising Campaign
Most Valuable Page Views - Google Wins

Need Content for Your Website - GoArticles.com has 316,400+ Articles
Add a RSS feed or Javascrïpt feed in seconds.


Webmaster Resource Sites & Services

Top SEO Tools - A suite of the best online submission, reporting and SEO Tools available. Sign up for a frëe 14 day trial.


Add Me! - a pioneer in search engine submission, and the most popular. They offer frëe submission and paid submission.

Google Ranking Secrets Revealed! Boost Your Google Ranking,
Get More Orders, And Make More Monëy!


Build Your Traff'ic with ABCSearch
Get $100 of FR-E-E qualified Visitors. Sign-up today and we'll match any initial deposit up to $100. Geo-targeting, full reporting and one clíck results!


Recommended Webmaster Tools & Services

Net Research Server (NRS) - a complete search engine solution for sites wanting to host entire web search, industry specific search, site search, or directory search. NRS also enables users to submit listings, create alerts, and organize bookmarks.

Select from 1000's of Quality Templates
Need a new site look? Select from thousands of professional designs for a fraction of web design costs. Get a multi-page website up in just a few hours.

Build a Business Website in Under 5 Minutes.
Over 172,000 people just like you have used Exact Websites to build professional websites, complete with web pages, photo albums, email, links and 27 other features without ever having built a website before.

WebPosition
WebPosition helps you maximize your site's search engine visibility by providing a complete SEO solution including rank reporting, keyword research, page optimization and submission. Download a frëe demo today!

Have an Opinion on Today's Article?
Post Your Comments in the SEO-News Forums
Sign Up for FR-E-E and Participate

 

  SiteProNews - The Net's most widely read Webmaster newsletter


(c) Copyright 2006 All rights reserved. Jayde Online, Inc.
Web design by
ControlV.