Hey Christopher,
Thanks for reaching out to us!
You can fix the wrapping of the text there in a couple of different ways. One of the simplest would be to add the following to your theme’s stylesheet:
.tribe-bar-disabled #tribe-bar-views .tribe-bar-views-list .tribe-bar-views-option a {
font-weight: 300;
}
If you want to hide the view switcher completely. You could also take a stylesheet approach as well if you’re most comfortable with that and add the following to your theme’s stylesheet:
.tribe-bar-disabled #tribe-bar-form #tribe-bar-views {
display:none;
}
body.tribe-bar-disabled #tribe-bar-form #tribe-bar-views+.tribe-bar-filters {
right:0;
}
`
Let me know if this helps.
Thanks!