Last active
December 23, 2015 15:28
-
-
Save agusmu/6655298 to your computer and use it in GitHub Desktop.
WooCommerce - Modify Product Image & Summary Width on Single Product Page
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* single product page layout * | |
* 23% (image) + 4% (spacing) + 73% (summary) = 100% * | |
**/ | |
/* modify product image width */ | |
.woocommerce div.product div.images, .woocommerce #content div.product div.images, .woocommerce-page div.product div.images, .woocommerce-page #content div.product div.images { | |
width: 23%; | |
} | |
/* modify product summary width */ | |
.woocommerce div.product div.summary, .woocommerce #content div.product div.summary, .woocommerce-page div.product div.summary, .woocommerce-page #content div.product div.summary { | |
width: 73%; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* single product page layout * | |
* 23% (image) + 4% (spacing) + 73% (summary) = 100% * | |
**/ | |
/* modify product image width */ | |
.single_product_display .imagecol { | |
width: 23%; | |
} | |
/* modify product summary width */ | |
.single_product_display .productcol { | |
width: 73%; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Tutorial: http://www.primathemes.com/documentation/woocommerce-modify-product-image-summary-width-single-product-page/