Page 1 of 1

FCKeditor

Posted: Mon Sep 04, 2006 6:46 am
by heltinde
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

Re: FCKeditor

Posted: Thu Nov 09, 2006 10:46 am
by gloverxp
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.

Re: FCKeditor

Posted: Tue Nov 14, 2006 4:13 pm
by Cyruse
This seems to be the offending tag.

/* This affects every tag */
* {
border:0 !important; /* again no borders on printouts */
}

Re: FCKeditor

Posted: Tue Nov 14, 2006 4:17 pm
by tsw
you can add

table td {
border:1px dashed black !important;
}

under that.

Re: FCKeditor

Posted: Tue Nov 14, 2006 4:22 pm
by Cyruse
Good idea!  ;D