Page 1 of 1

Re: HTML Table

Posted: Tue Jan 19, 2010 4:07 pm
by klenkes
Looks to me that you are using the almost not changed template that came with CMSMS. In the stylesheets almost all elements have set their borders to zero. It's called a reset.
You have to define your own styles for table tr and td!

Like:

Code: Select all

table {width:100%; border:1px solid #CCC; font-size:1.2em;}
td {padding:5px 10px; border-bottom: 1px solid #CCC;}
Just as an example...

Bernd