Thanks Martin. If you place the following CSS into the bottom of your theme’s style.css file, you should be able to hide the sidebar and make the calendar view full-width:
body.post-type-archive-tribe_events #content .main {
width: 100% !important;
}
body.post-type-archive-tribe_events #content .kad-sidebar {
display: none !important;
}
For any other refienments/tweaks/design customizations, you will have to take the reins, but I hope this helps!
If you need to write more custom CSS on your site, definitely check out a [free!] tool like Firebug if you use FireFox, or the Developer Tools for either Safari or Chrome. They have “Inspector” tools that let you zoom right over the element whose styles you want to change, which is immensely helpful. I used this tool to come up with the CSS I shared with you above. 😉
Cheers,
George