Bricks Version: 1.6.2 and 1.7 (Beta)
Browser: Chrome 109, Firefox 110
OS: macOS / Windows / Linux / etc.
URL: (a link to a page that illustrates the issue would be really helpful)
Thank You Page Template > Order Overview css has issues. The Order Overview section ( that contains Order id, customer email, Purchase date and Payment method) is targeted by this css class <ul class="woocommerce-order-overview woocommerce-thankyou-order-details order_details">
.
The issue is class .woocommerce-thankyou-order-details
doesn’t exist in the stylesheet and .woocommerce-order-overview.order_details
has a display: flex
property, but in the browser, it is displaying as display: grid
.
If I create a Thank You page template and target the element with a custom css in Bricks Builder with this CSS from the style sheet:
.woocommerce-order-overview.order_details {
border-style: solid;
border-width: 1px;
display: flex;
justify-content: center;
margin: 0 0 15px;
text-align: center;
}
then display: flex
works.
Thanks & Regards