Let Group Overflow Out of Repeating group

Hi, I’m currently making a weekly calendar that displays events as colored squares (like google calendar) per time slots for each day of the week. I currently have managed to do this correctly, however, I need to make the groups within the event repeating group overflow out of it if they occupy more than one time slot (like an event that starts at 1:00and ends at 3:30, it would occupy 2.5 slots). Currently, the repeating group displays a scroll bar and doesn’t allow the content to overflow. How can I achieve this? (It would also help if you reccomend a plugin with this functionality, including drag and drop to change an event’s date, not Zeroqode’s, that one lags a ton and is clunky)


image

Hi,
I think you have to use some css here.

Add the plugin Classify.
Then add this to the id section of the RG Events: {addClass:“overflow-visible”}

In your setting’s tab, SEO / Metatags, Script/meta in the header:

<style>
    .overflow-visible{
    	overflow: visible !important;
    }
</style>

Hope this help :slight_smile:

This topic was automatically closed after 70 days. New replies are no longer allowed.