No content to show
User Activity
08-28-2023
so weird, To only remove the text, you can use Jquery code <script>
$("#cart-icon-bubble").contents().each(function()
{
if (this.nodeType === Node.TEXT_NODE) this.remove();
});
</script>
It should be outside of media screen incorrect @media screen and (min-width: 990px) {
.product--large:not(.product--no-media) .product__info-wrapper, .product--large:not(.product--no-media) .product__media-wrapper {
max-width: calc(50% - var(--grid...
Hi Simon, Can you paste the code at the bottom of section-main-product.css after .product .price .badge {
background-color: #000;
color: #fff;
}
Hi Simon, Because you only writing the style for desktop screen. Use this code- you can add this code in any style file. .product .price .badge {
background-color: #000;
color: #fff;
} or add this style on section-main-product.css file in as...
08-08-2023
If this solve your problem then can you please mark it as solved. Thank you
Please provide store urls
08-08-2023
Hi Tim,Add this style .site-nav__link svg path {
color: #fff;
}
08-07-2023
It is font-weight not font-style. please see the code <style>
.js .site-nav.mega-menu li.gm-level-0 a {
letter-spacing: 7px;
font-weight:bold !important;
}
</style>
08-02-2023
Hi Search with class name may be the line number are not accurate on that file. .hero__text-content.certical-bottom and edit them.
Yes slick slider have autoplay properties. In above code urls, if you just add - autoplay:true, autoplaySpeed:1500 (you can customize the speed as your wish)
Reference this code - https://codepen.io/monkeytempal/pen/eYgpXPOin desktop version it shows the boxes and in mobile view it become slider. Hope this is helpful.
08-02-2023
okay try this<style>
.js .site-nav.mega-menu li.gm-level-0 a {
letter-spacing: 7px;
}
</style>
08-02-2023
Hi,do want it right like a screenshot or you mean left below the text. Any way please see the code below In theme.css - update code in line number - 9560 and 12401. if you want it left then simple type left instead of right in below code and to match...
08-02-2023
Yes, May be you can. try this.js .gm-menu-installed .gm-item.gm-level-0 > .gm-target > .gm-text {
font-family: 'PT Sans' !important;
}
08-02-2023
For mobile view - take text and logo and make one png/jpg image and add it. To do that use media query something like this/* On screens that are 600px or less, replace the desktop logo with mobile logo */
@media screen and (max-width: 600px) {
.l...
My Accepted Solutions
Subject | Views | Posted |
---|---|---|
203 | 08-08-2023 12:44 PM | |
664 | 08-02-2023 11:31 AM | |
680 | 08-02-2023 10:33 AM | |
113 | 08-02-2023 10:15 AM | |
218 | 07-24-2023 03:51 PM |