• I want the layout width of the woocommerce single product page to be smaller than the rest of the site. Couldn’t make it work with the content width% option.

    Also when you select Color and Size, the price gets shown besides Add to cart, the size is too small. Want to increase it.

    And the price shows besides Size chart, don’t know how to fix it. Size chart added by Printful plugin automatically.

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Hello,

    1. You can try the below CSS code to adjust the content width as per need.

    .single-product #content-wrap {
        width: 70% !important;
    }

    PS- change the width as per need.

    2. To change the font size and color of that price, try the below code.

    .woocommerce-variation-price > span > span > bdi {
        font-size: 30px;
        color: #040479;
    }

    PS- change the size and color code as per need.

    3. for the position of the price.

    .single_variation {
        float: unset !important;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Product Price size and Single Product Layout Size’ is closed to new replies.