HI there,
I am need to change the default hotspot numbers to a star. Currently they are counting up but I would like to replace it with a star image. What is the easiest way?
Hey satner!
Can you post a link to your website please?
Best regards,
Andy
Hey!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
.av-image-hotspot_inner:after {
content: '★';
color: #888!important;
position: relative;
left: -3px;
}
.av-image-hotspot_inner {
color: transparent!important;
}
Best regards,
Yigit
Hi!
The code above works great, I’m just curious how can I use another icon? Somehow you have pasted a star in the code, I want to use the bullseye though. How can I put it instead of the star?
Thanks!
Hi,
Try the following:
.av-image-hotspot_inner:after {
content: '\25CE';
color: #888!important;
position: relative;
left: -3px;
}
.av-image-hotspot_inner {
color: transparent!important;
}
Best regards,
Jordan Shannon
Hi Jordan,
Thanks, this works. Do you also know a way to change the size of the icon? I tried the following code, but that only applies to the size of the hotspot itself and not the size of the icon. Thanks again!
.responsive .av-image-hotspot {
height: 32px;
width: 32px;
line-height: 32px;
}
.responsive .av-image-hotspot-pulse {
top: -11px;
left: -11px;
}
Hi, I found it out. I added font-size: 22px; and that worked!
Hi,
I’m glad you got it resolved. If you need additional help, please let us know here in the forums.
Best regards,
Jordan Shannon