On Thu, Jul 26, 2012 at 4:01 AM, C Anthony Risinger <anth...@xtfx.me> wrote: > On Thu, Jul 26, 2012 at 3:50 AM, Daniel Gonzalez <gonva...@gmail.com> wrote: >> Hi, >> >> Is it possible to create a ScrollPanel with only Vertical Scrolling? >> Currently I am doing: >> >> ScrollPanel.__init__(self, widget, AlwaysShowScrollBars = True) >> >> But this creates both scrollbars. > > maybe it's a matter of taste, but i try to keep all this kind of stuff > out of the python code -- i only set ids and classes that can then be > targeted by CSS. > > try:
er ... #that-scrollpanel-div { overflow-x: hidden; overflow-y: scroll; } -- C Anthony --