if i got two pages, and each one has a table. but i just one table to have border, and one does not have border.
how can i achieve it in custom.css?
anything to do with itemID?
Hi blue777
Could you please clarify a bit your question , maybe you can add screenshots that could help us to better understand it.
Regards
pavit
i have set the border to have 1px #dddddd in custom.css.
but i do not want the table on the page "LOCATION" to show border
so how can i achieve it?
You will need to assign 2 different classes for your tables
<table class="style1"></table> <table class="style2"></table>
table.style1 { //your css here} table.style2 { //your css here}
You can use custom.css for it and stylize them
Hope it helps