Changing List-Names of a table-field solved
Archived from the Xataface Users forum.
chichi — Mon Jul 19, 2010 2:56 am
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
mandra — Mon Jul 19, 2010 6:50 am
Hi, I have the same problem, which file exactly must be edited?
Thanks!
chichi — Tue Jul 20, 2010 2:11 am
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
mandra — Tue Jul 20, 2010 10:53 am
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?
shannah — Tue Jul 20, 2010 11:15 am
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.