// Hide General.
.details-table tr:nth-child(1) td:first-child p:first-child {
display: none;
}
// Add new title to General.
.details-table tr:nth-child(1) td:first-child::after {
content: "New Title 1";
}
// And so on for the rest.
.details-table tr:nth-child(2) td:first-child p:first-child {
display: none;
}
.details-table tr:nth-child(2) td:first-child::after {
content: "New Title 2";
}
.details-table tr:nth-child(3) td:first-child p:first-child {
display: none;
}
.details-table tr:nth-child(3) td:first-child::after {
content: "New Title 3";
}
.details-table tr:nth-child(4) td:first-child p:first-child {
display: none;
}
.details-table tr:nth-child(4) td:first-child::after {
content: "New Title 4";
}
.details-table tr:nth-child(5) td:first-child p:first-child {
display: none;
}
.details-table tr:nth-child(5) td:first-child::after {
content: "New Title 5";
}
.details-table tr:nth-child(6) td:first-child p:first-child {
display: none;
}
.details-table tr:nth-child(6) td:first-child::after {
content: "New Title 6";
}