Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>You have forgotten to put your nav in a <code>&lt;td&gt;</code> and a <code>&lt;tr&gt;</code>. Once you start a <code>&lt;table&gt;</code>, everything after that tag, that is not a "table tag" (such as <code>&lt;th&gt;</code> needs to be in a <code>&lt;tr&gt;</code>, and a <code>&lt;td&gt;</code>. For more information on this see: <a href="http://www.w3schools.com/html/html_tables.asp" rel="nofollow noreferrer">http://www.w3schools.com/html/html_tables.asp</a></p> <p>To fix this, simply put your ul in a <code>&lt;tr&gt;</code> and <code>&lt;td&gt;</code></p> <pre><code>&lt;tr&gt;&lt;td&gt; &lt;ul id="nav"&gt; &lt;li&gt;&lt;a href="http://www.core4innovative.com/home.html"&gt;Home&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="http://www.core4innovative.com/about/about.html"&gt;About Us&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="http://www.core4innovative.com/process/our_process.html"&gt;Our Process&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="http://www.core4innovative.com/services/services.html"&gt;Our Services&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="http://www.core4innovative.com/contact/contactus.aspx"&gt;Contact Us&lt;/a&gt;&lt;/li&gt; &lt;/ul&gt; &lt;/td&gt; &lt;/tr&gt; </code></pre> <p>Also, any other html elements on the page need to be in a <code>&lt;tr&gt;</code> or <code>&lt;caption&gt;</code>) and a <code>&lt;td&gt;</code> tag (such as your div's "box" and "lowerbox"; the divs need to be closed before you start another <code>td</code>).</p> <p>If I were you, I would get rid of all of the table elements all together. If you really want to use a table for layout of your content, then use it only in the content area. You do not need to start your table with all your images until you get to the content area.</p> <p>Also, to avoid future css headaches, always begin your css file with a css <a href="http://meyerweb.com/eric/tools/css/reset/" rel="nofollow noreferrer">reset</a>. This will help you on your way!</p> <p>The css that you are using to style your nav is fine. For all the bad rap that IE get (totally deserved), the errors are sometimes due to coder negligence (ie you forget to close your tags). Most browsers are nice and ignore your negligence, but IE often does not clean up your missing tag mess.</p> <p>I offer a simple page structure to place your code into.</p> <pre><code>&lt;html&gt; &lt;head&gt; &lt;title&gt;&lt;/title&gt; &lt;/head&gt; &lt;body&gt; &lt;div id="header"&gt; &lt;!-- your &lt;ul&gt; nav --&gt; &lt;/div&gt; &lt;div id="content"&gt; &lt;!-- your table with images (if you really want to use a table! --&gt; &lt;/div&gt; &lt;div id="footer"&gt; &lt;!-- your footer info --&gt; &lt;/div&gt; &lt;/body&gt; &lt;/html&gt; </code></pre>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload