Hi
I use CMSMS 1.0beta5. When I want to create tables in WYSIWYG mode, I can't get to see the borders - it feels like working in the blind. In the testing area (settings) the borders are visible. How do I solve this problem? Do I need to update FCKeditor? If yes, then how do I do it?
Regards
FCKeditor
Re: FCKeditor
Hi,
I'm having the same problem. I have noticed that if you use the 'Minimal Template' then you are able to see the borders around the table.
I agree, working without the boundries is a real pain.
EDIT:
I've found the offending Stylesheet, it's 'print' that is causing the invisible lines. I'm going to investigate further, but for now try removing the 'print' style from the template you are using.
I'm having the same problem. I have noticed that if you use the 'Minimal Template' then you are able to see the borders around the table.
I agree, working without the boundries is a real pain.
EDIT:
I've found the offending Stylesheet, it's 'print' that is causing the invisible lines. I'm going to investigate further, but for now try removing the 'print' style from the template you are using.
Last edited by gloverxp on Thu Nov 09, 2006 11:17 am, edited 1 time in total.
Re: FCKeditor
This seems to be the offending tag.
/* This affects every tag */
* {
border:0 !important; /* again no borders on printouts */
}
/* This affects every tag */
* {
border:0 !important; /* again no borders on printouts */
}
Re: FCKeditor
you can add
table td {
border:1px dashed black !important;
}
under that.
table td {
border:1px dashed black !important;
}
under that.