- "The chic chair that's perfect for entertaining." How do I change that text?
- I want to change the email address and phone number that are displayed in the top right corner.
- I find that the text in my blog posts and on my pages is a wee bit too small. How can I increase the text size?
- How can I add text to the grey box in my footer?
- I want to completely remove that gray box that sits near the bottom of all of my pages.
- What do I put here "
- Can I make the title of my featured product on my homepage smaller?
- I want to change the text size of my heading on all pages — and not just the home page.
- I want to remove the Recent Articles sidebar from my pages (everything that sits under /pages/). Can I do this?
- I want to edit the text Recent Articles in my sidebar.
- I want to point out specific products as related for each of my product. Is there a way to use the slider to accomodate my need for this?
- I want to reduce the size of the price on all my pages. It's too big.
- I would like to change the color of my buttons.
- I would like to change the text on my buttons.
- How do I use the Newsletter feature shown at the bottom right of my pages?

QUESTION 1
"The chic chair that's perfect for entertaining." How do I change that text?
ANSWER
To edit the text, you will need to edit your theme settings.
Go to your Theme Settings page:

On the Theme Settings page, look under Text Snippets for the 'Homepage Tagline'-labeled text field. You may have to click on the Text Snippets heading to expand this section.
Edit the text, then click on the Apply changes button that's below.

I am done here. Bring me back up ↑
QUESTION 2
I want to change the email address and phone number that are displayed in the top right corner.
ANSWER
You will need to edit your theme settings.
Go to your Theme Settings page:

On the Theme Settings page, look under Text Snippets for these form fields:
- Phone Number
- Email Address
Edit the text. If you do not want to share your phone number, delete the text — leave the field blank. Same with the email address.
When you're done, click on the Apply changes button.
I am done here. Bring me back up ↑
QUESTION 3
I find that the text in my blog posts and on my pages is a wee bit too small. How can I increase the text size?
ANSWER
Yes, you can. You will need to edit your theme stylesheet for this.
Go to your Template Editor page:

On the Template Editor page, look under Theme Assets for theme.css.liquid.
Click on theme.css.liquid to open that file in the online code editor.
At the bottom of the file, add this:
div#page p, div.entry p, div.comment p { font-size:14px; }
Save.
For more information on theme editing, read our design policy as well as our theme customization guide.
I am done here. Bring me back up ↑
QUESTION 4
How can I add text to the grey box in my footer?
ANSWER
That footer with the gray background is divided into three sections:

-
The section on the left is occupied by the abridged content of the page you have that has a handle equal to
frontpage. You can add this page under Blogs & Pages in your admin. If you already have a page and you want its content to be used there, instead of what you have now, edit the handle of that page so that it becomesfrontpage. -
The section in the middle shows the abridged content of the latest (most recent) blog entry of the blog that has a handle equal to
news. Again, you'll be able to edit this content under Blogs & Pages. -
Finally, the section on the right is occupied by the abridged content of the page you have that has a handle equal to
about-us. You can add this page under Blogs & Pages in your admin. If you already have a page and you want its content to be used there, instead of what you have now, edit the handle of that page so that it becomesabout-us.
I am done here. Bring me back up ↑
QUESTION 5
I want to remove that gray box that sits near the bottom of all of my pages.
ANSWER
To remove the gray box, you will need to edit the file theme.liquid in your theme.
Go to Theme → Template Editor:

On the Template Editor page, look under Layouts for theme.liquid. (The .liquid extension is omitted in that view.)
Click on 'theme' to open theme.liquid in the online code editor.
Locate this code. It's an HTML comment:
<!-- START OVERVIEW -->
On the line before this comment, add this:
{% comment %}
Then locate this code:
<!-- END OVERVIEW -->
On the line after this HTML comment, add this:
{% endcomment %}
Save your template.
For more information on theme editing, read our design policy as well as our theme customization guide.
QUESTION 6
What do I put here "Create a collection with the handle of related and add some products to it for them to be displayed here"?
ANSWER
Go to your Collections page and click on the 'Add Custom Collection' link:

Then, create a collection with the title Related:

Once that collection has been created, add products to it.
I am done here. Bring me back up ↑
QUESTION 7
Can I make the title of my featured product on my homepage smaller?
ANSWER
Yes, you can. You will need to edit your theme stylesheet for this.
Go to your Template Editor page:

