Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #206042

    I am struggling to find out where the theme determines how many “columns” of the dynamic layout are taken up. I successfully replaced the WooCommerce image placeholder and thumbnails, but would like this part of the page to be much wider. I was not sure if this was a CSS issue, or if the “columns” were set dynamically via php in the theme.

    screenshot

    I would love it if the weight of the 2 sides was reversed and the image gallery took up about 60% of the real estate.

    Love the theme! Only took about an hour to drop Galleria into it for the Woo Stuff.

    #206081

    Hi brandonguy!

    Please go to wp-content\themes\enfold\config-woocommerce folder and open config.php file and find

    function avia_add_image_div()
    {
    	echo "<div class='four units single-product-main-image alpha'>";

    and change it to

    function avia_add_image_div()
    {
    	echo "<div class='eight units single-product-main-image alpha'>";

    then find

    function avia_add_summary_div()
    {
    	echo "<div class='eight units single-product-summary'>";

    and change it to

    function avia_add_summary_div()
    {
    	echo "<div class='four units single-product-summary'>";

    Best regards,
    Yigit

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘Making the WooCommerce Image Larger’ is closed to new replies.