On 6/9/06, Roy Anger <[EMAIL PROTECTED]> wrote:
>
> As David Laakso helpfully pointed out, I forgot the URI. Its
> http://mike.exclaimstudio.com
>
> I'm having a little trouble with some layout on a site. The site is
> displaying the way I want it to in IE 6, Firefox on Windows and Firefox
> on Linux.  The site, however, is not displaying correctly in Opera 8.51
> and 8.54 on Windows. The menu is getting mangled, and some of the footer
> elements are not lining up correctly. Before I spend time trying to
> figure it out, I was hoping someone on the list might be aware of what
> is causing these issues and hopefully that can save me some time.
>
Fix the validation errors (by moving the <form> element for the search thus

<div class="menu-content">
  <form action="search.php" method="post">
  <div><input type="text" name="search" id="search" size="20" />
        <input type="hidden" name="general" value="yes" />
  </div>
  </form>
  <a href="search.php">Advanced Search</a>
</div>  

And Opera fixes the display. The problem was merely that Opera's
handling of invalid nesting was different from that of the other
browsers you tested in.

BTW,

<h3 class="menu-title">Reviews</h3>

should have the same effect as and is much cleaner than:

<div class="menu-title">
        <h3>Reviews</h3>
</div>
-- 
Richard Grevers, New Plymouth, New Zealand
Hat 1: Development Engineer, Webfarm Ltd.
Hat 2: Dramatic Design www.dramatic.co.nz
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to