sauranus
Member
Posted 6 months ago #
Hello,
Is it possible to display 3 events on a same line instead of having all events in a vertical column?
I am using a weekly agenda and have about 10 - 16 events each week.
I would like to have my events displayed like that :
http://agenda.gouru.fr
For the moement it looks like that;
http://gouru.fr/agenda
Thank you for your help!
http://wordpress.org/extend/plugins/events-manager/
agelonwl
Member
Posted 6 months ago #
Is this using event list or event list group shortcode? you can used html tags ul li then use some css styling using your theme style.css
e.g.
[events_list format_header="<ul>" format_footer="</ul>"]
<li>
#_EVENTNAME
</li>
[/events_list]
e.g. http://www.secondpicture.com/tutorials/web_design/css_ul_li_horizontal_css_menu.html
sauranus
Member
Posted 6 months ago #
I am using the shortcodes but I can maybe try your method
Thanks for the advice, I will let you if it works
sauranus
Member
Posted 6 months ago #
Does no seem to work...
As my events change every week and my Agenda page is diplaying the upcoming events, how can I set which event is the first
? etc..
It wouldn't work this way because what you have is a table that has 3 columns. EM can only display one event per row using this method, to display 3 events per row, you'd need to use PHP to output events.
You could still achieve this using lists like angelo suggested, then use css to float your li tags left etc. so they create the same effect. HTML/CSS experience needed though.
sauranus
Member
Posted 6 months ago #
Yes that's what I thought
So the question is: which Php file should I edit, because i tried different (both WordPress template and EM files) but did not manage to identify the right one
Thank you very much
If you want to do it with PHP, try the events-manager/templates/templates/events-list.php
otherwise ,you could just edit your theme style.css file accordingly.