Hi,
I can’t seem to get the title, location and date to display properly. What I would like is to have the title displayed with the location and date in one line right below. Please see example here. I guess it’s a CSS thing but override the .av-upcoming-event-meta span in my child theme doesn’t work.
Another question is how to modify the “av-upcoming-event-title” tag without changing the core code. I’d like to do this in the child theme also…
Thanks in advance!
Steven
Hi steviger!
Can you send us a link to your page so we can take a look? You can set your reply as private if you wish.
Cheers!
Elliott
Hi Elliott,
Thanks for your reply. Please find the URL in private content….
Cheers,
Steven
Hey!
Add this to your custom CSS.
.av-upcoming-event-meta > span {
display: inline;
margin-right: 5px;
}
Cheers!
Elliott
Works. thanks!