• Resolved spejset

    (@spejset)


    Hello!
    When I click on an event, a pop-up window opens, but it opens at the bottom of the computer screen.
    Can I somehow make the pop-up window appear higher up on the screen?

    See image:
    https://prnt.sc/uYD0G3BdlGtu

    BR
    Anders

    The page I need help with: [log in to see the link]

Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Author Joe Dolson

    (@joedolson)

    You can adjust that, yes. In your stylesheet, find

    .mc-main .calendar-event .details, .mc-main .calendar-events {
    
    }

    and add the line top: 0 to that block of styles.

    The modal is positioned relative to the link you clicked to open it by default, but setting the ‘top’ parameter will position it relative to the top of the calendar.

    Thread Starter spejset

    (@spejset)

    Thanks for your reply!
    However, my site is not selfhosted, so I can not access the CSS.
    I hope you can give me an SCC snippet that I can paste into my sites Additional CSS

    Plugin Author Joe Dolson

    (@joedolson)

    You can put that CSS in your additional CSS, instead.

    Thread Starter spejset

    (@spejset)

    OK, fine. But I do not understand how to write the code. Can you give me the complete code I should enter that moves up the popup

    Plugin Author Joe Dolson

    (@joedolson)

    .mc-main .calendar-event .details, .mc-main .calendar-events {
       top: 0;
    }
    Thread Starter spejset

    (@spejset)

    Thans so very much!
    /Anders

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Events popup window’ is closed to new replies.