Okay
  Public Ticket #1410720
Woocommerce
Closed

Comments

  •  21
    Sanjay started the conversation

    Hey, 

    You wouldn't happen to know how to remove the 'description' title word on a single product page in woo commerce? I've managed to adjust the stock colours using this:

    p.stock.in-stock {
        color: #404041 !important;
    }
    p.stock.out-of-stock {
        color: #404041 !important;
    }

    But nothing I try works to remove the word 'description' or even change it's size, as currently it's the same size are body font.

    Thanks

  •  3,034
    Andrew replied

    Hi Sanjay,

    You can remove it with this CSS:

    .woocommerce div.product .woocommerce-tabs .full-width-content ul.tabs li a{
        display:none;
    }

    Add the CSS to salient \ general settings - css script related - custom css code.
    Hope this helps.

  •  21
    Sanjay replied

    Thankyou!