Hi.
As you can see in my webpage (I attach it to you as a private content), I have a Portfolio AJAX.
Basically I would want to remove the big preview image that appears once you click on one of the portfolios. So then I will have only the description and the “list” of images.
If that’s not possible, maybe to resize that big preview image would be valid as well.
Can you help me with that, please?
Thanks!
Hi blancocapell!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
.av_table_col.first.portfolio-preview-image {
display: none;
}
.av_table_col.portfolio-entry.portfolio-preview-content {
width: 100%;
}
Regards,
Yigit
Hi Yigit.
Thanks, but that’s also removing the list of images under the big preview. I would want to keep them and only remove the big preview. Is that possible?
Thanks!
Hi!
Please use following code instead
.ajax_slide a.avia-gallery-big {
display: none!important;
}
Best regards,
Yigit
Thanks Yigit, you rule!