Hello,
Sorry for the delay.
As for the SKU moving – HTML structure does not allow solving it the place you want by custom CSS. Such modification requires complicated Woocommerce code customization which is not covered by our support.
You can move all the meta to the area afet Add to cart button in the Theme Settings > Product page > Show > hide elements.
Please add this code to the Theme Settings > Custom CSS > Global to hide Categories and tags only:
body .meta-location-add_to_cart .product_meta>span.posted_in,
body .popup-quick-view .product_meta>span.posted_in {
display: none;
}
body .meta-location-add_to_cart .product_meta>span.tagged_as,
body .popup-quick-view .product_meta>span.tagged_as {
display: none;
}
This CSS to change the color of the borders:
div.quantity input[type=button] {
border: 2px solid red;
}
body.single input[type=number] {
border: 2px solid red;
}
For tabs:
.tabs-layout-accordion {
border-top: 2px solid red;
}
.tabs-layout-accordion .woodmart-tab-wrapper {
border-bottom: 1px solid red;
}
Please set the colors as per your needs.
Best Regards