FROM CACHE - nl_header
Deze community is overgestapt naar peer-to-peer ondersteuning. Shopify Support zal deze community niet langer ondersteunen. We raden je aan om contact op te nemen met andere merchants en partners voor hulp en om je ervaringen te delen! Blijf alles melden dat in strijd is met onze Gedragscode of content die je verwijderd wilt hebben.

How do I remove the similar price tag SALE on the hover photo?

Opgelost

How do I remove the similar price tag SALE on the hover photo?

lepuffcases
Toerist
16 0 1

Hello community,

I use a price comparison where I show the old and new price. At the top left is the standard label SALE. I don't want it visible on the 1st photo and hover photo.

 

On the first photo I managed to remove it with the same color background theme. But on the hover photo part of the label remains visible. Does anyone have an idea how I can remove it?

 

Hover picture.png

 

 

store:lepuffcases.com

2 GEACCEPTEERDE OPLOSSINGEN

BSSCommerce-B2B
Shopify Partner
1723 513 576

Geslaagd.

@lepuffcases , Try putting this code at the very bottom of the base.css file

.card__badge.top.left {
  display: none!important;
}

B2B Wholesale Solution: Streamline your B2B operation with advanced features like wholesale registration forms, custom pricing.


B2B Portal, Quote, Net 30: Speed up purchasing and streamline your quotation process with advanced features like quick order, request for quote.


B2B Lock Password Protect: Easily control access to pages, products, and pricing with robust features.


BSS Commerce - Full-service eCommerce Agency I Use Shopify for 1$ in the first month now

Bekijk de oplossing in de community in het oorspronkelijke bericht

BSSCommerce-B2B
Shopify Partner
1723 513 576

Geslaagd.

@lepuffcases , to make your announcement bar move more slowly follow these steps

1. Change this code in your announcement-bar.liquid like this

BSSCommerceB2B_0-1727371903220.png

2. Put this code to the end of base.css file

.marqueeText {
  height: 50px;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.marqueeText span {
  text-align: center;
  position: absolute;
  top: 0;
  width: 250%;
  height: 100%;
  margin: 0;
  line-height: 50px;

  /* Starting position */
  -moz-transform: translateX(100%);
  -webkit-transform: translateX(100%);
  transform: translateX(100%);

  /* Apply animation */
  -moz-animation: marqueeText 30s linear infinite;
  -webkit-animation: marqueeText 30s linear infinite;
  animation: marqueeText 30s linear infinite;
}

.marqueeText span a {
  margin-right: 50px;
}

/* Define the animation */
@-moz-keyframes marqueeText {
  0% {
    -moz-transform: translateX(100%);
  }
  5% {
    -moz-transform: translateX(20%);
  }
  100% {
    -moz-transform: translateX(-120%);
  }
}

@-webkit-keyframes marqueeText {
  0% {
    -webkit-transform: translateX(100%);
  }
  5% {
    -webkit-transform: translateX(20%);
  }
  100% {
    -webkit-transform: translateX(-120%);
  }
}

@keyframes marqueeText {
  0% {
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  5% {
    -moz-transform: translateX(20%);
    -webkit-transform: translateX(20%);
    transform: translateX(20%);
  }
  100% {
    -moz-transform: translateX(-120%);
    -webkit-transform: translateX(-120%);
    transform: translateX(-120%);
  }
}
@media (min-width: 768px) {
  .marqueeText span {
    -moz-animation: marqueeText 60s linear infinite;
    -webkit-animation: marqueeText 60s linear infinite;
    animation: marqueeText 60s linear infinite;
    width: 100%;
  }
}

B2B Wholesale Solution: Streamline your B2B operation with advanced features like wholesale registration forms, custom pricing.


B2B Portal, Quote, Net 30: Speed up purchasing and streamline your quotation process with advanced features like quick order, request for quote.


B2B Lock Password Protect: Easily control access to pages, products, and pricing with robust features.


BSS Commerce - Full-service eCommerce Agency I Use Shopify for 1$ in the first month now

Bekijk de oplossing in de community in het oorspronkelijke bericht

2 ANTWOORDEN 2

BSSCommerce-B2B
Shopify Partner
1723 513 576

Geslaagd.

@lepuffcases , Try putting this code at the very bottom of the base.css file

.card__badge.top.left {
  display: none!important;
}

B2B Wholesale Solution: Streamline your B2B operation with advanced features like wholesale registration forms, custom pricing.


B2B Portal, Quote, Net 30: Speed up purchasing and streamline your quotation process with advanced features like quick order, request for quote.


B2B Lock Password Protect: Easily control access to pages, products, and pricing with robust features.


BSS Commerce - Full-service eCommerce Agency I Use Shopify for 1$ in the first month now

BSSCommerce-B2B
Shopify Partner
1723 513 576

Geslaagd.

@lepuffcases , to make your announcement bar move more slowly follow these steps

1. Change this code in your announcement-bar.liquid like this

BSSCommerceB2B_0-1727371903220.png

2. Put this code to the end of base.css file

.marqueeText {
  height: 50px;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.marqueeText span {
  text-align: center;
  position: absolute;
  top: 0;
  width: 250%;
  height: 100%;
  margin: 0;
  line-height: 50px;

  /* Starting position */
  -moz-transform: translateX(100%);
  -webkit-transform: translateX(100%);
  transform: translateX(100%);

  /* Apply animation */
  -moz-animation: marqueeText 30s linear infinite;
  -webkit-animation: marqueeText 30s linear infinite;
  animation: marqueeText 30s linear infinite;
}

.marqueeText span a {
  margin-right: 50px;
}

/* Define the animation */
@-moz-keyframes marqueeText {
  0% {
    -moz-transform: translateX(100%);
  }
  5% {
    -moz-transform: translateX(20%);
  }
  100% {
    -moz-transform: translateX(-120%);
  }
}

@-webkit-keyframes marqueeText {
  0% {
    -webkit-transform: translateX(100%);
  }
  5% {
    -webkit-transform: translateX(20%);
  }
  100% {
    -webkit-transform: translateX(-120%);
  }
}

@keyframes marqueeText {
  0% {
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  5% {
    -moz-transform: translateX(20%);
    -webkit-transform: translateX(20%);
    transform: translateX(20%);
  }
  100% {
    -moz-transform: translateX(-120%);
    -webkit-transform: translateX(-120%);
    transform: translateX(-120%);
  }
}
@media (min-width: 768px) {
  .marqueeText span {
    -moz-animation: marqueeText 60s linear infinite;
    -webkit-animation: marqueeText 60s linear infinite;
    animation: marqueeText 60s linear infinite;
    width: 100%;
  }
}

B2B Wholesale Solution: Streamline your B2B operation with advanced features like wholesale registration forms, custom pricing.


B2B Portal, Quote, Net 30: Speed up purchasing and streamline your quotation process with advanced features like quick order, request for quote.


B2B Lock Password Protect: Easily control access to pages, products, and pricing with robust features.


BSS Commerce - Full-service eCommerce Agency I Use Shopify for 1$ in the first month now