Archived topic
"Your order" headline incorrectly positioned in checkout
2 replies · Started by Sascha on June 28, 2022
Hello,
in the review area, the heading "Your order" is not aligned left properly, as can be seen on this screenshot and can be reproduced as soon as a product is placed in the cart and the checkout is opened.
A plugin conflict test has shown that the error only occurs when GP-Premium and Germanized are active. I can "compensate" for the error via CSS, but it would be better to eliminate the cause.
Could you please help to eliminate the cause of the error?
Temp-Admin-Login in private note.
Many thanks and kind regards from
Sascha Liem
by the way, for checking this issue, please don't use the "mHost Create" product, because this product will have a custom checkout page
Hi there,
the default Woocommerce checkout template, places the H3 #order_review_heading outside of #order_review container so GP provides the CSS styles to float both those elements to the right.
Whereas on your site the #order_review_heading is inside the #order_review.
The only way to resolve that is to add the following CSS:
#order_review #order_review_heading {
float: none;
width: 100%;
}