RueNel
Thank you so, so much, it has worked! My I ask how you identified that the " .mec-timetable-wrap .mec-event-article" and " .mec-timetable-wrap .mec-timetable-t2-content"
needed to be targeted? I spent a good hour trying to fix this before I asked you to fix it for me.
So there are two “.” commands in a row, so buuy useing “.mec-timetable-wrap .mec-event-article” are we targeting two different propperties to have the same styling by writing
" .mec-timetable-wrap .mec-event-article {
min-height: 180px;
}" ?
I hope you don’t mind explaining further? As I was thinking that I only needed to target one thing to get the componant to behave the way I needed but by looking at the script that was not the case.
.mec-event-article {
margin-bottom: 5px;
min-height: 150px;
}
.mec-timetable-t2-content .mec-event-title a,
.mec-timetable-t2-content .mec-event-title {
overflow: visible;
white-space: normal;
margin-top: 5px;
margin-bottom: 15px;
}
.mec-timetable-wrap .mec-event-article {
min-height: 180px;
}
.mec-timetable-wrap .mec-timetable-t2-content {
height: 180px;
}
In fact that is a hell of a lot of code just to make some boxes the right shape.
When looking to learn CSS a lot of the resources teach you to build from scratch but do you know of anything that teaches you how to manipulate in the way in which we are doing hear? It would be great to understand why what we have just done works the way it did, and why the plugin was effected like this, I doubt the plugin behaves like this “out of the box”
Thanks
Ben