<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1042586" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1042586</link>
    <description></description>
    <language>en</language>
          <item>
    <title>If anyone would like to ftp</title>
    <link>https://www.webmaster-forums.net/web-design-and-graphics/table-issues#comment-1236477</link>
    <description> &lt;p&gt;If anyone would like to ftp in, that would be great. i&#039;m a visual learner. I have to see a completed example to truly understand what needs to be done.&lt;/p&gt;
 </description>
     <pubDate>Wed, 24 Dec 2008 14:41:43 +0000</pubDate>
 <dc:creator>munruss</dc:creator>
 <guid isPermaLink="false">comment 1236477 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title>The problem is in the basic</title>
    <link>https://www.webmaster-forums.net/web-design-and-graphics/table-issues#comment-1236472</link>
    <description> &lt;p&gt;The problem is in the basic design of the site. The way you have it all in tables, and different widths on tables on different pages makes it fiddly to work with.&lt;br /&gt;
You&#039;re basically making a layout for each pages content requirements, which is (almost) acceptable for now and will get your site looking as you want it, but what if in the future you change content on any page?&lt;br /&gt;
Having to adjust table widths and nested tables when you add/remove/change content is not future proof.&lt;br /&gt;
CSS is what you need, and as your site is very simple at the moment, using and learning divs will be very easy.&lt;br /&gt;
cmoyer provided a basic layout idea with all the code done for you in his post (I haven&#039;t studied it, but I&#039;m sure it will be fine).&lt;/p&gt;
&lt;p&gt;See the attached image I made (very quickly) to give you an idea of what CSS would be doing in your site ithout tables.&lt;br /&gt;
Honestly, do it now in CSS and get rid of the tables and you will be much better off now and in the future for changing your sites content, adding more pages, adding ads or additional content on xx pages or one page etc.&lt;/p&gt;
&lt;p&gt;Use my image as a reference and the following links as the code you need to make it happen.&lt;br /&gt;
Read this first:&lt;br /&gt;
&lt;a href=&quot;http://www.yourhtmlsource.com/stylesheets/csslayout.html&quot; title=&quot;http://www.yourhtmlsource.com/stylesheets/csslayout.html&quot;&gt;http://www.yourhtmlsource.com/stylesheets/csslayout.html&lt;/a&gt;&lt;br /&gt;
All the way down to &quot;CSS Positioning&quot; (if you are willing to spend some time learning, read the rest of the page as well as CSS positioning)&lt;/p&gt;
&lt;p&gt;Then read this&lt;br /&gt;
&lt;a href=&quot;http://www.yourhtmlsource.com/stylesheets/cssspacing.html&quot; title=&quot;http://www.yourhtmlsource.com/stylesheets/cssspacing.html&quot;&gt;http://www.yourhtmlsource.com/stylesheets/cssspacing.html&lt;/a&gt;&lt;br /&gt;
It tells you in simple terms how to make a div CLASS and ID in the CSS and how to implement that CSS in your HTML.&lt;/p&gt;
&lt;p&gt;Doing it as I have laid out in the image ill allow all pages to flow with the same spaces and layout and will be neat. Adding new pages and editing existing ones is much easier with this.&lt;br /&gt;
In the image, there are many ways to approach most of what I have done, but mainly the &quot;nav_div&quot;. There are better ways to provide a nav menu, with hover over affects, but you should perhaps get to know divs, margins, padding and float first.&lt;/p&gt;
 </description>
     <pubDate>Wed, 24 Dec 2008 09:32:28 +0000</pubDate>
 <dc:creator>greg</dc:creator>
 <guid isPermaLink="false">comment 1236472 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title>i have a guest ftp accout.</title>
    <link>https://www.webmaster-forums.net/web-design-and-graphics/table-issues#comment-1236466</link>
    <description> &lt;p&gt;i have a guest ftp accout. would someone like to access the files and help me out? i&#039;m weak on web design.&lt;/p&gt;
 </description>
     <pubDate>Wed, 24 Dec 2008 02:57:55 +0000</pubDate>
 <dc:creator>munruss</dc:creator>
 <guid isPermaLink="false">comment 1236466 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title>When I use Firefox the</title>
    <link>https://www.webmaster-forums.net/web-design-and-graphics/table-issues#comment-1236462</link>
    <description> &lt;p&gt;When I use Firefox the contact page is all to the left. You can fix this with css by wraping the whole page in a div example below:&lt;/p&gt;
&lt;p&gt;HTML:&lt;br /&gt;
&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;&amp;lt;div id=&amp;quot;wrapper&amp;quot;&amp;gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;!-- Page content here --&amp;gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;/div&amp;gt;&lt;/code&gt;&lt;/div&gt;&lt;/p&gt;
&lt;p&gt;CSS:&lt;br /&gt;
&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;#wrapper {&lt;br /&gt;margin: auto;&lt;br /&gt;width: 90%;&lt;br /&gt;padding: 0px;&lt;br /&gt;}&lt;/code&gt;&lt;/div&gt;&lt;/p&gt;
&lt;p&gt;This ^ is just basic you could also specify a background using css or do a whole layout like the following.&lt;/p&gt;
&lt;p&gt;HTML:&lt;br /&gt;
&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;&amp;lt;div id=&amp;quot;wrapper&amp;quot;&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;lt;div id=&amp;quot;header&amp;quot;&amp;gt;&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;!-- menu div --&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;div id=&amp;quot;menu&amp;quot;&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;a href=&amp;quot;link.html&amp;quot; title=&amp;quot;link_title&amp;quot;&amp;gt;Link&amp;lt;/a&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;!-- repeat as needed --&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/div&amp;gt;&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;!-- heading div --&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;div id=&amp;quot;heading&amp;quot;&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;h1&amp;gt;Heading of page&amp;lt;/h1&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/div&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;lt;/div&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;lt;div id=&amp;quot;content&amp;quot;&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp; Your pages content will go here&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;lt;/div&amp;gt;&lt;br /&gt;&amp;lt;/div&amp;gt;&lt;/code&gt;&lt;/div&gt;&lt;/p&gt;
&lt;p&gt;And the CSS:&lt;br /&gt;
&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;body {&lt;br /&gt;background: #ffffff;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;#wrapper {&lt;br /&gt;background: transparent;&lt;br /&gt;width: 90%;&lt;br /&gt;margin: auto;&lt;br /&gt;padding: 5px;&lt;br /&gt;border: 0px;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;#header {&lt;br /&gt;background: transparent;&lt;br /&gt;width:100%;&lt;br /&gt;margin: 5px auto;&lt;br /&gt;padding: 5px;&lt;br /&gt;height: 50px;&lt;br /&gt;border: 1px solid #000;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;#menu {&lt;br /&gt;background: transparent;&lt;br /&gt;width:45%;&lt;br /&gt;margin:0;&lt;br /&gt;padding: 1%;&lt;br /&gt;height: 50px;&lt;br /&gt;float:left;&lt;br /&gt;border: 1px solid #000;﻿&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;#heading {&lt;br /&gt;background: transparent;&lt;br /&gt;width: 45%;&lt;br /&gt;margin:0;&lt;br /&gt;padding: 1%;&lt;br /&gt;height: 50px;&lt;br /&gt;float:right;&lt;br /&gt;border: 1px solid #000;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;#content {&lt;br /&gt;background: transparent;&lt;br /&gt;width: 100%;&lt;br /&gt;margin:auto;&lt;br /&gt;padding: 5px;&lt;br /&gt;float:left;&lt;br /&gt;border: 1px solid #000;&lt;br /&gt;}&lt;/code&gt;&lt;/div&gt;&lt;/p&gt;
&lt;p&gt;This ^ is very basic and with some changes you can get a very nice table less layout.&lt;/p&gt;
&lt;p&gt;In your code I see you ended a paragraph tag with out starting one, I&#039;m not sure if this has anything to do with the tables not working. The contact pages content also takes up more width of the page so that may be another cause of it getting pushed to the left.&lt;/p&gt;
 </description>
     <pubDate>Tue, 23 Dec 2008 22:16:10 +0000</pubDate>
 <dc:creator>cmoyer</dc:creator>
 <guid isPermaLink="false">comment 1236462 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title>There is, but it&#039;s all</title>
    <link>https://www.webmaster-forums.net/web-design-and-graphics/table-issues#comment-1236461</link>
    <description> &lt;blockquote&gt;&lt;p&gt;There is, but it&#039;s all complete nonsense.&lt;br /&gt;
Tables have been around well before CSS became usable as an option for complete styling.&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Maybe not.  This is just speculation, but tables are designed for tabular data and stuff search engines may not be interested in.&lt;/p&gt;
 </description>
     <pubDate>Tue, 23 Dec 2008 22:06:26 +0000</pubDate>
 <dc:creator>pr0gr4mm3r</dc:creator>
 <guid isPermaLink="false">comment 1236461 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title>decibel.places wrote:
there</title>
    <link>https://www.webmaster-forums.net/web-design-and-graphics/table-issues#comment-1236460</link>
    <description> &lt;p&gt;&lt;div class=&quot;quote-msg&quot;&gt;&lt;div class=&quot;quote-author&quot;&gt;&lt;em&gt;decibel.places&lt;/em&gt; wrote:&lt;/div&gt;there is talk that tables can affect your SEO&lt;/div&gt;There is, but it&#039;s all complete nonsense.&lt;br /&gt;
Tables have been around well before CSS became usable as an option for complete styling.&lt;/p&gt;
&lt;p&gt;Search engines have no issues with tables or nested tables as they don&#039;t look at layout or styling, just content.&lt;br /&gt;
Although, I don&#039;t think you should be making your web pages with tables. Tables should still be only used for certain content data such as where a requirement of numerous columns and rows are needed.&lt;/p&gt;
&lt;p&gt;As for you issue, on the contact page you have this as a main container&lt;br /&gt;
&lt;code&gt;&amp;lt;table height=&amp;quot;471&amp;quot; width=&amp;quot;907&amp;quot; border=&amp;quot;0&amp;quot; background=&amp;quot;bg.gif&amp;quot; align=&amp;quot;center&amp;quot;&amp;gt;&lt;/code&gt;&lt;br /&gt;
(Which incidently, on other pages you use different widths for this container - weird design setup imo)&lt;/p&gt;
&lt;p&gt;As the contact us area is wider than anything on other pages, it stretches that table container to its full width.&lt;br /&gt;
You need to align the nav container somehow so when content moves the page around a bit each bit of content is still in its designated place.&lt;br /&gt;
It can be done with tables, but honestly, it&#039;s much much easier when you know divs, floats and margins in CSS.&lt;/p&gt;
&lt;p&gt;The products page also moves slightly to the left of the others (services and about) due to (i think) the link in the text.&lt;/p&gt;
&lt;p&gt;In your code you have this &lt;code&gt;&amp;lt;div align=&amp;quot;left&amp;quot;&amp;gt;&lt;/code&gt;, it&#039;s not the best way to align a div really (and is deprecated in all but transitional and frameset HTML 4.01). CSS is the way to go.&lt;br /&gt;
But with the page width being stretched by the contact us box, and that div being pushed left, is the reason your navs are like that.&lt;/p&gt;
&lt;p&gt;I can&#039;t advise how to align all this up nicely in tables as making websitees in tables is not something I have ever done (nor will ever).&lt;/p&gt;
&lt;p&gt;There&#039;s also something wrong with your background image as well. pattern.gif&lt;/p&gt;
 </description>
     <pubDate>Tue, 23 Dec 2008 21:52:00 +0000</pubDate>
 <dc:creator>greg</dc:creator>
 <guid isPermaLink="false">comment 1236460 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title>eeww tables
there is talk</title>
    <link>https://www.webmaster-forums.net/web-design-and-graphics/table-issues#comment-1236449</link>
    <description> &lt;p&gt;eeww tables&lt;/p&gt;
&lt;p&gt;there is talk that tables can affect your SEO&lt;/p&gt;
&lt;p&gt;have you considered table-less CSS (divs/spans etc)?&lt;/p&gt;
&lt;p&gt;I know that Dreamweaver can create those maddeningly nested tables. &lt;/p&gt;
&lt;p&gt;I don&#039;t use Dreamweaver but some designers I work with do, is there a way to avoid those nasty tables and still use DW?&lt;/p&gt;
 </description>
     <pubDate>Tue, 23 Dec 2008 16:47:05 +0000</pubDate>
 <dc:creator>decibel.places</dc:creator>
 <guid isPermaLink="false">comment 1236449 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title>If you take a look at the</title>
    <link>https://www.webmaster-forums.net/web-design-and-graphics/table-issues#comment-1236448</link>
    <description> &lt;p&gt;If you take a look at the contact page in IE, you see the nav bar shifted to the left. Once I added in the email script, things moved. I tried to move it, but I am having difficulty.&lt;/p&gt;
 </description>
     <pubDate>Tue, 23 Dec 2008 16:46:00 +0000</pubDate>
 <dc:creator>munruss</dc:creator>
 <guid isPermaLink="false">comment 1236448 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title>We&#039;re going to need some</title>
    <link>https://www.webmaster-forums.net/web-design-and-graphics/table-issues#comment-1236446</link>
    <description> &lt;p&gt;We&#039;re going to need some specifics to help you out here.  For instance, which page in particular, if not all, are you having problems with?  What are you &lt;strong&gt;trying&lt;/strong&gt; to do?  From what I can see, each page looks fine in Firefox; is there a particular browser you&#039;re having troubles with?&lt;/p&gt;
 </description>
     <pubDate>Tue, 23 Dec 2008 16:26:27 +0000</pubDate>
 <dc:creator>kazimmerman</dc:creator>
 <guid isPermaLink="false">comment 1236446 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
