how to change layout of display
Archived from the Xataface Users forum.
kevinwen — Mon Dec 28, 2009 4:36 pm
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.
shannah — Wed Dec 30, 2009 11:14 am
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}
kevinwen — Wed Dec 30, 2009 5:04 pm
Thanks a lot.