Images in FAQ

Adding an upload image/video tab where we can manually select a source to display would be much more user friendly. At the moment, If I want to display both an image or a youtube video - I have to prioritise the link for one to show and then the other appears as code at the bottom which looks awful.

1 Like

Hi @Chris6, I’ve checked your widget and this is what I’d advise you do to fix the image:

First of all, the Display Images option is enabled in your widget, meaning you don’t need to add images via HTML tags. Instead, simply adding a link to the text will work.

That said, you just need to remove the <a></a> tags and leave the image link as is, and it will fix the appearance. Just in case, here’s the updated code for the first Q&A in your widget:

<div>
  <a
    target="_blank"
    href="https://drive.google.com/file/d/18hPyRKvMW_n9df72eKARs14xCn8Hv1Tv/view?usp=drive_link"
    >Download instructions</a
  ><br /><br /><a
    target="_blank"
    href="https://www.youtube.com/shorts/x7ZqDFNZMio"
    >Watch a video</a
  >
</div>
<br />
<div>
  https://cdn11.bigcommerce.com/s-8hl787wvsy/images/stencil/1280x1280/products/4507/25983/pre-order-pershore-breeze-campervan-canopy-pay-pound10-today-and-balance-before-delivery-olpro__88020.1725974482.png?c=1
</div>

Besides, there is a special <img> in the editor for adding images, <a> tag is used only for links, so I don’t recommend using it for images :slight_smile:

Let me know it it helps!

1 Like