Sure. It's as simply as adding some code to the styles_custom_v2.css, located under C:\Program Files (x86)\PRTG Network Monitor\webroot\css:
#mapelement_2008_1 {
animation: blink 1s steps(5, start) infinite;
-webkit-animation: blink 1s steps(5, start) infinite;
}
@keyframes blink {
to {
visibility: hidden;
}
}
@-webkit-keyframes blink {
to {
visibility: hidden;
}
}
To get the element ID, open the map in a browser, right click and hit "Inspect element" (depending on the browser) and copy the div ID.
Note: In PRTG versions 13.2.3 through 17.3.33, the file for custom code is styles_custom.css,
Add comment