Hi guys,
Heres our home page: https://abodehaven.com/
I have two questions, firstly as you can see we have a “our top brands” which is a collection list but each logo has the name of each company and thus I don’t need the title of the collection to appear. I have tried using a logo list but the images don’t align anywhere near as well than using a collection list. Is there a way to remove the titles of the collections?
Also, I have a Klarna banner half way down the page. Is there anyway to make this banner stretch across the whole website page?
Thanks guys!
James
@jamesabodehaven add below code into theme.liquid before closing tag
{% if template.name == "index" %}
{% style %}
.list-collections-wrapper .collection-info__caption {
display: none;
}
{% endstyle %}
{% endif %}
Hi @jamesabodehaven
- you can add this code to your style.css file in your Online store > Themes > Edit code > Assets to remove name of collection
.index .list-collections-wrapper .collection-info__caption {
display: none !important;
}
- Please add this code to style.css file
#shopify-section-template--17986358378815__8e5d0dd6-7756-48fd-8b4f-31501fe38987 .image-element__wrap {
max-width: 90% !important;
}