urbanwarrior Posted January 27, 2023 Share Posted January 27, 2023 hello I added some code to hover over images which looks good but now can't click to link to a page. word wall page with url is linked but not responding can anyone help here please? much appreciated. Link to comment
tuanphan Posted January 28, 2023 Share Posted January 28, 2023 Which code did you use & What is site url? Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
urbanwarrior Posted January 28, 2023 Author Share Posted January 28, 2023 .gallery-caption { position: absolute; top: 0; left: 0; background: rgba(255,255,255,255); /* overlay color */ height: 100%; max-width: unset; padding: 0; opacity: 0; } .gallery-caption-wrapper { display: flex; align-items: center; /* center vertically */ justify-content: center; /* center horizontally */ } .gallery-caption-content { font-size: 1rem !important; /* caption font size */ color: black; /*caption font color */ } .gallery-masonry-item { position: relative; } .gallery-masonry-item:hover .gallery-caption { opacity: 5; } .gallery-caption-grid-masonry { transition-delay: 0ms; } Link to comment
tuanphan Posted February 1, 2023 Share Posted February 1, 2023 Change this code .gallery-caption { position: absolute; top: 0; left: 0; background: rgba(255,255,255,255); /* overlay color */ height: 100%; max-width: unset; padding: 0; opacity: 0; } to this .gallery-caption { position: absolute; top: 0; left: 0; background: rgba(255,255,255,255); /* overlay color */ height: 100%; max-width: unset; padding: 0; opacity: 0; pointer-events: none; } If it doesn't work, please share link to your site, we can check easier Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
urbanwarrior Posted February 1, 2023 Author Share Posted February 1, 2023 oh goodness this worked thank you so much ! Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment