Page 1 of 1

how to change layout of display

PostPosted: Mon Dec 28, 2009 4:36 pm
by kevinwen
Hi,

How can I change the layout of the filter for a specific table records? The default layout lies horizontal, but I want it vertical. Thanks.

Re: how to change layout of display

PostPosted: Wed Dec 30, 2009 11:14 am
by shannah
This should be done via CSS. You can see the CSS rules for this in the plone.css file. Add your own CSS file that overrides this.

In particular, these are the rules of interest:
Code: Select all
div.resultlist-filters ul li { display: inline; list-style-type: none; list-style-image:none}
div.resultlist-filters h3 { display: inline; font-size: 12px; color: #444}
div.resultlist-filters ul { display: inline}

Re: how to change layout of display

PostPosted: Wed Dec 30, 2009 5:04 pm
by kevinwen
Thanks a lot.