Ok tried that. The menu still sticks out to the right in Firefox
Main Topics
Browse All TopicsI have website that I have created using a template based online program for a real estate company. The program lets me do some custom content. I have created the The menu buttons and left side custom.
The problem im having is the menu aligns to the picture above it fine in IE, but in Firefox its stick out to the right a little bit past the picture.
the website:
http://www.illinoisforeclo
Attached is the external CSS code.
Below is the code for that menu area only.
Thanks for any suggestions
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
also, your css does not validate. Go to http://jigsaw.w3.org/css-v
Hi shawnzer,
I think I can see the issue. It might be happening because you are mixing spans, tables and divs together and FF is adding borders together. Here is the menu code:
<td scope="row"><div align="left"><div class="menu bubplastic vertical red">
<ul>
<li><span class="menu_r"><a href="http://www.illinoisf
<li><span class="menu_r"><a href="http://www.illinoisf
<li><span class="menu_r"><a href="http://www.illinoisf
<li><span class="menu_r"><a href="http://www.illinoisf
<li><span class="menu_r"><a href="http://www.illinoisf
<li><span class="menu_r"><a href="http://www.illinoisf
<li><span class="menu_r"><a href="http://www.illinoisf
<li><span class="menu_r"><a href="http://www.illinoisf
<li><span class="menu_r"><a href="http://www.illinoisf
<li><span class="menu_r"><a href="http://www.illinoisf
<li><span class="menu_r"><a href="http://www.illinoisf
<li><span class="menu_r"><a href="http://www.illinoisf
<li><span class="menu_r"><a href="http://www.illinoisf
<li><span class="menu_r"><a href="http://www.illinoisf
</ul>
<br class="clearit">
</div></div></td>
I would consider going through all of the classes and tag styles that reference the above and adding border-collapse: collapse to the styles. That might reduce the excess padding seen in FireFox.
Also, remove padding-right from:
.bubplastic.vertical ul li a span.menu_ar
and see if that improves things.
Business Accounts
Answer for Membership
by: rbudjPosted on 2009-09-01 at 08:52:27ID: 25232838
Everything looks the same in ff3 and ie8. Except however for the rollover which seems to be broken in IE8. Since older browsers are still heavily used, you might want to change your doc type from strict to transitional:
l1/DTD/xht ml1-transi tional.dtd ">
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtm
This may help.