
Originally Posted by
boxxertrumps
Rule number one of web development, Don't use WYSIWYG editors.
Hand code your work.
I use dreamweaver but I use the coding view... so its not that they shouldn't use those editors, its that they shouldn't use the design view to "design" they should use it as a preview

Originally Posted by
boxxertrumps
Rule 2: Don't use tables for layout.
This can be achieved with CSS,
<table style="background-color:#ff0000;"> red BG.
<table style="background-color:#00ff00;"> green BG.
and CSS is the most effective way to accomplish this yes, but they should use id and class if for this as well and either do them in an internal embedded script in the head tag
Code:
<head>
<style type="text/css">
<!--
table { //Generic Table Background
background-color: #ffffff;
}
table.CLASS { // Background image across for multiple table tags in this page
background-image: url(host/path.extension);
}
table#ID { // 1 instance of this table element that has a background image with a similar color associated incase the picture doesnt show up
background: #ffffff url(host/path.extension);
}
// -->
</style>
</head>
where classes are for multiple instances within a given page and ids are for ONLY 1 instance inside the page
or if they are using the styles over multiple pages they should use an external linked file
Code:
<head>
<link type="text/css" rel="stylesheet" href="host/path.extension" />
</head>
Bookmarks