Hi There,
I searched the forums & tried to implement some custom CSS with a custom CSS class but it doesnt seem to be working.
Here is the code I implemented: https://codeshare.io/5ePzlr
This is the custom class I made: http://imgur.com/a/LvvS8
But nothing is changing on my site under: Ready to make profit? section
Hey jolian123,
You are trying to apply css to the first row?
Best regards,
Jordan Shannon
Hi Jordan,
Yes I am, I was just testing out the code but nothing was chaning
Thanks
Hi,
Try the following:
tr:first-child th, tr:first-child td {
background: red!important;
}
Best regards,
Jordan Shannon
Thank you!
Would you know how to make the third column font weight bold as well?
Hi,
Add the following and modify to target the intended table id:
table td:nth-child(3){
font-weight:bold
}
Best regards,
Jordan Shannon