Changes to map objects require some knowledge in css and html.
These changes can be done in the styles_custom.css in the directory
PRTG Installation Folder\webroot\css
If you for example want to change the map object Data Tables > Alarms copy the content of the file
PRTG Installation Folder\webroot\mapobjects\tableA0.htm
in a new file and change the top line to e.g.
<!--Data Tables: Custom Alarms-->
and change the div class from
<div class="map_object map_table" .....
to
<div class="map_object map_table customalarms_biggerfont" .....
Afterwards, you can edit the styles.custom.css and add
.customalarms_biggerfont td {
font-size: 18px !important;
}
You can replace the 18 by any number to change the font size.
Now you can add the new object Custom Alerts to your map. I recommend to disable the Automatic Scaling option in the map settings to avoid overlaps.
Add comment