On the Template Editor page, look under Theme Assets for theme.css.liquid.
Click on theme.css.liquid to open that file in the online code editor.
At the bottom of the file, add this:
div#showcase h1 { font-size:50px; }
The original size is 60px. You may want to try an other value than 50px. Save your changes and refresh your web page which you will have leaved open in another browser tab to preview the results.
For more information on theme editing, read our design policy as well as our theme customization guide.
I am done here. Bring me back up ↑
QUESTION 8
I want to change the text size of my heading on all pages — and not just the home page.
ANSWER
You will need to edit your theme stylesheet for this.
Go to your Template Editor page:

On the Template Editor page, look under Theme Assets for theme.css.liquid.
Click on theme.css.liquid to open that file in the online code editor.
To change the size of the heading on all pages, copy the following at the bottom of your stylesheet:
div#collection div#excerpt h1.title,
div#product h1,
div#cart h1,
div#missing h1,
div#page h1.title,
div#blog h1.title,
div#article h1.title,
div#search h1 {
font-size:45px;
}
Adjust the 45px value to your liking. The original size is 60px. Save your changes and refresh your web page which you will have leaved open in another browser tab to preview the results.
For more information on theme editing, read our design policy as well as our theme customization guide.
I am done here. Bring me back up ↑
QUESTION 9
I want to remove the Recent Articles sidebar from my pages (everything that sits under /pages/). Can I do this?
ANSWER
Yes, you can. You will need to edit your theme for this.
Go to your Template Editor page:

On the Template Editor page, look under Layouts for theme.liquid.
Look for this code:
{% if template == "page" or template == "blog" or template == "article" %}
Replace it with that code:
{% if template == "blog" or template == "article" %}
Save.
I am done here. Bring me back up ↑
QUESTION 10
I want to edit the text Recent Articles in my sidebar.
ANSWER
You will need to edit your theme for this.
Go to your Template Editor page:

On the Template Editor page, look under Layouts for theme.liquid.
Look for this code in theme.liquid:
<h3>Recent Articles</h3>
Edit only the text. So that the code becomes for example:
<h3>Latest News</h3>
Save.
I am done here. Bring me back up ↑
QUESTION 11
I want to point out specific products as related for each of my product. Is there a way to use the slider to accomodate my need for this?
ANSWER
Yes. Look here: http://forums.shopify.com/categories/2/posts/38727
I am done here. Bring me back up ↑
QUESTION 12
I want to reduce the size of the price on all my pages. It's too big.
ANSWER
You will need to edit your theme stylesheet for this.
Go to your Template Editor page:

On the Template Editor page, look under Theme Assets for theme.css.liquid.
Click on theme.css.liquid to open that file in the online code editor.
Add the following at the bottom of your stylesheet:
div#buy h2, div#buy h6 { font-size:36px; }
Adjust the 36px value to your liking. 'px' stands for pixels. Save your changes and refresh your web page which you will have leaved open in another browser tab to preview the results.
For more information on theme editing, read our design policy as well as our theme customization guide.
I am done here. Bring me back up ↑
QUESTION 13
I would like to change the color of my buttons.
ANSWER
Go to Theme → Template Editor and locate the theme.css.liquid file under Theme Assets. Edit that file's CSS to change the color of your buttons.
The buttons don't use any images. They use HTML and CSS that you can edit.
I am done here. Bring me back up ↑
QUESTION 14
I would like to change the text on my buttons. I need to translate the text or just change the wording.
ANSWER
Go to Theme → Template Editor.
Edit the template that contains the button. The buttons don't use any images. They use HTML that you can edit.
I am done here. Bring me back up ↑
QUESTION 15
How do I use the Newsletter feature shown at the bottom right of my pages?
ANSWER
This feature requires an account with MailChimp.
Follow these quick steps:
1- In your Mailchimp account, go to your Lists page:

2- Select a list, or create a new one. People who subscribe to your newsletter will be added to that list.
3- Click on the "forms" link:

4- Move over to the "for your website" page:

5- Click on the 'Signup Form Embed Code' link at the top of the list:

6- On the right-hand side, tick the 'include all fields' radio button:

7- Then, scroll down, and under 'copy/paste into your site', look for <form action=" in the embed code, and select the value of the action attribute, like so:

8- Copy that to your clipboard.
9- In your shop admin, go to Theme → Theme Settings

10- Locate the Newsletter section in your theme settings form — it's the last one.
11- Paste the content of your clipboard into the Action text box. The 3 other text fields should be set to EMAIL, FNAME and LNAME respectively:
12- Click on the 'Apply changes' button to save your changes.
