Site logo

Archived topic

Woocommerce Checkout Page with "Germanized" Plugin

3 replies · Started by Andre on May 13, 2021

Viewing posts 1–4 of 4

Hi
I'm creating an online shop with the generatepress premium theme. I'm also using the "Germanized" plugin. The "Germanized" reorders some section of the sections to be compliant wir the german law.

I found out that there is a problem with css some https://..../wp-content/plugins/gp-premium/woocommerce/functions/css/woocommerce.min.css?ver=2.0.2

#customer_details+#wc_checkout_add_ons, #order_review, #order_review_heading {
width: 41.1764705882%;
float: right;
margin-right: 0;
}

The section titel "Ihre Bestellung" is aligned to the right, as you can see in the image.

When I remove #order_review_heading from the css definition (see below) every thing is displayed fine.

#customer_details+#wc_checkout_add_ons, #order_review {
width: 41.1764705882%;
float: right;
margin-right: 0;
}

Since I'm new to GeneratePress Premium I'm not sure if the problem is caused by the theme.
If it is, please update the theme.

Can you give me a tip how I can fix the issue in the mean time?

If you like to replicate the problem online, please go to https://www.rippstein.net/ add a product to the shopping cart and then go to checkout.

Kind regards,
André

Hi there,

Yeah, it's caused by GP Premium's CSS.

We can override that by adding this CSS:

h3#order_review_heading {
    float: none;
    width: auto;
}

Hi Elvin

Thank you very much for your quick response. Your proposed solution did fix the problem.

Kind regards
Andre

No problem. Glad you got it sorted. :D

This archived topic is closed to new replies.