Changing font and other non-obvious items on printed reports?

Bobby_M

Apprentice
Joined
Apr 12, 2015
Messages
5
Reaction score
0
I think I have a handle on how to customize the brew sheets, at least to the limits of my HTML skillset allows. Deleting sections, changing some text, etc.. Two things I can't figure out. It doesn't appear that the font for the headings like "Mash Ingredients" or "Mash Steps" are referenced in the "style.css" file. It looks like they are embedded somewhere else.

1703104520556.png

My sheet below, when printed without the toner hungry background graphics, leaves these headings light grey and hard to read. I'd like them to be black.


1703104382474.png


My other question is where are these tagged tables formatted? For example, let's say I wanted to hide the "Volume" column in Mash Ingredients or change the font?

Thanks!

Bobby
 
I can't answer your question but you have prompted me to see if I can customise my brewsheet. If I find any answers to your questions I 'll come back.
 
There is no access to the content or formatting of tables. Probably the same for fonts, but I haven't tried on those.

--GF (A real person, not a AI)
 
You can create custom reports and modify the fonts on tables. Since you can't directly alter the HTML for the tables themselves, you do need to add a bit of CSS (or style elements) to do it. For example the table class in BeerSmith is called "BeerSmithTable" so you can do stuff in css like:

.BeerSmithTable { font: Arial 8pt; }
which would change the font to Arial 8pt. You can also modify the th, tr, td elements using CSS.

Look up a tutorial on CSS formatting for tables, and then add the CSS to the custom report at the top, and enclose the CSS code within a set of <style></style> tags (put the code between the two tags).
 
Back
Top