View Single Post
  #4 (permalink)  
Old Feb 28th, 2007, 08:41
Bruni Bruni is offline
New Member
Join Date: Feb 2007
Location: Italy
Age: 25
Posts: 4
Thanks: 0
Thanked 0 Times in 0 Posts
Re: DHTML script problem!

SOLVED!

And in case someone encounters my same problem - in the CSS section of the "head" portion of the code, look for:

Code: Select all
.dhtmlgoodies_subMenu ul li a{    /* Sub menu items */
        white-space:nowrap;    /* No line break */
        text-decoration:none;    /* No underline */
        color:#000;    /* Black text color */
        
        height:16px;    /* 16 pixels height */
        line-height:16px;    /* 16 pixels height */
        padding:1px;    /* 1px of "air" inside */
        
        display:block;    /* Display as block - you shouldn't change this */
    }
...and erase the display:block; line. At that point, the submenu entries will display as a long long line - you will have to use <br /> to start new lines.
Reply With Quote