Has anyone idea why cell border on this page http://www.skirent.pl/informacje/cennik.html is well rendered in FF, but not in IE and Chrome?

I used CKEditor to generate this table, and I cannot find what I did wrong ;(

link|improve this question

33% accept rate
feedback

1 Answer

You have to specify a border with CSS (currently it isn't).

#subright th{
 border: 1px solid #000;
}

http://www.w3schools.com/css/css_border.asp

I think, you can't do this in CKEditor directly.

link|improve this answer
your idea was good, but then all changes in CKEditor wasn't working. Solution came with new CKE version (3.5) where is possibility to set advanced table settings and add style or class. – mrok Jan 6 '11 at 7:51
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.