Results 1 to 4 of 4

Thread: Centering a CSS Hover Menu on ALL Resolutions

  1. #1
    Join Date
    Jan 2006
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Centering a CSS Hover Menu on ALL Resolutions

    Im trying to put my css hover menu into a table where i can see it centered on all resolutions.


    any help?

  2. #2
    Join Date
    Jun 2005
    Location
    英国
    Posts
    11,876
    Thanks
    1
    Thanked 180 Times in 172 Posts
    Blog Entries
    2

    Default

    Put it in a table with three columns, the middle at 0% width, the rest at 50%. Put it in the middle.
    Twey | I understand English | 日本語が分かります | mi jimpe fi le jbobau | mi esperanton komprenas | je comprends français | entiendo español | tôi ít hiểu tiếng Việt | ich verstehe ein bisschen Deutsch | beware XHTML | common coding mistakes | tutorials | various stuff | argh PHP!

  3. #3
    Join Date
    Aug 2007
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    This answer was close enough for me to get to the real solution although using a table is not pure CSS. Instead of setting the center to 0% give it no width and set the two outside TDs to 0% so your table is <table><tr><td width=0%><td><td>insert navibation bar here (the stuff inside the <div> basically on most menus I have seen from <ul> to </ul>)</td><td width=0%)</td></tr></table>

    I have tested in IE7 and FF2.06

    Dwight

  4. #4
    Join Date
    Jun 2005
    Location
    英国
    Posts
    11,876
    Thanks
    1
    Thanked 180 Times in 172 Posts
    Blog Entries
    2

    Default

    This answer was close enough for me to get to the real solution although using a table is not pure CSS.
    The OP already had the table, I presumed it was holding tabular data.

    Your markup is invalid: <td>s may not be nested inside <td>s. If you want to do it using CSS, you can simply apply margin: 0 auto; as always.
    Twey | I understand English | 日本語が分かります | mi jimpe fi le jbobau | mi esperanton komprenas | je comprends français | entiendo español | tôi ít hiểu tiếng Việt | ich verstehe ein bisschen Deutsch | beware XHTML | common coding mistakes | tutorials | various stuff | argh PHP!

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •