Currently, I am attempting to center all of the products on my Wordpress page so that everything is aligned centrally. I attempted wrapping it all in a div with specific CSS properties, but unfortunately, the content moved to the middle while the products remained left-aligned.
#big-center {
display: -webkit-box;
display: -moz-box;
display: box;
-webkit-box-orient: block-axis;
-moz-box-orient: block-axis;
box-orient: block-axis;
-webkit-box-align: center;
-moz-box-align: center;
box-align: center;
-webkit-box-pack: center;
-moz-box-pack: center;
box-pack: center;
}
I am reaching out for advice or if there may be something crucial that I am overlooking to achieve this. Your recommendations are greatly appreciated!
To view the current state of the page, please click on this link: