If the My Account navigation tabs are showing on the right-hand side of the screen, it’s probably because you’ve changed the page template from “Default” to “Full Width”. This is default behaviour to ensure the navigational tabs don’t conflict with the sidebar. Some users, not all, will experience issues where the navigation tabs will stay on the right-hand side despite changing the page template back to default. To get the My Account navigation tabs back to the left-hand side, simply add the following CSS code and Bob’s your uncle.
/**
* Snippet Name: WooCommerce Storefront Theme - move My Account Navigation Tabs From Right To Left Side Of Dashboard
* Snippet Author: ecommercehints.com
*/
@media (min-width:768px) {
.page-template-template-fullwidth-php .woocommerce-MyAccount-navigation {
float: left;
margin-right: 4.347826087%;
}
.page-template-template-fullwidth-php .woocommerce-MyAccount-content {
float: right;
margin-right: 0;
}
}