Font size in Grid table (main table

MichalD

New member
Hi,
I'm trying to find where i can change font size in grid- main table but all suggestion is not working. I tryed change in styles-screen or in styles-screen old file but nothing happend. Can you help me with that? Where can i find font size of mail table?

Best wishes,
Michal
 

eugenio

Administrator
Staff member
Hello,
the only file you have to modify to add your style is styles_screen_custom.css

If you inspect the html code with a browser, you will see a class set for the cells. Try to set the font size for that class.

Alternatively, you can just change the size for the document, e.g. if you add to your styles_screen_custom.css file

html {
font-size: 1.5em;
}

the size will be 50% bigger.

Best,
 
Top