Tagged: 

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #611791

    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

    #611886

    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

    • This reply was modified 7 years, 10 months ago by Yigit.
    #737367

    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;
    }}
    #737370

    Hi!

    Thanks for pointing that out. I edited my code :)

    Cheers!
    Yigit

    #1320580

    Hi,

    Is there a way to increase the size of the pulse?

    #1320685

    Hi KeesKaas,

    Please try the following in Quick CSS under Enfold->General Styling:

    .av-image-hotspot-pulse {
        height: 84px;
        width: 84px;
        top: -28px;
        left: -29px;
    }

    Then adjust the numbers to your liking.

    Best regards,
    Rikard

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.