Home Forums WoodMart support forum Product Page Layout Reply To: Product Page Layout

#446216

Hello,

We have further checked in detail the mentioned issues in comparison with our Test Site and found out these:

1- Regarding the Subtotal price right alignment concern, there was an additional class appearing as a special price code on which the respective Theme end CSS was missing which we have now added and it is adjusted to right alignment fine:

span.woocs_special_price_code {
    flex-grow: 1;
    text-align: right;
}

2- Regarding the “Your Makeup Bag” text, the Theme picks up the Title font styling defined under the Dashboard > Theme Settings > Typography > Title font. So, there the Text Transform and Font Weight stylings weren’t set the same as they were at the default Theme Settings end which is why this issue was arising so for the time being we have chosen Font Weight Medium 500 and Text Transform as Uppercase as how they were at the default Theme Settings end: https://snipboard.io/XP548q.jpg

You can further select the options in it according to your choice and it will change accordingly.

3- Regarding the Close button under the Shopping Cart widget, as we have checked under the Inspect tool of the browser this link is taking styling from one of your Product Customizer plugin: https://snipboard.io/e01iTu.jpg

So, if you want to override that then you can use the following Custom CSS on your Site and paste it to Dashboard >> Theme Settings >> Custom CSS >> Global CSS section:

.cart-widget-side .wd-action-btn.wd-style-text>a {
    font-size: 1.5em;
    font-weight: 700;
    text-transform: uppercase;
}

.wd-action-btn.wd-style-text>a:before {
    font-weight: 700;
}

4- Regarding the Login failed concern, we have checked this concern in real Mobile view and it is still appearing outside:

https://snipboard.io/ebpTmS.jpg
https://snipboard.io/kUwmD9.jpg

Best Regards.