3
hi'
You should try to add a piece of code in style.css
As bjuti said, a border will appear if you add at the right place
table tr td {border: 1px solid #000}
But if you do so, all your tables displayed on your site will get borders.
So you have to be more specific, and only apply your new style to smartsection.
#smartsection table {border: 1px solid #000}
(if this instruction does not work properly, add !important after #000 or make sure that directory name for smartsection is really /smartsection).
Now all your tables displayed with smartsection will have a border. But it is not enough precise (eg : notification box may have also a black border, not the aim).
The more easy way to proceed is to identify your table in template directly. Like this :
<table class="i-want-a-black-border"><tr><td>...
... and add css instruction somewhere in style.css
#smartsection table.i-want-a-black-border tr td {border: 1px solid #000}
I hope it works :)
Still learning CSS and... english