Home Forums WoodMart support forum Product description

Product description

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #236164

    biz.robiul
    Participant

    I need to change the product page ‘Tab layout’ content area dimension (For Height). Because it’s too short for the product image view.

    Attachments:
    You must be logged in to view attached files.
    #236172

    Hello,

    I saw the screenshot you attached. By default, the area is limited to some specific height. So if you try changing it then it might disturb the layout of the other elements.

    If you still want the CSS then you can try adding the following Custom CSS in the Custom CSS for Desktop area under Theme Settings >> Custom CSS.

    .tabs-layout-accordion .woodmart-scroll .woodmart-scroll-content {
    	max-height: 350px;
    }

    Regard’s.
    Xtemos Studios.

    #236258

    biz.robiul
    Participant

    Tab Layout is always auto open, I need to close the auto option. When I will click the tab layout, the descript will open.

    #236379

    Hello,

    By default, WooCommerce opens the first tab when the page is loaded. You can try to close it manually right after page loading by adding this code snippet to the Custom JS section in Theme Settings.

    setTimeout(function() {
    	var $tabs = jQuery( '.wc-tabs, ul.tabs' ).first();
    	$tabs.parent().find('#tab-description').hide();
    	$tabs.parent().find( '.tab-title-description' ).removeClass('active');
    }, 10);

    Regard’s.
    Xtemos Studios.

Viewing 4 posts - 1 through 4 (of 4 total)