concerto / concerto-frontend

Frontend JS code for Concerto
http://concerto-signage.org
Other
7 stars 5 forks source link

Remove Alt/Hover Text (Title of concerto-graphic element) From showing up on screens #81

Open robp2175 opened 5 years ago

robp2175 commented 5 years ago

I use unclutter in my signsage devices to hide the cursor, but sometimes the alt text stills shows up on the screen. See the image linked below. Is there any way to disable the hover/alt text for the images from showing up?

https://ibb.co/mYy5FA

randyarrasmith commented 5 years ago

in your css file (you may have to inspect and add other concerto-xxxx elements but here is a simple example for 2 of them): concerto-graphic, concerto-htmltext { pointer-events: none; }

or on the style of the field line in the template just : pointer-events: none;

This works great for read only displays but will stop click events on interactive displays.