Hey Stefano,
You can edit unified.php directly, or you can edit the overlay you’re using, so you can do either really..
If you open unified.php, find what you want to edit – in this case spHeaderName, and see what rules it has. Eg:
#spMainContainer .spHeaderName,
#spMainContainer .spHeaderName span {
font-family: <?php echo($headerNameFontFamily); ?>;
font-size: <?php echo($headerNameFontSize); ?>;
font-weight: <?php echo($headerNameFontWeight); ?>;
text-transform: <?php echo($headerNameTransform); ?>;
color: <?php echo($headerNameColor); ?>;
background: <?php echo($headerNameBackGround); ?>;
margin: 0;
padding: 5px 0px 0px 0px;
}
So in this case, font-size is being controlled through $headerNameFontSize, which you will find in your overlay.
Now you can either change font-size: in unified.php, so something like
#spMainContainer .spHeaderName,
#spMainContainer .spHeaderName span {
font-family: <?php echo($headerNameFontFamily); ?>;
font-size: 15pt;
font-weight: <?php echo($headerNameFontWeight); ?>;
text-transform: <?php echo($headerNameTransform); ?>;
color: <?php echo($headerNameColor); ?>;
background: <?php echo($headerNameBackGround); ?>;
margin: 0;
padding: 5px 0px 0px 0px;
}
Or you can change the value of $headerNameFontSize in the overlay, something like
$headerNameFontSize = '80%'; # Used for main view headings
Hope this helps!