Site working as it should (as far as I can tell) On the product categories page - once you select a category, you always see the categories on top So I didn't include a button to go back, like it says in the sub5 outline - hope thats fine Ran the following within SQL to add my products: INSERT INTO my_products (product_description, product_category, product_price, inventory_count, image_path) VALUES ('Guinness', 'Beverages', 12.99, 100, 'images/products/product_1.png'), ('Black Pudding', 'Food', 4.99, 50, 'images/products/product_2.png'), ('Celtic Necklace', 'Wearables', 29.99, 30, 'images/products/product_3.png'), ('Lyons Tea', 'Beverages', 5.99, 200, 'images/products/product_4.png'), ('Aran Sweater', 'Wearables', 59.99, 25, 'images/products/product_5.png'), ('Shamrock Cutting Board', 'Home Goods', 24.99, 40, 'images/products/product_6.png');