Announcement

Collapse
No announcement yet.

Menu

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Menu

    I have a long menu just like this guy:
    http://www.homeexpo.com
    But he managed to make it so that one can SCROLL up and down.
    How does that SCROLING done?
    Thanks.

    #2
    You can use CSS for that.

    Code:
    <div style="overflow: auto; position: static; visibility: visible; height: 300px; width: 150px;">
    YOUR CODE HERE
    </div>
    will make a region 150 pixels wide x 300 pixles high, containing whatever code you like.
    Norman - www.drillpine.biz
    Edinburgh, U K / Bitez, Turkey

    Comment

    Working...
    X