Hi guys,
I am looking for a way to disable 1 link from the masonry portfolio. I am using images with text on it that dont need to be linked. Is there some shortcode I can put in the custom link box that removes the link complete?
The links on the images with the text on them.
Hi,
Thank you for using Enfold.
The masonry items have a unique ID attribute. Use it to disable the pointer-events property.
#av-masonry-2-item-2431, #av-masonry-3-item-2461 {
pointer-events: none;
}
This code will disable the first and second block.
Best regards,
Ismael
Nice, thanks that works :)