Tagged: hotspot
Hi,
how can I change the size of the hotspots? Changing the color works fine with backend. For changing the size I would need to change the CSS (and JavaScript) I think. Do you have any CSS code snippet, how to double the size of the hotspot, for example?
Many thanks,
Mathuseo
Hey Marcel!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
@media only screen and (min-width: 990px) {
.responsive .av-image-hotspot {
height: 32px;
width: 32px;
line-height: 32px;
}
.responsive .av-image-hotspot-pulse {
top: -11px;
left: -11px;
}}
Cheers!
Yigit
You forgot an opening { at the end of the the first line.
Correct code:
@media only screen and (min-width: 990px) {
.responsive .av-image-hotspot {
height: 32px;
width: 32px;
line-height: 32px;
}
.responsive .av-image-hotspot-pulse {
top: -11px;
left: -11px;
}}
Hi,
Is there a way to increase the size of the pulse?