Hello,
I have a woocommerce shop, but I would like the product name appear on hover. Is this possible?
Hi,
With some little CSS code, this should be probably possible.
I can check that for your website, but I will need link to it.
Thanks
stedmundsadvertising.com
Please, try the following code:
.archive .products .product .desc h4{ display: none; position: absolute; top: 40%; width: 100%; } .archive .products .product:hover .desc h4{ display: block; }
Hi Phil unfortunately this didn't work
On which page do you want to change? On the main shop page? Home page? Or on all of them?
thanks
Hi Pablo. I would like it to be on all of them, but mainly the homepage. :)
Please, replace the previous CSS code with the following one:
.product .desc h4{ display: none; position: absolute; top: 30%; width: 100%; } .product:hover .desc h4{ display: block; }
Comments
Hi,
With some little CSS code, this should be probably possible.
I can check that for your website, but I will need link to it.
Thanks
stedmundsadvertising.com
Please, try the following code:
Thanks
Hi Phil unfortunately this didn't work
On which page do you want to change? On the main shop page? Home page? Or on all of them?
thanks
Hi Pablo. I would like it to be on all of them, but mainly the homepage. :)
Please, replace the previous CSS code with the following one:
Thanks