Hello Roll20 Help Center Ticket:&nbsp;83786 Editing an old rolltemplate I noticed that you are not handling image URLs in a consistent manner. There are multiple outcomes depending on the way an image is added, and if is added to the sheet or to a Rolltemplate. I have described my findings in this video: &nbsp; Roll20 Bug: Inconsistent handling of image URLs Here is a table of the information found: Element Imgsrv added Whitespace encoded Image visible Comment Static/repeating &lt;img&gt; ✅ ✅ ✅ Url handled correctly Static/repeating &lt;div&gt; with background image ❌ ❌ ✅ Url inserted raw. Not handled in any way. Minor bug Static/repeating &lt;th&gt; with background image ❌ ❌ ✅ Url inserted raw. Not handled in any way. Minor bug Static/repeating &lt;td&gt; with background image ❌ ❌ ✅ Url inserted raw. Not handled in any way. Minor bug Rolltemplate &lt;img&gt; ✅ ✅ ✅ Url handled correctly Rolltemplate &lt;div&gt; with background image ✅ ❌ ❌ Url handled by different engine. Imgsrv &nbsp;added but whitespace removed&nbsp;instead of encoded Rolltemplate &lt;th&gt; with background image ✅ ❌ ❌ Url handled by different engine.&nbsp; Imgsrv &nbsp;added but whitespace&nbsp; removed&nbsp;instead of encoded Rolltemplate &lt;td&gt; with background image ✅ ❌ ❌ Url handled by different engine.&nbsp; Imgsrv &nbsp;added but whitespace&nbsp; removed&nbsp;instead of encoded Summary Rolltemplate elements with an background image, are not encoded correctly, resulting in images with whitespaces not showing up. Quick fix The easiest quick fix is to manually replace whitespaces with %20 in all URLs used on Rolltemplates The better fix Ensure that your raw image URLs do not have whitespaces in them in the first place. Code used for the video HTML: &lt;div class="sheet-2colrow"&gt; &lt;div class="sheet-col"&gt; &lt;img src="<a href="https://raw.githubusercontent.com/Roll20/roll20-character-sheets/master/ADnD" rel="nofollow">https://raw.githubusercontent.com/Roll20/roll20-character-sheets/master/ADnD</a> 2E Revised/img/sheet-logo.png"&gt; &lt;div class="background-image"&gt;&lt;/div&gt; &lt;table&gt; &lt;tbody&gt; &lt;tr&gt;&lt;th class="background-image"&gt;&lt;/th&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td class="background-image"&gt;&lt;/td&gt;&lt;/tr&gt; &lt;/tbody&gt; &lt;/table&gt; &lt;/div&gt; &lt;div class="sheet-col"&gt; &lt;fieldset class="repeating_section"&gt; &lt;img src="<a href="https://raw.githubusercontent.com/Roll20/roll20-character-sheets/master/ADnD" rel="nofollow">https://raw.githubusercontent.com/Roll20/roll20-character-sheets/master/ADnD</a> 2E Revised/img/sheet-logo.png"&gt; &lt;div class="background-image"&gt;&lt;/div&gt; &lt;table&gt; &lt;tbody&gt; &lt;tr&gt;&lt;th class="background-image"&gt;&lt;/th&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td class="background-image"&gt;&lt;/td&gt;&lt;/tr&gt; &lt;/tbody&gt; &lt;/table&gt; &lt;/fieldset&gt; &lt;/div&gt; &lt;/div&gt; &lt;rolltemplate class="sheet-rolltemplate-imagetest"&gt; &lt;img src="<a href="https://raw.githubusercontent.com/Roll20/roll20-character-sheets/master/ADnD" rel="nofollow">https://raw.githubusercontent.com/Roll20/roll20-character-sheets/master/ADnD</a> 2E Revised/img/sheet-logo.png"&gt; &lt;div class="sheet-background-image"&gt;&lt;/div&gt; &lt;table&gt; &lt;tbody&gt; &lt;tr&gt;&lt;th class="sheet-background-image"&gt;&lt;/th&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td class="sheet-background-image"&gt;&lt;/td&gt;&lt;/tr&gt; &lt;/tbody&gt; &lt;/table&gt; &lt;/rolltemplate&gt; CSS: img { height: 70px; } div.background-image, span.background-image, td.background-image, th.background-image, .sheet-rolltemplate-imagetest div, .sheet-rolltemplate-imagetest span, .sheet-rolltemplate-imagetest td, .sheet-rolltemplate-imagetest th { height: 70px; width: 260px; } .background-image, .sheet-background-image, .sheet-rolltemplate-imagetest .sheet-background-image { background-image: url("<a href="https://raw.githubusercontent.com/Roll20/roll20-character-sheets/master/ADnD" rel="nofollow">https://raw.githubusercontent.com/Roll20/roll20-character-sheets/master/ADnD</a> 2E Revised/img/sheet-logo.png"); background-size: contain; background-repeat: no-repeat; }