Woocommerce Gift Subscription Plugin not showing correctly

Hello

I just purchased Gifting for Woo Subscriptions and it’s not showing correctly on both the product page and cart page. The tick box is above the text and it should be on the same row.

I tested 4 other themes and all is good so I think it’s a X theme issue. An example HERE.

How can I fix this?

I’d also like to add a stroke and a background color as well.

Thanks!

Hello @yanikphoto,

Thanks for asking. :slight_smile:

You can add following CSS under X > Theme Options > CSS:

.woocommerce_subscription_gifting_checkbox {
    float: left;
    margin-right: 10px;
}
.woocommerce .cart label {
    float: left;
}
.form-row.woocommerce_subscriptions_gifting_recipient_email {
    clear: both;
}
.woocommerce .cart fieldset {
    background-color: #ddd;
    padding: 5px;
}

1- I have found the proper CSS code selector using the Chrome browser Developer Toolbar: https://www.youtube.com/watch?v=wcFnnxfA70g

2- For the CSS code itself, I suggest that you get started with this tutorial: https://www.youtube.com/watch?v=yfoY53QXEnI

Thanks.

Aewsome! Thanks!

You’re most welcome!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.