asse2014
August 1, 2024 at 12:18 pm
Is it possible to move the Featured Image above the Event Name when the Event Espresso Upcoming Events Widget is displayed on the front end?
Rio
August 1, 2024 at 6:42 pm
Add New Note to this Reply
Let me see if we can do that with CSS / Custom code, Can you send me direct link to that page?
you can reply in private if you need to.
thanks
asse2014
August 2, 2024 at 7:35 am
Add New Note to this Reply
This reply has been marked as private.
asse2014
August 2, 2024 at 9:33 am
Add New Note to this Reply
This reply has been marked as private.
Rio
August 2, 2024 at 7:53 pm
Add New Note to this Reply
Yes, you can do that. Check this thread
https://eventespresso.com/topic/how-do-i-customize-upcoming-events-widget-display-to-add-a-message/
be sure you create plugin for that, here’s the guide
https://eventespresso.com/wiki/create-site-specific-plugin-wordpress-site/
The other option you can also is modify it using CSS.
You can change the mother element to a flex
then set the direction to column
https://monosnap.com/file/WIeJCclvg0jhFROh7TPTOoH70aGGkU
li#ee-upcoming-events-widget-li-4330 {
display: flex;
flex-direction: column;
}
in this example, i targeted specific Element. You can also target the class
then the child element will have something like this.
li#ee-upcoming-events-widget-li-4330 span {
order: 2;
}
thanks
asse2014
August 3, 2024 at 9:50 am
Add New Note to this Reply
Thanks Rio. Your CSS solution works perfectly.
asse2014
August 3, 2024 at 9:51 am
Add New Note to this Reply
Thanks Rio. Your CSS solution works perfectly.
Rio
August 4, 2024 at 8:17 pm
Add New Note to this Reply
Awesome. If you need anything, feel free to reach us again.
thanks