I am trying to remove the border in table and increase the font size and weight. I created a custom class to change background color (I would rather have it transparent), and the font weight is only effecting the first row. Please help with:
1. Eliminating border for the custom class (we are using a different table elsewhere)
2. Change background color to transparent
3. Increase font size & weight for all content in table
Thank you!
Hi ckwellington,
Please try the following to remove the border:
.cw-smallform input[type='text'] {
border-color: transparent !important;
}
Not sure you want to set the background colour to transparent though since users won’t be able to see the field? If you still want that add the following to the class above:
background-color:transparent !important;
Try the following to control the font size and colour:
.cw-smallform {
font-size:18px !important;
color:red !important;
}
Regards,
Rikard