Hi,
in the next stable release there is a fix that the scrollbars only shows if the iframe is too small.
To fix the issue right now edit your <PRTG install path>\webroot\css\styles_custom.css and add these css rules:
body.mapshow {
min-width: 0 !important;
}
body.mapshow #container {
display: inline;
}
To hide the footer and refreshbutton add:
.mapshow .prtgmapfooter {
display: none;
}
.mapshow #maprefreshlink {
display: none;
}
But it will affect each map.
If you want to hide the footer and refreshlink only in your intranet, you can add some javascript to your intranet page that inject the css in the iframe.
Regards,
Daniel
Add comment