CIM_Hub
(CIM Hub)
November 27, 2024, 11:52am
1
Issue description:
Hello everyone,
I’m encountering a problem with the display of events on my website. I’ve set it up so that events are displayed at full width,
This works perfectly in most browsers. However, in Google Chrome, three events are sometimes displayed in a row, which causes the event titles to be partially cut off or not fully readable.
Does anyone have an idea how I can reliably limit it to two events per row
?
1 Like
Rena
(Renata)
November 28, 2024, 7:49am
4
Hey @CIM_Hub , welcome to our friendly Community!
I’m glad to say that we have fixed the issue by setting up the max width for the widget to 800px. Now everything should work correctly.
Could you please let me know if this helped?
1 Like
CIM_Hub
(CIM Hub)
November 28, 2024, 10:36am
5
Thank you for your response!
I think your solution is great; however, the events are no longer aligned with the rest of the website. That’s not a big issue, but if there are any other solutions, I’d be happy to hear your suggestions!c
Sina
(Sina)
November 28, 2024, 10:48am
6
Hi @CIM_Hub
Set up Full width. You can try that
CIM_Hub
(CIM Hub)
November 28, 2024, 11:14am
7
Yes, that’s correct, but then I face the issue I described above.
Sina
(Sina)
November 28, 2024, 12:06pm
8
Do you have something in custom css?
Sina
(Sina)
November 28, 2024, 12:18pm
10
I think the word is too long. Because of the line break
Try it “Anpassung Klimawandel” or “Projekte Nachbarschaft” or “Projekte in der Nachbarschaft”
CIM_Hub
(CIM Hub)
November 28, 2024, 12:27pm
11
Thanks for your solution, but I can’t do that, because it’s the name of the Project.
Sina
(Sina)
November 28, 2024, 12:30pm
12
otherwise you have to work with custom css
set up full width and copy this in the custom css section.
test it
@media (min-width: 768px) {
.eapp-events-calendar-list-events {
display: block !important;
column-count: 2;
}
}
column-count: 2 or 3
Rena followed this with a max width of 800px
This means that no 3 event blocks fit next to each other
1 Like
Sina
(Sina)
November 28, 2024, 12:49pm
14
sorry you have a grid layout
@media (min-width: 768px) {
.eapp-events-calendar-events-calendar-layout {
display: block !important;
column-count: 2;
}
}
I have to test it myself first
2 Likes
CIM_Hub
(CIM Hub)
November 28, 2024, 12:55pm
15
Thank you, I think that worked, but now only one event is displayed per row… In the workspace area of the widget, it’s showing correctly, but on my website, it looks different. Weird.
Sina
(Sina)
November 28, 2024, 12:58pm
16
have patience. @Rena or @Helga will offer you the right solution. Two blocks fit next to each other.
I’m not a CCS professional either
2 Likes
Sina
(Sina)
November 28, 2024, 1:22pm
17
@CIM_Hub
What speaks against switching to List Layout and testing again?
@media (min-width: 768px) {
.eapp-events-calendar-list-events {
display: block !important;
column-count: 2;
}
}
1 Like
Helga
November 28, 2024, 2:28pm
18
@Sina , thank you so much for your help!
@CIM_Hub our developers have fixed the alignment issue with this CSS code (already added to your widget):
@media(min-width: 900px) {
.eapp-events-calendar-grid-group
.eapp-events-calendar-grid-component {
display: grid !important;
grid-template-columns: 1fr 1fr;
}
.eapp-events-calendar-grid-item {
width: 100% !important;
}
}
Let me know if you like the result
3 Likes
CIM_Hub
(CIM Hub)
November 29, 2024, 4:05pm
19
Many thanks! That’s the solution
2 Likes