Site logo

Archived topic

Remove Bulletpoints from Checkout page

9 replies · Started by Edwin on May 12, 2022

Viewing posts 1–10 of 10

Hi

How can i disable bullet-points it in the checkout page from showing. It is showing because i am using it for widgets.

.widget ul li {
list-style-type: disc;
}

Hi there,

wehre do you want bullet points to show ? Share a link to a page where they should be visible and ill revise your CSS>

Hi there,

Try change the selector to: .widget ul:not(.wc_payment_methods) li

Let me know :)

Thank you, unfortunately it didn't work.

.widget ul(.wc_payment_methods) li{
display:none!important;
}

Your CSS selector is not the same as Ying's selector.

Can you try her selector first? Please copy and paste.

.widget ul:not(.wc_payment_methods) li{
display:none;
}

Still not working

Try this:

li.wc_payment_method.payment_method_migshpp::marker,
li.wc_payment_method.payment_method_bacs::marker {
    content: "";
}

This isn't something added by WooCommerce or GeneratePress.

If the solution above still doesn't work, please determine which extra plugin you are using is adding the bulletpoints and check with the plugin's support team.

Thank you. That worked :-)

No problem :)

This archived topic is closed to new replies.