Header color on multiple column view

This public forum is for user-to-user discussions of PHPMaker. Note that this is not support forum.
Post Reply
ferpongo
User
Posts: 3

Header color on multiple column view

Post by ferpongo »

When you choose "Page Options-Sort type-Multiple column", the field header color always changes in white, and, apparently, can not easily customized.
I would like that the color set for "Single column" could be confirmed on "Multiple column" view.
Instructions to achieve this aim will be appreciated.


danielc
User
Posts: 1601

Post by danielc »

If you look at multiple column, the class for header column is td.ewTableHeader. For not a multiple column, the class for header column is tr.ewTableHeader td. So, you need to apply your css to the two to make your css setting the same.


ferpongo
User
Posts: 3

Post by ferpongo »

Can you control a class in css settings, in order to change the header color in View and Edit page, too?
Thanks.


danielc
User
Posts: 1601

Post by danielc »

To overwrite the css, just click [Edit Styles] in [HTML]->[Styles]. Write your css between these two lines:
BEGIN_USER_STYLES
END_USER_STYLES

Like:
td.ewTableHeader, tr.ewTableHeader td {
/* your style */
}


Post Reply