howto create a CSS bottom navigator?

Discussion in 'CSS' started by mailcol, Oct 18, 2007.

  1. #1
    hi, i search thought the net, and i cant find the exact code. i believe the actually coding is jz need one or two correct CSS command.

    Can someone tell me how to create the effect that like the link below?
    http://dynamicdrive.com/dynamicindex1/omnislide/index.htm

    I need the top menu ALWAYS at the bottom. :)
    Can someone tell me the CSS/JS command to be use?

    Thanks
     
    mailcol, Oct 18, 2007 IP
  2. Dan Schulz

    Dan Schulz Peon

    Messages:
    6,032
    Likes Received:
    436
    Best Answers:
    0
    Trophy Points:
    0
    #2
    You don't need JavaScript for that. Just HTML and CSS.

    Second, I strongly advise against using JavaScript based menus that won't work without JavaScript either enabled or supported by the browser since they're inaccessible to people who can't or won't enable JavaScript and browsers that don't support it to begin with, search engines won't be able to tell your pages are there (meaning they won't get indexed), and people may find them to be difficult to use (believe it or not).

    If you want to use CSS for this, just use position: fixed; on the HTML container that's holding the menu (should be an unordered list since it's a list of menu options), and then set the position to where you want it. Internet Explorer 6 doesn't support this CSS property, but it can be faked if you're careful about how you go about it.
     
    Dan Schulz, Oct 18, 2007 IP
  3. mailcol

    mailcol Peon

    Messages:
    105
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #3
    Thanks spirit walker. Yeah, i hate IE6
     
    mailcol, Nov 1, 2007 IP