MyBB Community Forums

Full Version: Images broken in sidebar of Flatty-150-altv
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I set up a forum based on the Flatty150-altv theme.
I would like to add an image to the custom sidebar on the index page.

I am using this code in the index page > index file:
<div class="sidebar" style="float: right; width: 22%;">
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr>
<td class="thead sidebar">
<strong>Latest Story</strong>
<div class="float_right" style="padding-top: 5px;"><i class="fa fa-newspaper-o"></i></div>
</td>
</tr>
<tr>
<td class="trow1">
<span class="smalltext description">
<img src=”url(https://www.image.png)”
>
<br>4 Mar 2022
<br>
<br>Julie Scorah gives us a look into her work at the ACAR Clinic and how the pandemic has changed autism care
<br>
<br><a href="https://www.link.com"  target="_blank">Read more
</span>
</td>
</tr>
</table><br />

What I get is a broken file icon where the image should be.

What am I doing wrong here?

Thanks
<img src=”url(https://www.image.png)”
>

instead of this

you can write this

<img src=”https://www.image.com/image.png”>
That did the trick. Thanks. Also works without the " ".
<a href="https://www.link.com" target="_blank">Read more

should be this

<a href="https://www.link.com" target="_blank">Read more </a>