QUESTION 1:
I used a custom header in Pro to create a floating menu.
This causes trouble with the Woocommerce pages like Product pages, Cart and Checkout, as those pages need to start 120px lower than they do now.
I made a DIY fix of the product page using this:
.woocommerce-notices-wrapper {
margin-top: 120px;
}
But wasn’t able to make a similar fix to the Cart and Checkout pages. As a workaround, I’ve done this:
.entry-title {
margin-top: 120px;
}
But I’d rather have the white box move down, not just it’s contents.
Is there a better way to do this?
QUESTION 2:
How do I style the buttons on these pages to look like the rest of my buttons? Is there a class I can use to style all the Woocommerce buttons?