Home Forums WoodMart support forum Product description on mobile

Product description on mobile

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

    Giannin
    Participant

    In the product page in desktop mode, the product description is always visible and the words ‘description’ have been made invisible through the CSS shown below.
    .wc-tab-inner > h2:nth-child(1){
    font-size: 0.5px;
    display: none;
    }
    .wd-tabs-title{
    font-size: 0.5px;
    letter-spacing: 25px; color: rgba(0,0,0,0);
    }

    In mobile mode, on the other hand, on the product page, the words ‘description’ are present and the product description appears in accordion mode. How can I make it always visible (not accordion) and hide the words ‘description’ like in desktop mode?

    #363596

    Bogdan Donovan
    Keymaster

    Hi,

    Accordion for product description on mobile can’t be disabled using custom code, but you can hide accordion title too by using following custom code.

    .woocommerce-tabs.wd-accordion .wd-accordion-title {
    	display: none;
    }
    
    .woocommerce-tabs.wd-accordion .woocommerce-Tabs-panel {
    	margin-top: 30px;
    }

    Kind Regards

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