How to Get Rid Of Huge Page Title

The link is vulmar. com then click on featured collection

I would like to get rid of that big text because I already have the same one. This isnt an option in theme editor

1 Like

Hey @Vulmar

Follow these Steps:

  1. Go to Online Store
  2. Edit Code
  3. Find theme.liquid file
  4. Add the following code in the bottom of the file above </ body> tag
<style>
.page-width--narrow:has(.main-page-title) {
    display: none !important;
}
</style>

RESULT:


Hope that helps! If it did, a Like and Marking it as Solution goes a long way and helps others find the fix faster too.

Best,
Moeed

2 Likes

HI @Vulmar

Welcome to the community.

You can hide it with CSS like Moead is suggesting, but also, as an alternative, you can create a new page template if you have not already. Assign new template to page in admin. Then remove the main-page in Edit code for that page json file in templates.

So it looks similar to this,

{
  "sections": {
    "featured_collection_bTBpEg": {
      "type": "featured-collection",
      "name": "t:sections.featured-collection.presets.name",
      "settings": {
        "collection": "",
        "products_to_show": 4,
        "title": "Featured collection",
        "heading_size": "h1",
        "description": "",
        "show_description": false,
        "description_style": "body",
        "columns_desktop": 4,
        "enable_desktop_slider": false,
        "full_width": false,
        "show_view_all": true,
        "view_all_style": "solid",
        "color_scheme": "",
        "image_ratio": "adapt",
        "image_shape": "default",
        "show_secondary_image": false,
        "show_vendor": false,
        "show_rating": false,
        "quick_add": "none",
        "columns_mobile": "2",
        "swipe_on_mobile": false,
        "padding_top": 36,
        "padding_bottom": 36
      }
    }
  },
  "order": [
    "featured_collection_bTBpEg"
  ]
}

do not use this code, just an example with the section you are using.

1 Like

Easy and is the right solution

Check this out