| Author |
Topic Search Topic Options
|
donstar
Newbie
Joined: 04 January 2004
Location: Scotland
Status: Offline
Points: 35
|
Post Options
Thanks(0)
Quote Reply
Topic: WYSIWYG error? Posted: 29 April 2006 at 10:08am |
When I have the WYSIWYG editor turned on the Quick Reply window becomes transparent (I have a background image so it looks awful!) and the scroll bar disappears. When I have it turned off everything looks and works great. I noticed the scroll bar disappears on this Forum too so I don't think it's an upload error. I'm using Access DB and v8.01 Is it just me, or is there an error?
Edit to say that it also does it with the Reply window and the Quote window.
Edited by donstar - 29 April 2006 at 10:12am
|
 |
WebWiz-Bruce
Admin Group
Web Wiz Developer
Joined: 03 September 2001
Location: Bournemouth
Status: Offline
Points: 9844
|
Post Options
Thanks(0)
Quote Reply
Posted: 02 May 2006 at 12:45pm |
|
Do you have an example as it is hard to tell what exactly you mean without seeing an example?
|
|
|
 |
donstar
Newbie
Joined: 04 January 2004
Location: Scotland
Status: Offline
Points: 35
|
Post Options
Thanks(0)
Quote Reply
Posted: 02 May 2006 at 9:30pm |
Screenshots from my Forum. WYSIWYG is turned on in Forum Preferences but when I turn WYSIWYG Editor off/on in my user settings this is what I see.
http://www.dundeestars.com/wysiwygerror.asp
|
 |
wistex
Mod Builder Group
Joined: 30 August 2003
Location: United States
Status: Offline
Points: 877
|
Post Options
Thanks(0)
Quote Reply
Posted: 03 May 2006 at 2:05am |
|
About the scroll bar: it only appears when you have enough text to display the scroll bar. For example, in the Quick Reply window, if you have more than 7 lines of text, the scroll bar magically appears. :)
|
|
|
 |
WebWiz-Bruce
Admin Group
Web Wiz Developer
Joined: 03 September 2001
Location: Bournemouth
Status: Offline
Points: 9844
|
Post Options
Thanks(0)
Quote Reply
Posted: 03 May 2006 at 9:44am |
|
wistex is quite right the scroll bar will only appear when required.
The background problem is due to your modifications in the
'css_style/default_style.css' file, when you changed the look and
layout to your forum.
In this file you will find the following CSS style:-
.WebWizRTEtextarea{
background-color: #FFFFFF;
font-size: 12px;
}
Make sure the background-colour for .WebWizRTEtextarea is set to
#FFFFFF for white and you do not have a background image specified for
this CSS class
This should then correct the problem, if not, keep messing with the CSS
file as the problem is a setting that has been changed in this file.
|
|
|
 |
DeadMeat
Newbie
Joined: 24 January 2006
Status: Offline
Points: 32
|
Post Options
Thanks(0)
Quote Reply
Posted: 03 May 2006 at 11:24am |
Hi Borg
I have the same thing on my site, but on my site it actually fits so no problem. As to the problem, it would appear that if you put in a background image in the body tag in the css file, then it appears to be applying it to the RTE page (this is probably due to the way css inheretance is handled, could be wrong though), as the css file is included in the RTE page. Not too sure how to override it with a blank image, or to just force it not to display an image.
I hope that this helps, or maybe I just got it all wrong. By the way this same thing happens in both IE and FF.
Thanks
DM
|
 |
wistex
Mod Builder Group
Joined: 30 August 2003
Location: United States
Status: Offline
Points: 877
|
Post Options
Thanks(0)
Quote Reply
Posted: 03 May 2006 at 11:49am |
|
Yes, CSS can get tricky like that. You should be able to specify a background image for the RTEtextarea and that would override the background specified for the page. You might have to create a 1 pixel x 1 pixel white image to use as a background for the RTE, and doing so should override the body's background image.
|
|
|
 |
donstar
Newbie
Joined: 04 January 2004
Location: Scotland
Status: Offline
Points: 35
|
Post Options
Thanks(0)
Quote Reply
Posted: 03 May 2006 at 9:21pm |
-boRg- wrote:
The background problem is due to your modifications in the 'css_style/default_style.css' file, when you changed the look and layout to your forum.
In this file you will find the following CSS style:-
.WebWizRTEtextarea{ background-color: #FFFFFF; font-size: 12px; }
Make sure the background-colour for .WebWizRTEtextarea is set to #FFFFFF for white and you do not have a background image specified for this CSS class
This should then correct the problem, if not, keep messing with the CSS file as the problem is a setting that has been changed in this file. |
This is my current settings in default_style.css
/* Rich Text Editor */ .WebWizRTEbutton{ border: #EFEFEF 1px solid; }
.WebWizRTEtextarea{ background-color: #FFFFFF; font-size: 12px; }
.RTEbutton{ background-color: #E6E7F2; }
|
 |