Hi All,
I am facing an issue with the left and upper borders are missing in CKEditor. When I searched in google, I got the below link
http://dev.ckeditor.com/ticket/3524
In the above link, it is mentioned that the below code can be used to get the left and upper border if we are using the office2003 skin but it is not working for me. I tried adding this in turn in toolbar.css, editor.css and mainui.css but i am not getting these borders. I also tried removing the 'td.' in 'td.cke_top' but still can't get it working.
Any help is appreciated.
.cke_skin_office2003 td.cke_top {
border-left-color: #696969;
border-top-color: #696969;
}
I am facing an issue with the left and upper borders are missing in CKEditor. When I searched in google, I got the below link
http://dev.ckeditor.com/ticket/3524
In the above link, it is mentioned that the below code can be used to get the left and upper border if we are using the office2003 skin but it is not working for me. I tried adding this in turn in toolbar.css, editor.css and mainui.css but i am not getting these borders. I also tried removing the 'td.' in 'td.cke_top' but still can't get it working.
Any help is appreciated.
.cke_skin_office2003 td.cke_top {
border-left-color: #696969;
border-top-color: #696969;
}

Attachments:
In my project, earlier they were using FCKEditor with office 2003 skin. It has the left and top borders displayed as shown in the attached screenshot with the title 'FCK Editor with office 2003 skin'.
Now, i am upgrading it to CKEditor with office 2003 skin but i am not seeing the left and top borders as shown in the screenshot with the title 'CK Editor with office 2003 skin'.I am trying to show these borders CKEditor to keep the same look and behavior.
Please let me know if I am missing something.
Attachments:
border-top and border-left were set to white color. I changed the color for border-top and border-left for 'cke_skin_office2003 .cke_top' section in editor.css file and then the left and upper borders are displayed with the changed color.
Thank you.