You can change the font size in WooCommerce by adding some custom CSS code. Here are the steps:
- Go to your WordPress dashboard and navigate to Appearance > Customize.
- Click on “Additional CSS” or “Custom CSS” (depending on your theme).
- In the CSS editor, add the following code to change the font size for the drop-down box:
CODE:
.woocommerce select {
font-size: 16px; /*Change the font size to your desired size*/
}
font-size: 16px; /*Change the font size to your desired size*/
}
Save your changes.
Note: The above code will change the font size for all drop-down boxes in WooCommerce. If you want to target a specific drop-down box, you can use a more specific CSS selector that targets that particular element.