horizontal menu and lists

Ask a Question related to Macromedia Dynamic HTML, Design and Development.

  1. #1

    Default horizontal menu and lists

    hi:

    is it possible to construct an horizontal menu where each item is
    preceded by a user bullet?

    myBullet Item1 myBullet Item2 myBullet Item3 ...

    display: inline; hide the bullets. i tried inserting the image before
    each item but i haven't been able to properly align it vertically

    tia,

    jdoe
    John Doe Guest

  2. Similar Questions and Discussions

    1. Contribute vs Horizontal Menu Bar
      I'm using a "dolphin tab menu bar"http://www.javascriptkit.com/script/script2/tabset/index.shtml (horizontal menu bar w/ horizontal submenu bar) on...
    2. PLEASE HELP! Spry horizontal menu bar
      I've created a website and used the spry widget for a horizontal menu bar. It looks and performs great in Safari but when opened in Explorer the...
    3. Dynamic Menu - Horizontal with sub options horizontal
      Hi, folks. Well, I've trying to make a horizontal menu with show/hide layers but the result is not that I want. I would like to do a menu like...
    4. Help wiht converting this actionscript vertical menu to a horizontal menu?
      I've been fiddling around with this script and I think my ActionScript is a bit too rusty for accomplishing what I want to change. I've been...
  3. #2

    Default Re: horizontal menu and lists

    ..oO(John Doe)
    >is it possible to construct an horizontal menu where each item is
    >preceded by a user bullet?
    >
    >myBullet Item1 myBullet Item2 myBullet Item3 ...
    >
    >display: inline; hide the bullets. i tried inserting the image before
    >each item but i haven't been able to properly align it vertically
    Use CSS to put a background image and some padding on the menu items,
    e.g.

    ..menu li {
    padding-left: 10px;
    background: url(/path/to/image) left no-repeat;
    ...
    }

    HTH
    Micha
    Michael Fesser Guest

  4. #3

    Default Re: horizontal menu and lists

    thanks, i'll give a try!

    Michael Fesser wrote:
    > .oO(John Doe)
    >
    >> is it possible to construct an horizontal menu where each item is
    >> preceded by a user bullet?
    >>
    >> myBullet Item1 myBullet Item2 myBullet Item3 ...
    >>
    >> display: inline; hide the bullets. i tried inserting the image before
    >> each item but i haven't been able to properly align it vertically
    >
    > Use CSS to put a background image and some padding on the menu items,
    > e.g.
    >
    > .menu li {
    > padding-left: 10px;
    > background: url(/path/to/image) left no-repeat;
    > ...
    > }
    >
    > HTH
    > Micha
    John Doe Guest

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139