We're celebrating Europe this week and we'd like to support all of our European Union customers by covering the VAT rate. Discount is valid for all new purchases and manual renewals and applies automatically during checkout.
When I have a sidebar showing on my homepage and view on mobile it puts the widgets at the bottom and it looks odd. Is there a way to hide the widgets when the site is viewed on tablet and mobile?
The theme is designed to display the sidebar after the content on mobile devices (since the sidebar content is generally less important than the actual content).
You can hide the sidebar(s) on mobile devices with CSS if you wish so:
@media (max-width: 800px) {
body #primary, body #secondary {
display: none;
}
}