<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1015699" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1015699</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/website-critique-area/review-new-webmaster-resource-site#comment-1091038</link>
    <description> &lt;p&gt;I agree with all that&#039;s been said and css is definitely the way to go. I too use DW4 and I opened your first page in it and in DW4 there is a command to Clean up HTML and I did this on your page and it bought up the following:&lt;br /&gt;
- 147 empty tags to be removed&lt;br /&gt;
- 241 redundant tags to be removed&lt;br /&gt;
- 24 font tags to be combined&lt;/p&gt;
 </description>
     <pubDate>Fri, 05 Oct 2001 09:41:17 +0000</pubDate>
 <dc:creator>The Webmistress</dc:creator>
 <guid isPermaLink="false">comment 1091038 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/website-critique-area/review-new-webmaster-resource-site#comment-1091012</link>
    <description> &lt;p&gt;Wow, Dreamweaver has overdone itself on the code this time. The code didn&#039;t much look like DW since I saw no MM_tags anywhere. &lt;/p&gt;
&lt;ul class=&quot;bb-list&quot;&gt;
&lt;li&gt;The code is probably one of the worst things about the site. You have to understand that each time it sees a font tag, it has to process that tag, making for much slower page loads.&lt;/li&gt;
&lt;li&gt;Logo - the logo works for me.&lt;/li&gt;
&lt;li&gt;Navbar - oops, shouldn&#039;t all of our links be inside the navbar, not hanging out in the open there. Also the top bar has a light blue streak in it but the botton doesn&#039;t. I don&#039;t get it.&lt;/li&gt;
&lt;li&gt;&amp;gt;&amp;gt; I always hate to see those used as bullets.&lt;/li&gt;
&lt;li&gt;Text - hey, it&#039;s black at least but a little too small. Also the links would be better with a little hover color change on mouseover.&lt;/li&gt;
&lt;li&gt;Page length - the page is a bit too long&lt;/li&gt;
&lt;li&gt;Page layout - it looks like that you took all of your links and graphics and mixed them up and then slung them at the screen. The page layout lacks precision.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;We will be glad to help but you have to do the work. Here is what to do to remove the font tags. First you will use .css. This can be either internal or external. An internal stylesheet would go between the &amp;lt;style&amp;gt;&amp;lt;/style&amp;gt; tags. The problem with using an internal stylesheet you have to change it on every page that you have. An external stylesheet is better since you can link to one stylesheet and make global changes very quickly. Dreamweaver will let you edit stylesheets. Bradbury has a free version of a stylesheet editor that is pretty good.&lt;/p&gt;
&lt;p&gt;So if you create a stylesheet called &lt;strong&gt;style.css&lt;/strong&gt;, you will link to it in the head section of your pages like such: &lt;strong&gt;&amp;lt;LINK REL=&quot;STYLESHEET&quot; TYPE=&quot;text/css&quot; HREF=&quot;style.css&quot;&amp;gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Now in that stylesheet, you can control how different tags render text. You could have something like this:&lt;br /&gt;
&lt;strong&gt;P { font-family:verdana, helvetica, arial, geneva, lucida, sans-serif; color:#000000; font-size:13.4px }&lt;/strong&gt;&lt;br /&gt;
This means that everything that there is a &amp;lt;P&amp;gt; tag it will be formatted as such. You can use pt, px for your size.&lt;br /&gt;
You can also have some kind of rollover links like this:&lt;br /&gt;
&lt;strong&gt;A { text-decoration:none; font-weight:bold}&lt;br /&gt;
A:link { color:#}&lt;br /&gt;
A:visited { text-decoration:none; color:# }&lt;br /&gt;
A:active {  text-decoration:none; color:# }&lt;br /&gt;
A:hover { text-decoration:underline; color:# }&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Another thing that you can do with stylesheets is create classes. Classes start with a .(period) and look something like this:&lt;br /&gt;
&lt;strong&gt;.big { font-family:verdana, helvetica, arial, geneva, lucida, sans-serif; color:#000000; font-size:15px; font-weight:bold }&lt;/strong&gt;&lt;br /&gt;
You can call the class in a tag like so:&lt;br /&gt;
&lt;strong&gt;&amp;lt;td class=&quot;big&quot;&amp;gt;Big Text&amp;lt;/td&amp;gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;To get rid of your font tags, you would replace the :&lt;br /&gt;
&lt;strong&gt;&amp;lt;font color=&quot;#000000&quot;&amp;gt;&amp;lt;font face=&quot;Verdana, Arial, Helvetica, sans-serif&quot; size=&quot;2&quot;&amp;gt;&amp;lt;font size=&quot;5&quot; color=&quot;#FFFFFF&quot; face=&quot;Arial, Helvetica, sans-serif&quot;&amp;lt;&amp;gt;font color=&quot;#000000&quot;&amp;lt;&amp;gt;font face=&quot;Verdana, Arial, Helvetica, sans-serif&quot; color=&quot;#0033CC&quot; size=&quot;2&quot;&amp;lt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;with this in your stylesheet:&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;P { font-family:Arial, helvetica, sans-serif;&lt;br /&gt;
 color:#000000; font-size:13.4px }&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;and this is your code:&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&amp;lt;P&amp;gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;That is it. So simple and works pretty well. You can do other stuff in stylesheets like messing with your scroll bar or bgcolors. I kind of like using this one some:&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;P.opener:first-letter { font-size: 300%; color:#CCCCFF; float:left; font-weight:bold }&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Which creates a large first letter for paragraphs. You can also use:&lt;br /&gt;
&lt;strong&gt;P { text-indent:5px}&lt;/strong&gt; to indent paragraphs.&lt;/p&gt;
 </description>
     <pubDate>Fri, 05 Oct 2001 03:05:02 +0000</pubDate>
 <dc:creator>mairving</dc:creator>
 <guid isPermaLink="false">comment 1091012 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/website-critique-area/review-new-webmaster-resource-site#comment-1091009</link>
    <description> &lt;p&gt;Welcome to TWF webchest!  Interesting concept for a site - the chest idea could work well.  I like the way you&#039;ve done your logo - it might be a neat idea to have a pile of code spilling out of the chest.  I also prefer the text you have on the newsletter and search buttons - maybe replace the logo text with something more like that.  And put something in that blank space there beside it.&lt;/p&gt;
&lt;p&gt;Unfortunately I don&#039;t think it&#039;s likely that you&#039;ll find someone here to clean up that mess you&#039;ve got with the code.  What you need to do is learn how to do it yourself.  Get an HTML editor that does search/replace so you can get rid of all those font tags.  THen learn how to use cascading style sheets so you can define your fonts in a global stylsheet instead.  Wait.. I notice that you do have some css in there - do all your fonts with CSS, it&#039;s just much easier.&lt;/p&gt;
&lt;p&gt;I find your basic layout to be quite good but it seems like it wasn&#039;t implemented the way it should have been.  Everything under the &quot;featured site of the week&quot; header seems like it was just thrown in there with no consideration of visual layout.  The search box should definitely be further up the page... why do you have two search forms on there anyway?&lt;/p&gt;
&lt;p&gt;Now I&#039;m trying to figure out what that stuff is in the main content area.  It&#039;s all just confusing me.  I would get rid of all the little details about what was moved or renamed or changed (because nobody cares) and just keep a list there of new listings, most popular links, your free template, and stuff like that.&lt;/p&gt;
 </description>
     <pubDate>Fri, 05 Oct 2001 02:11:55 +0000</pubDate>
 <dc:creator>Megan</dc:creator>
 <guid isPermaLink="false">comment 1091009 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title>please</title>
    <link>https://www.webmaster-forums.net/website-critique-area/review-new-webmaster-resource-site#comment-1091006</link>
    <description> &lt;p&gt;I use dreamweaver can one of you clean it up for me please?&lt;/p&gt;
 </description>
     <pubDate>Fri, 05 Oct 2001 01:32:36 +0000</pubDate>
 <dc:creator>webchest.net</dc:creator>
 <guid isPermaLink="false">comment 1091006 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/website-critique-area/review-new-webmaster-resource-site#comment-1091005</link>
    <description> &lt;p&gt;Your code is a mess (how many repetitions of the same font tag do you need?) and doesn&#039;t validate.&lt;/p&gt;
 </description>
     <pubDate>Fri, 05 Oct 2001 01:28:44 +0000</pubDate>
 <dc:creator>TheGizmoid</dc:creator>
 <guid isPermaLink="false">comment 1091005 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title>damn........</title>
    <link>https://www.webmaster-forums.net/website-critique-area/review-new-webmaster-resource-site#comment-1090999</link>
    <description> &lt;p&gt;that sucks&lt;/p&gt;
 </description>
     <pubDate>Thu, 04 Oct 2001 23:55:28 +0000</pubDate>
 <dc:creator>webchest.net</dc:creator>
 <guid isPermaLink="false">comment 1090999 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title>ummmmmmmmmm</title>
    <link>https://www.webmaster-forums.net/website-critique-area/review-new-webmaster-resource-site#comment-1090998</link>
    <description> &lt;p&gt;&lt;em&gt;&lt;strong&gt;Please watch your language!&lt;/strong&gt;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;(SWD was upset because he got an error message)&lt;/p&gt;
 </description>
     <pubDate>Thu, 04 Oct 2001 23:53:25 +0000</pubDate>
 <dc:creator>SWD</dc:creator>
 <guid isPermaLink="false">comment 1090998 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
