• Resolved John

    (@dv1961)


    I wonder if anyone has had any luck using #_EVENTADDTOCALENDAR in an elementor page or template?

    I can output the calendar links using the shortcode [event]#_EVENTADDTOCALENDAR[/event] but the list is always displayed, it’s not hidden until hover. Plus the list displaces content down. Any thoughts?

Viewing 1 replies (of 1 total)
  • Thread Starter John

    (@dv1961)

    Simple css issue, this worked for me:
    `
    selector .em-event-add-to-calendar {
    background-color: #fff;
    color: #000;
    padding: 0px;
    font-size: 16px;
    border: none;
    font-weight: 700;
    font-family: quicksand;
    }
    selector .elementor-shortcode {
    position: relative;
    display: inline-block;
    }
    selector .em-event-add-to-calendar-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    right: 10px;
    border-radius: 5px;
    }
    selector .em-event-add-to-calendar-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-family: quicksand;
    font-weight: 600;
    }
    selector .em-event-add-to-calendar-content a:hover {background-color: #fff;
    }
    selector .elementor-shortcode:hover .em-event-add-to-calendar-content {display: block;
    }
    selector .elementor-shortcode:hover .em-event-add-to-calendar {background-color: #fff;}
    selector .tippy-box[data-theme~=light-border] {
    border: 0px solid #fff;
    }

Viewing 1 replies (of 1 total)
  • The topic ‘#_EVENTADDTOCALENDAR in Elementor’ is closed to new replies.