Hi, I am trying to add an image (JPG) into my FAQ Template after a question, but it is not appearing. I’ve tried adding the =src in front, it still isnt appearing. the theme is alchemy. I am also trying to add a hyperlink in the FAQ but it appears as the text not a link. I’ve saved the images in files already. If anyone can help would be greatly appreciated. below is files link and where i want it to appear.
I’m also trying to Bold the font in FAQ Template and this doesn’t work either.
https://cdn.shopify.com/s/files/1/0627/8276/7309/files/jpegpregnancyareinstructions.jpg?v=1688437684
Hi amber thanks for replying, this seems too hard for me to do myself
how can i get someone to do this for me?
To add an image (JPG) into your FAQ Template, you need to make sure you have the correct HTML syntax in your template. Here’s an example of how you can add an image using the
tag:
php
![Image description]()
Replace “path_to_your_image.jpg” with the actual file path or URL of your image. Make sure the image file is accessible from the location where you’re hosting your FAQ template.
Regarding the hyperlink, you can use the tag to create a link. Here’s an example:
phpCopy code
Link Text
Replace “your_link_url” with the actual URL you want to link to, and “Link Text” with the text you want to display as the hyperlink.
To bold the font in the FAQ template, you can use the HTML tag or the CSS font-weight property. Here’s an example:
Using tag:
css
Bold text
Using CSS font-weight property:
html
Bold text
Remember to apply the appropriate HTML tags or CSS styles to the specific elements in your FAQ template where you want the changes to take effect.