CSS Language

Anyone out there that can help me with changing the text in a tile in this pic, I would like to Add the “%” symbol after 44 and instead of “RV Temp living rm”I would like it to say “RV Humidity Living Rm”

See how @UserSeventeen 's suggestion looks, but if the positioning of the text is a bit off you may need something similar to this, adjusting the positioning values to suit.

#tile-10 .tile-primary :after { visibility: visible !important; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); overflow: hidden; white-space: nowrap !important; content: "RV Humidity Living Rm" !important;

I use this CSS in my editor that I developed (almost certainly borrowing it from the noobs topic). From memory, using the after in order to replace text, even though it is made invisible, still means the original text takes up some space, hence the repositioning of the new text

3 Likes

Thanks!!! Very helpful…..worked out perfectly

3 Likes

I appreciate all the help here, I have another one I need help with….is there a way to suppress the word shade in this standard tile?