fields.ini [fieldgroup:xxxxxxx] collapsable title?

Archived from the Xataface Users forum.

tomhousley — Mon Apr 19, 2010 3:58 am

Hello,

Is there a way in fields.ini (or elsewhere) to disable the collapsable fieldgroup title?

I know it can be set collapsed=0 or 1, but is there something like collapsable=0 ?

It can be sort of hidden with CSS which works with firefox but not IE.

Code: Select all
h3.Dataface_collapsible_sidebar {    font-size: 11px;    font-weight: bold;    background-color: #e9e9e9;    padding-left: 15px;    padding-right: 3px;    /*background-image: url(images/treeExpanded.gif);*/    background-repeat: no-repeat;    background-position: 3px 6px;    display:none; /* added this line */ }

Many thanks, Tom


shannah — Tue May 04, 2010 9:09 am

Your CSS solution is probably the best approach. I’m sure it can be modified to work also in IE. E.g. try adding !important to your display:none directive:

Code: Select all
display: none !important;