I played with HTML a bit and was able to edit the table style and now have a bottom border. Not sure where the other styles go or exactly what the format is. Not sure I understand why not an FCKeditor question. Is it impossible to create a teble with border all around with editor? I have never been able to find a list of class codes but would love to have someone explain how I could use that to create a border.
Sorry. When I place "border: 1px solid #000;" in style field I get the desired results. Maybe a bit dense tonight. Is there a way to border every cell or does that have to be one at a time. I want to have 2 pixel border around all and 1 around individual cells. Thanks for help.
Re: Table Borders
If you add this to your stylesheet you'll get the results that you want:
table { border: 1px solid #000; } td { border-width: 0; } thead td, thead th { border-width: 0 0 1px 0; }Personally I would use a class on the table so it doesn't affect other tables but that's up to you.
Re: Table Borders
I played with HTML a bit and was able to edit the table style and now have a bottom border. Not sure where the other styles go or exactly what the format is.
Not sure I understand why not an FCKeditor question. Is it impossible to create a teble with border all around with editor?
I have never been able to find a list of class codes but would love to have someone explain how I could use that to create a border.
Re: Table Borders
Thanks for help.