Remove hover over on portfolio

Hi

How can i remove the hover over on the portfolio, but retain the link on areas.

I set the following, but this limits to the link to only a small portion of the picture.

.x-portfolio .entry-featured .entry-cover {
-webkit-transform: translate(0, 0);
transform: translate(0, 0);
top: 0;
opacity: 0;
}

.x-portfolio .entry-featured:hover .entry-cover {
opacity: 0
}

Hi there,

Please try this CSS:

a.entry-thumb:hover:before {
    opacity: 0;
}

a.entry-thumb:hover img {
    opacity: 1;
}

Hope this helps.

Hi Jade

Thanks for quick reply, however this has not worked. I still get the rollover.

I should add this is the page where all the portfolios are, not ion the individual detail page.

Hi There,

Please provide us with your website URL so we can take a closer look.

Thanks.

http://stage.plusfinance.co.uk/case-studies/

Hi There,

Thanks for the info!

Can you please add this css.

.x-portfolio .entry-cover {
   opacity: 0;
   background-color: rgba(255,255,255,0);
   -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}
.x-portfolio .entry-cover:hover {
     opacity: 1;
}

Let us know how it goes.

THanks

Hi

Sorry not as expected, when you hover over the link now show up, i just need the whole image to link without any popup of any kind. As i have written this i feel i may have mislead without and accurate description of what i wanted sorry!!!

Hi There,

If you need further customizations, you will need to check the file content-portfolio.php which is under x/framework/views/renew/.

You can copy the file into your child theme’s respective location (‘x-child/framework/views/renew/content-portfolio.php’) and add your customizations accordingly.

Thanks!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.