Design Credit in Footer

Solved

Design Credit in Footer

Aep59
Excursionist
15 2 0

How can I get rid of the Powered by Shopify in the footer of my dawn theme, and leave the copyright, store name and add designed by credit on the same line, centered at the bottom.  See below:

 

c 2024 (name). Web Design by (name of designer.com)

 

Accepted Solution (1)

shahrozbabar5
Shopify Partner
282 22 31

This is an accepted solution.

To remove the "Powered by Shopify" text from the footer of your Dawn theme and adjust the footer content to display copyright, store name, and designed by credit on the same line, follow these steps:

1. **Log in to your Shopify Admin:**
Go to your Shopify admin panel.

2. **Navigate to Themes:**
On the left sidebar, click on "Online Store" and then select "Themes."

3. **Edit Code:**
Find the Dawn theme and click on "Actions" and then "Edit code."

4. **Locate Footer Code:**
In the code editor, locate the `footer.liquid` file. This is usually found in the `Sections` folder.

5. **Remove "Powered by Shopify":**
Search for the line that includes "Powered by Shopify" and remove it. This line usually looks something like this:

{{ powered_by_link }}
```
Delete this line to remove the "Powered by Shopify" text.

6. **Customize Footer Content:**
Find the section where the copyright and store name are displayed. It might look like this:

<p class="site-footer__copyright">{{ 'general.copyright' | t }} {{ 'general.shop_name' | t }}</p>
```
Modify it to include your designed by credit on the same line. Here is an example of how to do it:

<p class="site-footer__copyright">

&copy; {{ 'now' | date: '%Y' }} {{ shop.name }}. All rights reserved. Designed by <a href="YOUR_DESIGNER_LINK" target="_blank">YOUR_DESIGNER_NAME</a>.
</p>
```

7. **Center the Footer Content:**

To center the footer content, add some CSS to the theme's stylesheet. Locate the `theme.css` or `styles.css` file in the `Assets` folder and add the following CSS:

```css
.site-footer__copyright {
text-align: center;
}
```

8. **Save Your Changes:**
Click "Save" to apply your changes.

By following these steps, you'll remove the "Powered by Shopify" text and center the remaining footer content on the same line. Make sure to replace `"YOUR_DESIGNER_LINK"` and `"YOUR_DESIGNER_NAME"` with the appropriate URL and name.

Need a Shopify Expert and Specialist? Let's chat on WhatsApp +923046983349 and bring your vision to life!


Custom Shopify Store Design | Premium Themes | Variant Apps Expert


Your Coffee Tip a seamless synergy. ❤️

View solution in original post

Reply 1 (1)

shahrozbabar5
Shopify Partner
282 22 31

This is an accepted solution.

To remove the "Powered by Shopify" text from the footer of your Dawn theme and adjust the footer content to display copyright, store name, and designed by credit on the same line, follow these steps:

1. **Log in to your Shopify Admin:**
Go to your Shopify admin panel.

2. **Navigate to Themes:**
On the left sidebar, click on "Online Store" and then select "Themes."

3. **Edit Code:**
Find the Dawn theme and click on "Actions" and then "Edit code."

4. **Locate Footer Code:**
In the code editor, locate the `footer.liquid` file. This is usually found in the `Sections` folder.

5. **Remove "Powered by Shopify":**
Search for the line that includes "Powered by Shopify" and remove it. This line usually looks something like this:

{{ powered_by_link }}
```
Delete this line to remove the "Powered by Shopify" text.

6. **Customize Footer Content:**
Find the section where the copyright and store name are displayed. It might look like this:

<p class="site-footer__copyright">{{ 'general.copyright' | t }} {{ 'general.shop_name' | t }}</p>
```
Modify it to include your designed by credit on the same line. Here is an example of how to do it:

<p class="site-footer__copyright">

&copy; {{ 'now' | date: '%Y' }} {{ shop.name }}. All rights reserved. Designed by <a href="YOUR_DESIGNER_LINK" target="_blank">YOUR_DESIGNER_NAME</a>.
</p>
```

7. **Center the Footer Content:**

To center the footer content, add some CSS to the theme's stylesheet. Locate the `theme.css` or `styles.css` file in the `Assets` folder and add the following CSS:

```css
.site-footer__copyright {
text-align: center;
}
```

8. **Save Your Changes:**
Click "Save" to apply your changes.

By following these steps, you'll remove the "Powered by Shopify" text and center the remaining footer content on the same line. Make sure to replace `"YOUR_DESIGNER_LINK"` and `"YOUR_DESIGNER_NAME"` with the appropriate URL and name.

Need a Shopify Expert and Specialist? Let's chat on WhatsApp +923046983349 and bring your vision to life!


Custom Shopify Store Design | Premium Themes | Variant Apps Expert


Your Coffee Tip a seamless synergy. ❤️