How to change Woo Commerce page in wordpress

Solution:

You can use a hook to which you can add your custom css.(A helpful like for this would beĀ WP_ENQUEUE_STYLE)

In the hook function you can register and enqueue your custom css file. In order to ensure that your custom CSS won’t desrupte other page’s styling write your enqueuing line in a conditions like is is_checkout().

All this code you need to add in your theme’s functions.php or you can add this in your custom plugin.

Later all styling part can be handled in the css file which you register and enqueue.

This way you can Elegantly deal with the styling in a WordPress way.