My understanding is the image is database driven and regenerated periodically (I think with the same link though). So a person viewing it over time will see it update per the US bureau of reclamation real time data:
https://usbr.maps.arcgis.com/apps/dashboards/81aaec3e74024ce6b9a5e50caa20984e
Is it possible to embed the image URL in the CSS for the page header or sidebar such that the image is pulled from the USBR website? If so, is some example CSS available?
EDIT: For completeness, here is the CSS code I got from Ivan which worked for adding an image to the sidebar:
body .sbimg {
height: 200px;
background: url(%%YourPicNameHere%%) no-repeat center/contain;
}
[I found a particularly interesting image that is relevant to the deadpool sub. The image shows the current, average, and full water levels for Lake Mead. ](https://www.usbr.gov/lc/region/g4000/riverops/webreports/LakeMead.png)
My understanding is the image is database driven and regenerated periodically (I think with the same link though). So a person viewing it over time will see it update per the US bureau of reclamation real time data:
https://usbr.maps.arcgis.com/apps/dashboards/81aaec3e74024ce6b9a5e50caa20984e
Is it possible to embed the image URL in the CSS for the page header or sidebar such that the image is pulled from the USBR website? If so, is some example CSS available?
EDIT: For completeness, here is the CSS code I got from Ivan which worked for adding an image to the sidebar:
body .sbimg {
height: 200px;
background: url(%%YourPicNameHere%%) no-repeat center/contain;
}
(post is archived)