Hi @ohboy183,
The section under “The Bag” is 2 column on mobile as standard.. You can change this with the following custom css:
@media only screen and (max-width: 479px) {
body .woocommerce-shop-page ul.products li.product, body .product_list_widget > div > ul.products li.product {
width: 100%!important;
}
}
The space at the bottom is caused by the footer (which you have enabled, but no widgets added?). Either disable the footer in Theme Options > Footer Options, or add this custom css:
@media only screen and (max-width: 479px) {
#footer {
display: none;
}
}
The smiley face is from the WP Stats plugin.
– Ed