You could add this css to your theme:
@media screen and (min-width: 768px) {
.site-main ul.products li.product .g-product-title, .smm-mega-menu ul.products li.product .button, .smm-mega-menu ul.products li.product .g-product-title {
position: relative;
opacity: 1;
}
.site-main ul.products li.product .button {
display: none;
}
}
@mihaomejc thats fantastic. Can you tell me how to reverse the colours please.
Showing as white writing in a Black box would like black writing on transparent background
If it was possible to have the text “Click for more details” show on hover that would be wonderful.
Replace previous code with:
@media screen and (min-width: 768px) {
.site-main ul.products li.product .g-product-title, .smm-mega-menu ul.products li.product .button, .smm-mega-menu ul.products li.product .g-product-title {
position: relative;
opacity: 1;
}
ul.products li.product:not(.product-category) .g-product-title, ul.products
li.product:not(.product-category) .g-product-title h3, ul.products
li.product:not(.product-category) .g-product-title h2, ul.products
li.product:not(.product-category) .g-product-title .woocommerce-loop-category__title {
background-color: transparent;
color: #000;
}
ul.products li.product .g-product-title .price {
color: #000;
}
a:not(.button).woocommerce-LoopProduct-link.woocommerce-loop-product__link {
text-decoration: none;
}
}
-
This reply was modified 5 years, 4 months ago by
Miha Omejc. Reason: code style
(@mihaomejc) thank you so much this works beautifully. Your help is very much appreciated.
thank you 🙂