plantshop203
Member-
Posts
23 -
Joined
-
Last visited
plantshop203's Achievements
-
Thanks @tuanphan!!! Worked great.
- 22 replies
-
- css
- custom-css
-
(and 1 more)
Tagged with:
-
- 22 replies
-
- css
- custom-css
-
(and 1 more)
Tagged with:
-
hi @tuanphan I turned on the sale price for this product. Thank you!
- 22 replies
-
- css
- custom-css
-
(and 1 more)
Tagged with:
-
@tuanphan theoldyew.com/shop
- 22 replies
-
- css
- custom-css
-
(and 1 more)
Tagged with:
-
Hi @tuanphan, this code isn't working for my site. It changes all the price colors. Is there another CSS target?
- 22 replies
-
- css
- custom-css
-
(and 1 more)
Tagged with:
-
Hi @paul2009. I am using your code to tag products that ship free (theoldyew.com/shop) and loving it. My question is: is it possible to have multiple of these tags? Say, "free shipping", "50% off" and "great gift!" all at once? I haven't been able to make more than one work at once.
-
yh3 reacted to a post in a topic: Hover Effect for Product Images in Shop Pages
-
creedon reacted to a post in a topic: Hover Effect for Product Images in Shop Pages
-
Hover Effect for Product Images in Shop Pages
plantshop203 replied to robertwyatt's topic in Commerce
I was able to figure it out! For anyone who wants to do something like this, here's the code I used: //product hover border .grid-item:hover { position: absolute; width: 100%; height: 100%; content: ''; top: 0; left: 0; box-sizing: border-box; padding: 7px!important; -webkit-box-shadow: 0px 0px 6px -3px rgba(0,0,0,0.75); -moz-box-shadow: 0px 0px 6px -3px rgba(0,0,0,0.75); box-shadow: 0px 0px 6px -3px rgba(0,0,0,0.75); } .grid-item { padding: 7px; }- 16 replies
-
How to center align product header for mobile
plantshop203 replied to daveyjonezz's topic in Customize with code
Thank you! -
How to center align product header for mobile
plantshop203 replied to daveyjonezz's topic in Customize with code
Sure! -
Hover Effect for Product Images in Shop Pages
plantshop203 replied to robertwyatt's topic in Commerce
@tuanphan ok... update here: Using this code I have created the desired effect: .post-type-store-item:hover { position: absolute; width: 100%; height: 100%; content: ''; top: 0; left: 0; border: 1px solid #bcbec0; box-sizing: border-box; padding: 7px!important; -webkit-box-shadow: 4px 4px 4px -4px rgba(0,0,0,0.75); -moz-box-shadow: 4px 4px 4px -4px rgba(0,0,0,0.75); box-shadow: 4px 4px 4px -4px rgba(0,0,0,0.75); } .post-type-store-item { padding: 7px; } See the first photo. The hover effect works great on the product list pages, but I am having a code issue on the product detail pages. See the second image. Any way to stop this from happening? https://pear-keyboard-jh2w.squarespace.com/shop/p/succulent-rock-garden- 16 replies
-
Hover Effect for Product Images in Shop Pages
plantshop203 replied to robertwyatt's topic in Commerce
Hi – this code looks great but when added, it removes the link from each of the products. So the border hover effect happens, but the products are not clickable. Is there a fix for this? site: theoldyew.com- 16 replies
-
How to center align product header for mobile
plantshop203 replied to daveyjonezz's topic in Customize with code
THANK YOU! Worked like a charm. -
How to center align product header for mobile
plantshop203 replied to daveyjonezz's topic in Customize with code
-
How do I change "Category Title" Font Size?
plantshop203 replied to yourfluf's topic in Customize with code
I would also love to know how to do this! https://www.theoldyew.com/shop/rare-plants -
How to center align product header for mobile
plantshop203 replied to daveyjonezz's topic in Customize with code
Hi, unfortunately the category title is still staying left-justified even with the below code inserted on my site: https://www.theoldyew.com/shop/rare-plants Would love any help you can offer! Thank you /* align shop title */ @media screen and (max-width:767px) { h2.nested-category-title { text-align: center !important; } }