No content to show
User Activity
12-29-2024
Add this code in your base.css file: header {
margin: 0 !important;
min-width: 100% !important;
}
@media (min-width: 999px) {
nav.header__inline-menu {
display: flex;
justify-content: center;
}
} Result:
12-25-2024
I didn't understand this part: "not show the titles on the collection list but still show them at featured collection"Something like this?Add this code in your base.css file:.collection-list__item .card__content {
opacity: 1 !important
}
h3.card__h...
Add this code in your base.css file:h2#FooterCountryLabel {
display: none;
}
@media (min-width: 750px) {
.footer__column.footer__localization.isolate {
justify-content: flex-end !important;
}
}
form#FooterCountryForm .disclosure button {
...
Add this code in your base.css file:.product-item__image-wrapper.product-item__image-wrapper--multiple::after {
content: "";
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 100%;
background-color: #00000017;
z-index: 999;...
12-22-2024
Can you share the URL of your store with me so I can give you the code directly?
10-30-2024
1º Delete top: 20px (base.css file line number 1209):2º Add this code in your section-image-banner.css file:.banner__box.content-container.content-container--full-width-mobile.color-scheme-d8453948-b8a0-4cd0-87c7-d6bb4d001362.gradient {
transform: ...
No problem! After many attempts I found the solution. Updated Code:<style>
/* Prevent horizontal scrolling on mobile devices */
@media (max-width: 767px) {
body {
overflow-x: hidden !important;
}
div#trustpilot-widget-trustbox-0...
Add this code in your theme.liquid file (Inside the <head> section):<style>
/* Prevent horizontal scrolling on mobile devices */
@media (max-width: 767px) {
body {
overflow-x: hidden;
}
}
</style>
10-30-2024
Add this code in your theme.css file:@media (max-width: 767px) {
.text-with-icons__text-wrapper .prose p {
text-align: left !important;
}
}Result:
Custom Liquid: <div class="afterpay-banner">
<!-- Text -->
<span class="afterpay-banner-text">Play Now. Pay Later.</span>
<!-- Afterpay Logo -->
<img src="https://businessgrowth.afterpay.com/rs/424-IAB-218/images/A...
10-29-2024
Of course! <a href="{{ product.url | within: collection }}" class="grid-product__meta">
<span class="grid-product__title">{{ product.title }}</span>
</a>
<!-- Display "Sold Out" text if the product is unavailable -->
{% unless product.available ...
You can try adding this code:{%- if product.metafields.custom.anbefalte_produkter.value != blank -%}
<div class="related-products-wrapper">
{% assign related_products = product.metafields.custom.anbefalte_produkter.value %}
{% if related_products...
10-28-2024
Add this code in your base.css file:div#cart-notification {
background-color: black;
border: 1px solid white;
}Before VS After:
Add this code in your app.css file: .content-side-inner a.btn.small.pill.alt {
color: white !important;
background-color: #F7B11E !important;
border-color: transparent !important;
}
.small-6 {
max-width: 25% !important;
}
.products.row {
...
10-28-2024
Add the following code below the product title:<!-- Show product price -->
<div class="product-price">
{% if product.compare_at_price > product.price %}
<span class="original-price">
<span>{{ product.compare_at_price | money }}</span>
...
My Accepted Solutions
Subject | Views | Posted |
---|---|---|
279 | 12-22-2024 07:47 PM | |
313 | 10-30-2024 08:22 AM | |
552 | 10-30-2024 08:10 AM | |
758 | 10-30-2024 07:13 AM | |
839 | 10-28-2024 05:36 AM |