Hi Mark,
Thanks for reaching out!
You can center the bar by adding this to the custom CSS area in Appearance > Customize (if your theme provides one), or in the style.css file of your child theme:
.events-archive .tribe-bar-disabled {
float: none;
max-width: 50%;
}
Setting a max width is optional, but leaving it out will let the bar span the entire width of the screen.
To move it to the bottom, you can follow the instructions in our themer’s guide to copy the list template (found at /wp-content/plugins/the-events-calendar/src/views/list.php) into your child theme and edit it from there.
You can move this line:
<?php tribe_get_template_part( 'modules/bar' ); ?>
to underneath the main events content you see in the template. You can do this for other views as well.
Let me know if that works for you!
Thanks,
Jennifer