Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / Is this an IE CSS bug?

Is this an IE CSS bug?

Locked

Views: 872

Results 1 to 3 of 3
This thread is locked. New replies are disabled.
11 May 2007, 11:40 PM
#1
antiocles avatar

antiocles

New Zenner

Join Date:
Oct 2006
Posts:
12
Plugin Contributions:
0

Is this an IE CSS bug?

I am no good at web programming. I have what I suspect is an IE bug regarding positioning on my side menu.

Yes, thats right - menu. I only have a single left side menu box that is supposed to be right beneath some other items on the right.

In IE it has a 1 pixel break. Works fine in everything else. Can someone suggest what is going on here so I can fix it? Thanks!

pssllc.com

Antiocles

12 May 2007, 1:53 AM
#2
econcepts avatar

econcepts

Totally Zenned

Join Date:
Dec 2005
Posts:
1,505
Plugin Contributions:
2

Re: Is this an IE CSS bug?

Nope. Not a bug. An HTML typo. See below (taken from your code). Remove the extra <TR> and you're all set.

<tr>
<td style="background: url('/images/navBtnBack.jpg') no-repeat; padding-left: 20px; height: 23px;">
<img src="/images/blueBullet.jpg" align="top" id="n6" alt="b"/><a href="/index.php?main_page=advanced_search" class="navLink" onMouseOver="highlightMenu('n6');" onMouseOut="unHighlightMenu('n6');"style="text-decoration:none; padding-left:2px;">site search</a></td>
</tr>
[B]<tr>[/B]
<tr>
<td style="background: url('/images/navFade.jpg') no-repeat top left;">

<!--// bof: testimonials_manager //-->
<div class="leftBoxContainer" id="testimonials-manager" style="width: 125">
<h3 class="leftBoxHeading" id="testimonials-managerHeading">Testimonials</h3>
<div id="testimonials-managerContent" class="sideBoxContent"><b><a href="http://pssllc.com/index.php?main_page=testimonials_manager&testimonials_id=3&zenid=55c2ff1dc8f782c66827151e16128ee4">Satisfied User</a></b><div class="testimonial"><p><p>If you've nosed around the DC50 website much you know that I'm a user who's not shy about pointing out glitches. The reasons I'm vocal about DC50...<br /><span><strong><a href="http://pssllc.com/index.php?main_page=testimonials_manager&testimonials_id=3&zenid=55c2ff1dc8f782c66827151e16128ee4">Read More <img src="/images/arrow.jpg"/></a></strong></span></p></div><hr id="catBoxDivider" /></div></div>
<!--// eof: testimonials_manager //-->


</td>
</tr>
</table>
12 May 2007, 4:13 AM
#3
antiocles avatar

antiocles

New Zenner

Join Date:
Oct 2006
Posts:
12
Plugin Contributions:
0

Re: Is this an IE CSS bug?

Sheesh! I ran a validator earlier and it didn't even occur to me that I might have done something like that.

I much prefer something like C to this web programming stuff. I don't like things that "mostly" work when there are errors. Makes it much harder to find. :D

Thanks a lot!

Antiocles