How do I remove or hide this button:
Original image button should stay.
Thanks
This CSS added to a theme would do it:
.mfp-bottom-bar .image-source-link:first-of-type {
display: none;
}
but unfortunately you’d end up with a double • •, as those dividers are static and not targetable with CSS.
We can probably improve the markup there at some point to avoid that.
Thanks @awesomerobot for helping me always
thank @awesomerobot for CSS that worked!
I found out this to hide infomation of image when mouse hover:
.meta{display:none;}
and this for hide all when clicked:
.mfp-bottom-bar{display:none;}
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.