Here's my dilemma. My website looks lovely in all browsers, except Internet Explorer 7,8,9...
The layout is set up with a sidebar on the left hand side. It contains links, logo. Next to that sidebar there is another on the right hand adjacent side to it, containing more links (basically a sub-link group of the others.) The content is adjacent to the right side of that sub-link box. The sidebar, subbar, and content box are all within a table, for layout purposes. Each <td> contains it's respective content (#sidebar, #subbar, #mainContainer, etc.) In the main content box there is a nivo slider, transitioning through several pictures. When that slider renders the next picture, the subbar and mainContainer <td>s SCRUNCH into the left-most sidebar. When I scroll over a link in the sidebar or sub-bar, the page repositions itself. However, either before or after this reposition, only the first two links in the sidebar are clickable/mouseOver-able. I am assuming this has something to do with the position:relative/position:absolute attributes associated with the nivo slider.
</table>
</td>
<!-- CHOICES BAR ----------------------------------------------------------->
<!-- CHOICES BAR ----------------------------------------------------------->
<!-- CHOICES BAR ----------------------------------------------------------->
<!-- INFO ------------------------------------------>
<!-- INFO ------------------------------------------>
<!-- INFO ------------------------------------------>
<h3 id="wikiTit" style="padding-top:25px;">
Example Shown:
</h3>
<h2 id="wiki">
Turtle Island is a custom habitat built for Turtles who love to bask.
It is a multi climate habitat including both island and aquatic areas.
The island portion of the habitat includes both a feeding and basking area for the turtles.
Because turtles must swallow their food under the water, either side of the island gradients into an aquatic habitat ;
The island is easily accessible from the aquatic habitats located on either side of the fixture.
Both aquatic habitats are enriched with freshwater creatures , creating a flourishing island ecosystem.
</br>
</br>
Not all creatures live harmoniously together, so please consult with our professionals when making selections for your ecosystem.
<h2 id="wiki">
Most habitats created for you by Paradise for your Pet are self sustaining ecosystems and require little maintenance.
</br>
There are some elements that should be monitored. Please visit the <a id="care" href="#">Habitat Care</a> page for more information on your habitat.
</br>
</br>
</h2>
<h3 id="wikiTit">
Size:
</h3>
<h2 id="wiki">
Small - 25 gallons
</br>
Medium - 50-100 gallons
</br>
Large - 100-200 gallons
</br>
Extra Large - 200+ gallons
</h2>
</h2>
</td>
</tr>
</table>
</div>
<!-- INFO ------------------------------------------>
<!-- INFO ------------------------------------------>
<!-- INFO ------------------------------------------>
you are using 1999 standard
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
but you are calling 'modernizer' which is made for html5 tags support on Gen4 browsers.
yet you are not using a single 'modern' tag thrughout your doc.
what's with the </br>
</br> tag?
you are also using <td id="containerMain" align="right" valign="top" >
align which is also deprecated etc
If that is ALL the code, then you are missing a VERY important part, the DOCTYPE declaration: http://www.w3schools.com/tags/tag_doctype.asp
This should be the very first line of code. It sets the rules by which the browser will parse the page. To pull IE into line, you'll need to add it.
Best wishes,
EfV
Bookmarks