- This topic has 3 replies, 2 voices, and was last updated 8 years, 6 months ago by .
Viewing 4 posts - 1 through 4 (of 4 total)
Viewing 4 posts - 1 through 4 (of 4 total)
- You must be logged in to reply to this topic.
Select Page
Home › Forums › Community Support Forum › WordPress Plugins › Orbisius Quick Order for WooCommerce › CSS questions
Tagged: css, thumbnail size, title font
We did the modifications to make it look like a grid, please take a look http://woocommerce-17570-39893-101545.cloudwaysapps.com/blank now I have really small images and need the order form to inherit our theme css, product images look super small, I imagine it is because of the plugin css. Where do I go in order to force inherit the theme’s css.
Do you have any idea? I need to modify thumbnail sizes and title font only. Please advise
Hi Cynthia,
Can you add this to the functions.php ?
add_image_size( 'cart_item_image_size', 175, 175, true );
add_filter( 'woocommerce_cart_item_thumbnail', 'cart_item_thumbnail', 10, 3 );
and then replace the calls within the plugin to ->get_image with this:
->get_image( 'cart_item_image_size' );
Credit: https://support.woothemes.com/hc/en-us/articles/203103857-Modify-woocommerce-cart-item-thumbnail-size
Slavi
Hi Slavi,
Thanks for the quick response!
You’re very welcome