Closed toqitahamid closed 6 years ago
As for now you can hide it with CSS :
.dwspecs-product-table-group .group-title{
display: none;
}
To make sure that you don't hide group names that are needed i suggest to remove only the first group name, because as i can guess you wan't a single group table:
.dwspecs-product-table-group:first-child .group-title{
display: none;
}
Thank you so much.
On Jan 16, 2018 11:16 PM, "Amin A. Rezapour" notifications@github.com wrote:
As for now you can hide it with CSS : .dwspecs-product-table-group .group-title{ display: none; }
To make sure that you don't hide group names that are needed i suggest to remove only the first group name, because as i can guess you wan't a single group table: .dwspecs-product-table-group:first-child .group-title{ display: none; }
— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/dornaweb/product-specifications/issues/1#issuecomment-358035267, or mute the thread https://github.com/notifications/unsubscribe-auth/ACBEoqN-bmuR5VaZkho0sh9Of7MvbNMIks5tLNl0gaJpZM4RSWtL .
How can I remove the group name from the product specification tabs?