I want to change the zoom icon. right now it is a svg showing a looking glass. I want to have a play button... is there a way to select the icon?
You need to be logged in to post in the forum - Log In
An active JCE Pro Subscription is required to post in the forum - Buy a Subscription
Support is currently Offline
Official support hours
Monday to Friday
09:00 - 17:00 Europe/London (BST)
09:00 - 17:00 Europe/London (BST)
Please create a new Ticket and we will get back to you as soon as we can.
#113566 Change the zoom icon
Posted in ‘Mediabox’
This is a public ticket
Everybody will be able to see its contents. Do not include usernames, passwords or any other sensitive information.
Latest post by Ryan on Friday, 14 April 2023 17:24 BST
Friday, 14 April 2023 17:24 BST
Ryan
You can't select the icon, or change the svg code for the icon,but you could use css to hide the svg and set a font icon instead, eg:
/* uses font-awesome included with Joomla 4 */
.wf-icon-zoom-image {
font-family: Font Awesome\ 5 Free;
display: inline-block;
font-style: normal;
font-variant: normal;
}
.wf-icon-zoom-image svg {
display: none;
}
.wf-icon-zoom-image::after {
content: "\f04b";
display: block;
color: #fff;
font-size: 1.25rem;
position: absolute;
text-align: center;
opacity: .8;
top: auto;
bottom: 0.25em;
left: auto;
right: 0.25em;
z-index: 1;
line-height: 1;
}
Ryan Demmer
Lead Developer / CEO / CTO
Just because you're not paranoid doesn't mean everybody isn't out to get you.
Please wait
Your post is being submitted…