Icon as caption

I am running PHPMaker v2020. I would like to use icons instead of text on field captions. I like the icons to look like the “glyphicons” from W3Schools.Also, in v2020 how do I change all pages background color to blue. In addition, I need to change the top-nav menu backgroud to blue. All posts I have read and tried to accomplish these two color changes haven’t worked so far. Please, help.

Since I am no a web programmer, feel free to treat me as one that doesn’t know anything about PHPMaker.

v2020 uses Font Awesome Free, see https://phpmaker.dev/doc/migrate2020.htm.You may try to use HTML (see https://fontawesome.com/how-to-use/on-the-web/referencing-icons/basic-use) as field caption.

for changing page background and navbar, try using custom css in HTML ->Styles->Userstyle//for Page Background;
.content-wrapper {
background-color: #abf5f5;
}//for navbar color;
.bg-danger {
background-color: #00b8ff ;
}

I added the custom css in the HTML->Styles->Userstyle and the page background takes the color I assign but the red top navbar does not.The page still has the red color with the white menus. Please, help!

this works for me
https://www.hkvforums.com/viewtopic.php?f=4&t=45661&p=144641&hilit=navbar#p144641