Hello,
The “Tickets” section is not responsive, on smaller devices a large portion on the Ticket section does not show.
But the “Details” section and the “Venue” section are properly responsive.
I have changed the order of the Ticket section and placed it at the top with this php snippet
remove_action(‘tribe_events_single_event_after_the_meta’,
array(TribeWooTickets::get_instance(), ‘front_end_tickets_form’), 5);
add_action(‘tribe_events_single_event_before_the_content’,
array(TribeWooTickets::get_instance(), ‘front_end_tickets_form’), 5);
though I do not see that this should effect its responsiveness but …
I have tried this to no effect:
“.single-tribe_events #tribe-events-content form.cart, .single-tribe_events #tribe-events-content div.cart {
width: 90% !important;
}”
I am using http://www.responsinator.com/ to check responsiviness.
Thank you