We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more

How do add code to Dawn theme website?

Solved

How do add code to Dawn theme website?

rebeccasilva0
Tourist
8 0 2

Hello everyone,

 

I have this website that I am trying to add 3 images below the Our Mission block text section. I have already tried adding an image block section below it but my theme Dawn does not give me this option. As you can see in the image below.

 

These are the 3 images I want to add to the bottom of the Our Mission block text section and above the social media icons. What is the correct coding I need to add to be able to add these images to that section? where do I add the code?

 

Thank you so much!!!!

Rebecca

 

Screen Shot 2025-07-02 at 9.13.01 PM.png

 

dmca-protected.pngGoogle Safe Browsing.pngssl-certificate.png

 

 

Goal Getter
Accepted Solution (1)

yash141
Tourist
5 1 0

This is an accepted solution.

Hi @rebeccasilva0 

Open your Shopify Admin > Online Store > Themes > Actions > Edit Code > Search for footer.liquid.

Paste the following HTML block just above the </footer> tag (or wherever you want the images to appear in the footer):

Screenshot 2025-07-03 140957.png

 

<div class="our-mission-images">
  <img
    src="https://cdn.shopify.com/s/files/1/0636/5419/9478/files/ssl-certificate.png?v=1751527417"
    alt="SSL Certificate 1"
  >
  <img
    src="https://cdn.shopify.com/s/files/1/0636/5419/9478/files/ssl-certificate.png?v=1751527417"
    alt="SSL Certificate 2"
  >
  <img
    src="https://cdn.shopify.com/s/files/1/0636/5419/9478/files/ssl-certificate.png?v=1751527417"
    alt="SSL Certificate 3"
  >
</div>

 

 

Go to your CSS file (likely theme.css, theme.scss.liquid, or base.css) and add this at the bottom:

 

Screenshot 2025-07-03 141009.png

 

 

.our-mission-images {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.our-mission-images img {
  width: 30%;
  max-width: 300px;
  height: auto;
  margin: 10px;
}

 

 

Preview Your Changes

Click "Preview" or visit your site’s footer. You should see three images (SSL badge) horizontally aligned, responsive on all screen sizes — matching the design shown in your reference image:

 

yash141_1-1751532499617.png

 

Hope that helps

l love resolving problem

View solution in original post

Replies 4 (4)

MR115_ShopiDevs
Shopify Partner
32 5 4

Please add this code footer.liquid file

 <div class="our-mission-images">
  <img
    src="https://cdn.shopify.com/s/files/1/0636/5419/9478/files/ssl-certificate.png?v=1751527417"
    alt="Image 1"
    style="width:30%; max-width:300px; margin: 10px;"
  >
  <img
    src="https://cdn.shopify.com/s/files/1/0636/5419/9478/files/ssl-certificate.png?v=1751527417"
    alt="Image 2"
    style="width:30%; max-width:300px; margin: 10px;"
  >
  <img
    src="https://cdn.shopify.com/s/files/1/0636/5419/9478/files/ssl-certificate.png?v=1751527417"
    alt="Image 3"
    style="width:30%; max-width:300px; margin: 10px;"
  >
</div>


Replace src="image1.jpg" with the full URL
Add CSS files (e.g., base.css, theme.css)

.our-mission-images {
    text-align: center;
    margin: 20px 0;
    display: flex;
}

image-block-footer.png

Expected output
output-footer.png

EasyDisplay: Product Showcase - Easily display collections, related products, discounts, recently viewed items, and best sellers
Essential Grid Gallery - Create photo galleries, video galleries, portfolio galleries, product gallery, collection gallery and more.
Slider Revolution - Create sliders, theme sections, banners, videos, pages, advanced animation, and social feeds.

yash141
Tourist
5 1 0

This is an accepted solution.

Hi @rebeccasilva0 

Open your Shopify Admin > Online Store > Themes > Actions > Edit Code > Search for footer.liquid.

Paste the following HTML block just above the </footer> tag (or wherever you want the images to appear in the footer):

Screenshot 2025-07-03 140957.png

 

<div class="our-mission-images">
  <img
    src="https://cdn.shopify.com/s/files/1/0636/5419/9478/files/ssl-certificate.png?v=1751527417"
    alt="SSL Certificate 1"
  >
  <img
    src="https://cdn.shopify.com/s/files/1/0636/5419/9478/files/ssl-certificate.png?v=1751527417"
    alt="SSL Certificate 2"
  >
  <img
    src="https://cdn.shopify.com/s/files/1/0636/5419/9478/files/ssl-certificate.png?v=1751527417"
    alt="SSL Certificate 3"
  >
</div>

 

 

Go to your CSS file (likely theme.css, theme.scss.liquid, or base.css) and add this at the bottom:

 

Screenshot 2025-07-03 141009.png

 

 

.our-mission-images {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.our-mission-images img {
  width: 30%;
  max-width: 300px;
  height: auto;
  margin: 10px;
}

 

 

Preview Your Changes

Click "Preview" or visit your site’s footer. You should see three images (SSL badge) horizontally aligned, responsive on all screen sizes — matching the design shown in your reference image:

 

yash141_1-1751532499617.png

 

Hope that helps

l love resolving problem
rebeccasilva0
Tourist
8 0 2

Now, how do I make the social media icons colorful instead of black and white? Is there a way?

 

Screen Shot 2025-07-03 at 11.23.06 AM.png

Goal Getter
yash141
Tourist
5 1 0

@rebeccasilva0  can apply inline styles to add color directly in the code.

Go to:

Online Store → Themes → Edit Code → snippets/social-icons.liquid

Look for code like this:

 

  <li class="list-social__item">
      <a href="{{ settings.social_instagram_link }}" class="link list-social__link" >
        {%- render 'icon-instagram' -%}
        <span class="visually-hidden">{{ 'general.social.links.instagram' | t }}</span>
      </a>
    </li>

 


To make the icon colorful, add a style attribute to the <a> tag — right after the class. For example:

 

 <li class="list-social__item">
      <a href="{{ settings.social_instagram_link }}" class="link list-social__link" style="color:#e4405f;">
        {%- render 'icon-instagram' -%}
        <span class="visually-hidden">{{ 'general.social.links.instagram' | t }}</span>
      </a>
    </li>

 

Just replace #e4405f with the hex color code for the platform you’re customizing.

yash141_0-1751604317758.png

 



That’s it! Your social icons will now appear in color.
Hope this helps!


l love resolving problem