The following allowed me (finally) to display date and time on single page settings:
.tribe-events-schedule span {
display: inline-block !important;
}
I added to the tribe-events.css file.
Not sure about the address details issue – interesting that mine doesn’t display address on either view – only in the details section. Maybe try
.tribe-events-address span {
display: inline-block !important;
}
or format with # similar to first? Hope it helps!
CNYMM
This worked for me for the listing page with All Events, but I have a post in support thread also to try to configure for Single event listing.
I created a directory folder in my wordpress theme directory (wp-content/themes/ThemeName) called tribe-events.
I created a file in that directory called tribe-events.css
and then edited with notepad with the following custom code and saved the file back to the server:
#tribe-events .published.time-details span {
display: inline-block !important;
}
This fixed on the list for me, but not the single event. If I find something that works – I’ll let you know!