Bear
(Bear Goes)
January 27, 2025, 12:59pm
1
Issue description:
Currently the date in the upper left corner hides important parts of the picture. I would like to move it to another place like in the black part below. An alternative could be to remove it completely and show the date besides the time, which wold make most sense to me.
Is there a way to achieves this with CSS?
Link to the page with the widget in question:
Thanks and cheers,
Kay
1 Like
Bear
(Bear Goes)
January 27, 2025, 1:40pm
3
I think I’ve nailed it!
.global-styles, .eapp-events-calendar-grid-item-date {
margin-left: 220px;
margin-top: 180px;
}
.global-styles,
.eapp-events-calendar-grid-item-info {
padding: 0px 30px 0px 0px!important;
}
Additional config:
background of date field: transparent
2 Likes
Bear
(Bear Goes)
January 27, 2025, 2:00pm
4
Oh, it works only on desktop this way. On mobile it looks different. I am not pro enough to fix this via CSS.
2 Likes
Max
January 27, 2025, 2:33pm
5
Hi there, @Bear and welcome to the Community!
You were really close, nice try
Here is a slightly adjusted solution from our devs. Try it out and let me know if you like the result
.eapp-events-calendar-grid-item-date {
right: 0;
left: unset;
top: unset;
bottom: 180px;
}
.eapp-events-calendar-grid-item-info {
min-height: 200px;
}
.global-styles,
.eapp-events-calendar-grid-item-info {
padding: 0px 20px 0px 0px;
}
2 Likes
Bear
(Bear Goes)
January 27, 2025, 2:41pm
6
I love it!
Many thanks to the devs.
Cheers,
Kay
3 Likes
Max
January 27, 2025, 2:42pm
7
No sweat
We are always here for you if anything else comes up
1 Like