[Archived - MistyRaynaFerox] how to ad photo to the product page

Posted about 2 months ago by Community

Post a topic
  • Topic is Locked
Un Answered
C
Community Admin

Posted by “MistyRaynaFerox” on July 22, 2024.

[Archived]

0 Votes


2 Comments

Sorted by
C

Community posted about 2 months ago Admin

Posted by “BunnyCakes” on July 29, 2024.

[Archived]

Another great way to make product pages is using Gaf Codes website. There is many easy made codes to copy and paste. https://gaf210.gafcodes.com/codes/creator-tools/productpagegen/product-page-layout-maker

0 Votes

C

Community posted about 2 months ago Admin

Posted by “Drosselmeyer” on July 23, 2024.

[Archived]

Are you asking about how to add an image to the description? If so that would be all HTML. There are a LOT of HTML resources online. My favorite go to site is W3Schools. When making your custom description you don't need to include <!DOCTYPE html> <html> and you only need <head> when defining CSS formatting <style>. When including <head> it is good practice encapsulate the <body> of your HTML. Something like this:

 

<head>

<style>

.city {

  background-color: tomato;

 color: white;

 border: 2px solid black;

 margin: 20px;

 padding: 20px;

}

</style>

</head>

<body>

<div class="city">

  <h2>London</h2>

  <p>London is the capital of England.</p>

</div>

</body>

 

To add an image, use the image tag <img> and point the src to a static URL such as this:https://en.wikipedia.org/wiki/Cat#/media/File:Cat_August_2010-4.jpg

0 Votes