Hi,
you are not closing your CSS commands properly. There must be a closing curly bracket } after the commands.
Please try again with
.wp-table-reloaded td {
font-family: Tahoma;
font-size: 14px;
color: #000000;
}
.wp-table-reloaded-id-2, .wp-table-reloaded-id-2 td, .wp-table-reloaded-id-2 th {
border: none!important;
border-collapse: collapse!important;
border-spacing: 0px!important;
}
Regards,
Tobias
that did the trick, i knew it was something simple, I’m a long time html user just getting started on css. Thanks! Great plug-in too!
Hi,
very cool! Great to hear that this solved it 🙂 Thanks for the confirmation.
Best wishes,
Tobias
I have another question now…I’m trying to bold row 3 and 6 in table 2 (the front page featured cart section) because it is the price I don’t want to use strong commands in the individual cells, because the client wants to edit cells on his own so id rather do custom css
below is the custom css i tried to use but it is not working
.wp-table-reloaded-id-2 .row-3
.wp-table-reloaded-id-2 .row-6 {
font-weight: bold!important;
}
below is my entire custom css
.wp-table-reloaded-id-2 td {
text-align:center;
vertical-align:middle;
}
.wp-table-reloaded td {
font-family: Tahoma;
font-size: 14px;
color: #000000;
}
.wp-table-reloaded-id-2, .wp-table-reloaded-id-2 td, .wp-table-reloaded-id-2 th {
border: none!important;
border-collapse: collapse!important;
border-spacing: 0px!important;
}
.wp-table-reloaded-id-2 .row-3
.wp-table-reloaded-id-2 .row-6 {
font-weight: bold!important;
}
page in question is here
Thanks!
Hi,
this should be fairly simply: There’s a comma missing in the code. Please try
.wp-table-reloaded-id-2 .row-3 td,
.wp-table-reloaded-id-2 .row-6 td {
font-weight: bold!important;
}
Regards,
Tobias