Site logo

Archived topic

I want to boxes like this. Is it possible with this theme

17 replies · Started by Bharat on April 10, 2019

Viewing posts 16–18 of 18

Ok got it.
Can you tell me how to add a background color inside a table row

You would need to convert the block to HTML then look for the <tr>row content here</tr> you wish to change. And then add a class to that element eg.

<tr class="red-row">row content here</tr>

Then use some CSS e.g

tr.red-row {
    background-color: red;
}
This archived topic is closed to new replies.