Quick question. I'm struggling to get a certain style to stick and I've found the issue.
I have
Code:
.stg_table_transp {border: none; padding: 2px; }
.stg_table_transp td {border: none; }
.stg_table_transp .alt1 {background: #F5F5FF; }
.stg_table_transp .alt2 {background: #F5F5FF; }
set to get a borderless table that's the same color as the background. It all works great apart from the border. That is still there.
I've looked at the code that is generated and copied into an html editor and see that the class for the table is
Code:
<table class="stg_table tborder stg_table_transp">
and if I remove the tborder from that it works fine. So tborder is overwriting my custom style. Is this intentional?
Everything else is fine, and I've created some nice styles now that work really well, it's just the border issue that I just can't seem to work out.
Any suggestions?