i have a forum script that makes a table showing all available topics, it uses the <table border="1" cellpadding="1" cellspacing="0">tag. how can i apply a css class to this.
This more of a html issue.
to apply a class to an element just do class="myclass"
<style type="text/css"> .myclass { //properties and stuff } </style> <table class="myclass">