Gossamer Forum
Home : Products : Gossamer Forum : Discussion :

Background color in advanced editor

Quote Reply
Background color in advanced editor
Hi,



Where is it that the color is assigned to the background color for the advanced editor? It is currently white and I would like to change it.



Thanks in advance!
Quote Reply
Re: [Teambldr] Background color in advanced editor In reply to
Along with the BG color I think I would need to change the default font color within the editor.



Any ideas?Crazy
Quote Reply
Re: [Teambldr] Background color in advanced editor In reply to
Hi Brian,

Look at the advanced_editor_... global variables; they control the color.

Jason Rhinelander
Gossamer Threads
jason@gossamer-threads.com
Quote Reply
Re: [Jagerman] Background color in advanced editor In reply to
Hi Jason,



I was able to find the BG but not the font color. The font itself is there but no global for the font color in the advanced editor. Any ideas?
Quote Reply
Re: [Teambldr] Background color in advanced editor In reply to
Hi Brian,

Take a look at the editor_editor.html template, in the 'common' template set. There is a style tag at the beginning that defines the font used. It should be a matter of simply adding a 'color' style.

Jason Rhinelander
Gossamer Threads
jason@gossamer-threads.com
Quote Reply
Re: [Jagerman] Background color in advanced editor In reply to
<style>
body {
background-color : <%advanced_editor_background%>;
font-family : "<%advanced_editor_font%>";
font-size : "x-small"; <%-- font sizes 1-7: xx-small,x-small,small,medium,large,x-large,xx-large --%>
}
</style>

Is this the section Jason?

I would like to do white as the color.
Quote Reply
Re: [Teambldr] Background color in advanced editor In reply to
Yup, that should do it.

Jason Rhinelander
Gossamer Threads
jason@gossamer-threads.com
Quote Reply
Re: [Jagerman] Background color in advanced editor In reply to
Where should I add this and is this the right way to do it?

<font color="#FFFFFF">
Quote Reply
Re: [Teambldr] Background color in advanced editor In reply to
Try:

<style>
body {
background-color : <%advanced_editor_background%>;
font-family : "<%advanced_editor_font%>";
font-size : "x-small"; <%-- font sizes 1-7: xx-small,x-small,small,medium,large,x-large,xx-large --%>
color: #ffffff;
}
</style>

Jason Rhinelander
Gossamer Threads
jason@gossamer-threads.com
Quote Reply
Re: [Jagerman] Background color in advanced editor In reply to
That was it Jason.

Thanks a lot!Cool