|
|
|
Supreme Being
      
Group: Customers
Last Login: 22/09/2008 15:59:25
Posts: 693,
Visits: 2,418
|
|
Ok.. this is weird...
The background-color (input area) of my wysiwyg richtext box is a nice dark color (#303030) on my local installation (currently, I have no idea how it got that way... but it is just what I want)... but on my production installation (hosted account) it is white... and since my text color is gray in color, this doesn't work well...
So, I made sure that my skins .css file was up to date on the web server... and it was...
I have not modified any InstantForum code...
Any ideas?
..:: Bare ::.. http://www.livingformetal.com
|
|
|
|
|
Supreme Being
      
Group: Customers
Last Login: 11/06/2008 22:22:08
Posts: 146,
Visits: 657
|
|
| Did you figure this out Bare? I've just come up against the same problem while playing with a new darker skin...
-- http://www.the-pork.net ... highly customized version of InstantForum.
|
|
|
|
|
Supreme Being
      
Group: Customers
Last Login: 11/06/2008 22:22:08
Posts: 146,
Visits: 657
|
|
| Ahh.. ok... I see where you set the background colors etc. for the RichTextBox controls... you have to go into each ASCX file and edit the textbox there...
-- http://www.the-pork.net ... highly customized version of InstantForum.
|
|
|
|
|
Forum Newbie
      
Group: Forum Members
Last Login: 07/10/2006 15:15:28
Posts: 4,
Visits: 10
|
|
| How do you change RichTextBox properties. Where do you access the editor? Its not in the style editor that I am aware of.
|
|
|
|
|
IF.NET 4.2 Coming Soon
      
Group: Administrators
Last Login: Today @ 15:31:12
Posts: 1,956,
Visits: 3,016
|
|
| Hi All, That's correct to modify the WYSIWYG editor currently you will need to modify the properties of the control within each user control. These are shown below... <RichTextBox:RichTextBox CssClass="FormInputText" // the CSS class to control the font style ToolbarColor="#F6F6F6" // the color of the toolbars, light gray by default BackColor="#FFFFFF" // the background color for the text area by default white BorderColor="#7F9DB9" // the color of the thin border that surrounds the control RichTextBoxHeight="250" // the height for the text area ToolbarItemOver="#FFEEC2" // the color used when mousing over toolbar button ToolbarItemOverBorder="#000080" // the border color applied when mousing over toolbar button MenuItemBackGroundColor="#F6F6F6" // the background color of toolbar buttons ID="txtPost" TabIndex="3" runat="Server"/> You can find the WYSIWYG control in the following files... 
With v4.1.5 we will be looking to move all these to the central Style.css file to ensure it's easier to change and maintain between any update. I hope this helps a little. BTW : Bare i still have a few things i need to let you know about. I've resolved some of your other issues. I'll reach you on MSN tomorrow. Hope your all well
 Kindest Regards,
Ryan Healey Director / Developer
Explore our products... http://demos.instantasp.co.uk/
|
|
|
|