HI,
We need to add css custom but when we public it, the bold text is added in all the site.
We have inserted the custom CSS, now when we change the custom CSS or we delete completely the custom CSS or we don’t change anything the custom CSS and we make it public, the bold text is added in all the site.
I attached screenshot custom-css.png, product-view-ok.png, product-NO-view.png
This is the code CSS added:
.stecnica table {
width: 80%;
border-collapse: collapse; /* Per evitare spazi tra le celle */
}
/* Colore di sfondo per righe alternate */
tr:nth-child(odd) {
background-color: #f2f2f2;
}
/* Colore di sfondo per righe alternate */
tr:nth-child(even) {
background-color: #ffffff;
}
/* Stile per le celle */
td {
border: 1px solid #ddd;
padding: 8px;
text-align: center;
}
/* Stile per le intestazioni (opzionale) */
th {
/*background-color: #4CAF50;*/
font-weight:bold;
text-align: left;
border: 1px solid #ddd;
padding: 8px;
}
Thanks in advance.
Mesa