How do I add a border to a table located in the center column?
I tried using .centerColumn-table, .centerColumntable, .table in the CSS file, but none work and I know there must be a way to do it.
Please advise.
thanks!
How do I add a border to a table located in the center column?
I tried using .centerColumn-table, .centerColumntable, .table in the CSS file, but none work and I know there must be a way to do it.
Please advise.
thanks!
.centerColumn-table or .centerColumntable would apply to an element with that class name, which does not exist.
.table would apply to an element with a class tag of "table", not to an HTML table.
.centerColumn table {} would apply as you want, but it would apply to any tables on any page in the center column, which might be a problem.
A link to your site will allow advice on specific selectors to use.
my website is: www.amnyperfumes.com/zen-cart
Look forward to your feedback. thanks a lot!
You don't actually have any tables in your home page center column, just divs including the one with your text.
Add to your stylesheet:
Code:#indexCategoriesMainContent { border: 1px dotted #666666; }
I am sorry for not specifying before that the table that I have is in one of the moreinformation.php pages:
http://www.amnyperfumes.com/zen-cart...t8abnisa0bnkm2
Repeat for any other pages with tables.Code:#pageTwoMainContent table { border: 1px dotted #666666; }
It worked!thanks a lot. =)