Page 1 of 1
Changing List-Names of a table-field *solved*
Posted:
Mon Jul 19, 2010 2:56 am
by chichi
Hello, how can I change
List-Names of a table, right now the listname is the database-field-name.
Found out that the css had transform:lowercase activated for the table, now table-headings are shown correctly.
chichi
Re: Changing List-Names of a table-field *solved*
Posted:
Mon Jul 19, 2010 6:50 am
by mandra
Hi, I have the same problem, which file exactly must be edited?
Thanks!
Re: Changing List-Names of a table-field *solved*
Posted:
Tue Jul 20, 2010 2:11 am
by chichi
wow, this was an easy one:
File: plone.css... needs to be edited, search for lowercase and
change
- Code: Select all
text-transform: lowercase;
to
- Code: Select all
text-transform: none;
or delete it.
I guess there are lots of beginner-questions whern starting with xataface.
chichi
Re: Changing List-Names of a table-field *solved*
Posted:
Tue Jul 20, 2010 10:53 am
by mandra
I had already tried that (I know nothing about css or plone, so I just changed all entries as you write by guess) - doesn't seem to work for me, the title columns in the list view are still all lowercase although they shouldn't be... Any ideas?
Re: Changing List-Names of a table-field *solved*
Posted:
Tue Jul 20, 2010 11:15 am
by shannah
First, I don't recommend making any changes to plone.css or any dataface files. It will make it harder to upgrade when a new version comes out. If you want to override CSS directives, simply include your own CSS file via a block and override the directives there.
That said, if you changed text-transform: to none it should change your headings to not be forced lower case anymore. You may need to hit refresh or restart your browser to ensure that you still aren't using a cached version of the old stylesheet.