Set font size on detail and edit pages for Leads and Accounts?

Is there an setting for the font-size for the Lead and Account detail AND edit pages? It’s too small for my old eyes.

I figured it out. I added the following to the end of /suite/cache/themes/Suite7/css/style.css to make a few cosmetic changes to the fonts and size of the description area on the edit screen.

/Detail Screen*********/
.detail tr td
{
font-weight: bold;
font-size: 14px;
}

/Edit Screen********/

input, select, textarea, button {
font-size: 14px;
}

/Links on Detail Screen*********/

.other td a, .detail td a {
font-size: 16px;
}

/Edit Description Area Size*********/

textarea#description {
width: 70%;
height: 300px;
}

Of course the downside to this is that at the next update these will probably be lost as a new style.css will probably be brought in. Thus, if you are going to do this save the CSS code in a file somewhere so you can bring it up again and paste it in after the next update.

There is probably a way to load a custom.css file via code, but I don’t know what the code is nor where to put it.

Anyone?