MyBB Community Forums

Full Version: Notice? & round trow corners
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3 4
[Image: 5af926d5cf202e62a0663be3cfdb519f.png]

This is with the Transparent
oh that border. Try this:

table >tbody>tr>td:first-child {
border-left: 1px solid red;
}
table >tbody>tr>td:last-child {
border-right: 1px solid red;
}

if you want it only to affect tables with the class of tborder, do this:

table.tborder >tbody>tr>td:first-child {
border-left: 1px solid red;
}
table.tborder >tbody>tr>td:last-child {
border-right: 1px solid red;
}
Worked Perfect Thank you Smile
Pages: 1 2 3 4