Viewing 16 posts - 1 through 16 (of 16 total)
  • Author
    Posts
  • #481137

    Hey,

    i want to move product description a bit down (under product images) and show the product description on full width, any solution?

    #481303

    I saw this code:

    .single-product-summary {
    overflow: visible;
    }
    .template-shop div.product div.summary {
    width: 60%;
    float: left;
    }

    This works. Now i need to move the product description a bit up. And move thumbmails to the right under short product description.

    #482079

    Hi!

    Please add following code to Quick CSS as well

    .single .woocommerce-tabs {
        position: relative;
        top: -100px;
    }

    Regards,
    Yigit

    #482123

    Thanks,

    is it possible to move thumbmails to the right of the big image?

    #482516

    Hi!

    I’m not sure if this is what you’re looking but you can try this in the Quick CSS field:

    .template-shop .single-product-main-image .images a {
        width: 50%;
        float: left;
    }
    
    .single-product-main-image .thumbnails {
        margin-top: 10px;
        width: 45%;
        float: left;
    }
    
    .single-product-main-image {
        width: 100%;
        float: left;
    }
    

    A screenshot will help.

    Regards,
    Ismael

    #482553

    Hey Ismael, thanks again. This does not work for me. See Screenshot on private. I draw it like i need it :P

    #482580

    .single-product-main-image .thumbnails {
    margin-top: 10px;
    width: 45%;
    }

    .single-product-main-image .images a {
    width: 70%;
    float: left;
    }

    I added this code now. This is fine. I just need to move thumbnails to the right beside the main image. And the image overlay needs to be fit (it breaks the border of main image)

    • This reply was modified 8 years, 10 months ago by combra.
    #483283

    Any help?

    #483650

    Hi!

    I’m sorry but what you’re trying to do is not possible without major modification on product template because those thumbnails are located on a different container.

    Regards,
    Ismael

    #483766

    Hey,

    isnt is possible to move thumbnails to the right of main image? I reduced main image size, so it should enough place for doing this or? I added a screen, how it should be.

    #484314

    Hi!

    You can try this:

    .template-shop .single-product-main-image .images a {
        width: 70%;
        float: left;
    }
    
    .single-product-main-image .thumbnails {
        width: 25% !important;
        float: left;
        margin-left: 4%;
    }
    
    #top .single-product-main-image .thumbnails a {
        width: 48%;
    }

    Regards,
    Ismael

    #484323

    Thats looks better. Just Two things to be ready with this:

    1. Move thumbnails a bit top (Make it even with main image)
    2. On hover on main image, the hover effevt (overlay) is breaking the border right.

    #484470

    Hi!

    Please add following code to Quick CSS as well

    div.product div.images div.thumbnails {
        padding-top: 0;
        margin-top: 0;
    }
    .single-product .image-overlay { display: none !important; }

    I could not see the second issue but second code should remove image overlay from product gallery on single product page.

    Regards,
    Yigit

    #484545

    I love u :)

    Thanks! Maybe my last question for single-product.

    1. Possible to move Short Product description a bit to left, that the whitespace isnt that big between thumbnails and short description?
    2. How to remove whitespace between end of product description and footer?

    Happy Weekend

    #484547

    Hi!

    Enfold loves you back :)
    Please add following code to Quick CSS as well

    .single-product-summary {
        margin-bottom: -100px;
    }
    .single-product-main-image {
        margin-right: 0;
    }

    Have a great weekend!

    Regards,
    Yigit

    #485072

    Thanks, topic is solved!

Viewing 16 posts - 1 through 16 (of 16 total)
  • The topic ‘Move Product description to full width’ is closed to new replies.