0

I have items in Palette that is wider than the box width. The tail-end of items is clipped and not visible. Palette has automatic vertical scrolling but not horizontal scrolling. How do I make horizontal scrolling possible?

Here is what I have tried at my css.

DIV.t-palette SELECT { 
overflow-x: auto !important;
}

and

DIV.t-palette-available {
     overflow-x: auto !important;   
}

and

DIV.t-palette {
    overflow-x: auto !important;    
}

Any help would be much appreciated. Thanks.

CodeHelp
  • 1,328
  • 5
  • 21
  • 37

1 Answers1

0

Maybe i'm not understanding your question, but this worked for me:

DIV.t-palette SELECT {
 overflow-x: scroll;
}
Naruto Sempai
  • 6,233
  • 8
  • 35
  • 51
  • I tried your code but it doesn't work for me. Are you using t:type="Palette" or are you using the tapestry-jquery palette? – CodeHelp Aug 16 '13 at 01:07