> ## Knowledge Base Index
> Fetch the complete knowledge base index at: https://support.easystore.co/sitemap.xml
> Use this file to discover available pages before exploring further.
> Pure-Markdown content can be obtained by appending a '.md' suffix to the content URLs listed in the sitemap (without the trailing slash).

# Navigation side bar & title alignment for collection page

###### In this article
1. Remove navigation side bar for collection page
2. Rename the word 'Featured' 
3. Title alignment for collection page (Center)
4. Remove Sort By for mobile view
5. Rename the collection word at Collection page
6. Uppercase for 'All Products' title
    
**⚠️** Kindly take note :
*   Above all code editing, you will need to re-edit the code again if you switch to a new theme template    
*   We do not allow to change or edit the code for the **checkout page** (which include shipping & payment method) due to security reasons
---
## 1. Remove navigation side bar for collection page

![](https://storage.crisp.chat/users/helpdesk/website/b34797d9594d3000/t-2023-10-04t201852045_p3anc1.png)

**Step 1:** Go to [EasyStore Admin](https://admin.easystore.co/) > Channels > Online Store > Theme > Edit source > templates **> collection.liquid**

**Step 2** : Search for **{% if template == 'collection' %}** around line 30 and remove the highlighted code

![](https://storage.crisp.chat/users/helpdesk/website/ecc101abe0e1a000/691baf78-bc47-4faf-b6db-c04382_zk9g8x.png)

Don't forget to remove **large--three-quarters** as well

![](https://storage.crisp.chat/users/helpdesk/website/b34797d9594d3000/t-2023-10-04t203528901_uw24cs.png)

**Step 3** : Click Save > Done
---
## 2. Rename the word 'Featured'

**Step 1:** Go to [EasyStore Admin](https://admin.easystore.co/) > Channels > Online Store > Theme > Edit source > templates **> collection-sorting.liquid**

**Step 2** : replace `{{ 'collections.sorting.featured' | t }}` with new text

![](https://storage.crisp.chat/users/helpdesk/website/b34797d9594d3000/t-2023-10-04t203615850_g0sav5.png)

**Step 3** : Save and you are done!

This would be the end result!

![](https://storage.crisp.chat/users/helpdesk/website/b34797d9594d3000/t-2023-10-04t203818948_1ubw57a.png)
---
## 3. Title alignment for collection page (Center)

**Step 1:** Go to [EasyStore Admin](https://admin.easystore.co/) > Channels > Online Store > Theme > Edit source > templates **> collection.liquid**

**Step 2** : Move the highlighted code

![](https://storage.crisp.chat/users/helpdesk/website/d404427ba83a9800/539f8ef6-8258-47d0-9f0b-65217b_9lcdu6.png)

to below `large--three-quarters`

![](https://storage.crisp.chat/users/helpdesk/website/dffd7fdb15530000/3bbcb4a5-7b6d-462c-a371-116cba_1ljqv52.png)

**Step** 3 : Remove below code from the highlighted code earlier in order to make it center

` {% if settings.collections_tags_enable or settings.collections_sort_enable %} section-header__title--left{% endif %}`

![](https://storage.crisp.chat/users/helpdesk/website/b34797d9594d3000/t-2023-10-04t203919514_g08fpk.png)

**Step 4** : Save and you're done!

![](https://storage.crisp.chat/users/helpdesk/website/b34797d9594d3000/b_frxzpn.png)
---
## 4. Remove Sort By for mobile view

![](https://storage.crisp.chat/users/helpdesk/website/b34797d9594d3000/b-1_1q8n58t.png)

**Step 1:** Go to [EasyStore Admin](https://admin.easystore.co/) > Channels > Online Store > Theme > Edit source > templates **> collection.liquid**

**Step 2 :** Look for **collection-sorting** and add **hide** after large--hide

![](https://storage.crisp.chat/users/helpdesk/website/b34797d9594d3000/b-2_1tdqdbu.png)

**Step 3 :** Save
---
## 5. Rename the collection word at Collection page

![](https://storage.crisp.chat/users/helpdesk/website/b34797d9594d3000/b-3_5sssoo.png)

**Step 1:** Go to [EasyStore Admin](https://admin.easystore.co/) > Channels > Online Store > Theme > Edit source > templates **> collection.liquid**

**Step 2 :** Look for **collection-sorting** and change the title here

![](https://storage.crisp.chat/users/helpdesk/website/b34797d9594d3000/b-8_twhvtp.png)

**Step 3 :** Save

![](https://storage.crisp.chat/users/helpdesk/website/b34797d9594d3000/b-7_105nm8w.png)
---
## 6. Uppercase for 'All Products' title

**Step 1:** Go to [EasyStore Admin](https://admin.easystore.co/) > Channels > Online Store > Theme > Edit source > templates **> collection.liquid**

**Step 2 :** Look for **collection.title** and add `| upcase`

![](https://storage.crisp.chat/users/helpdesk/website/b34797d9594d3000/b-6_1mzojl8.png)

**Step 3** : Save

### Before :

![](https://storage.crisp.chat/users/helpdesk/website/b34797d9594d3000/b-5_utt0rf.png)

### After :

![](https://storage.crisp.chat/users/helpdesk/website/b34797d9594d3000/b-4_ndeek5.png)