[SOLVED] Micro Tiny Dark Background & Dark Text
-
- Forum Members
- Posts: 82
- Joined: Mon Jul 09, 2007 6:17 pm
[SOLVED] Micro Tiny Dark Background & Dark Text
Hi
I have done a clean install of cmsms 1.10.3 and installed a theme I like.
The Micro Tiny text editor has a dark background colour and also dark text which makes it impossible to read.
How can I change this?
I have done a clean install of cmsms 1.10.3 and installed a theme I like.
The Micro Tiny text editor has a dark background colour and also dark text which makes it impossible to read.
How can I change this?
Last edited by forextrader36 on Wed Apr 11, 2012 10:19 am, edited 1 time in total.
Re: Micro Tiny Dark Background & Dark Text
"There are 10 types of people in this world, those who understand binary... and those who don't."
* by the way: English is NOT my native language (sorry for any mistakes...).
Code of Condut | CMSMS Docs | Help Support CMSMS
My developer Page on the Forge
GeekMoot 2015 in Ghent, Belgium: I was there!
GeekMoot 2016 in Leicester, UK: I was there!
DevMoot 2023 in Cynwyd, Wales: I was there!
* by the way: English is NOT my native language (sorry for any mistakes...).
Code of Condut | CMSMS Docs | Help Support CMSMS
My developer Page on the Forge
GeekMoot 2015 in Ghent, Belgium: I was there!
GeekMoot 2016 in Leicester, UK: I was there!
DevMoot 2023 in Cynwyd, Wales: I was there!
-
- Forum Members
- Posts: 82
- Joined: Mon Jul 09, 2007 6:17 pm
Re: Micro Tiny Dark Background & Dark Text
Yes, I did search and read that same post you found but it doesn't make any sense to me.
I was hoping somebody might be able to explain it in more detail.
It talks about setting body, and text colour but it doesn't say where to do it or how to do it. It mentions a template but doesn't say which one and it mentions #pagewrapper which I don't know what the relevance of that is.
So..........
I have done a clean install of cmsms 1.10.3 and installed a theme I like.
The Micro Tiny text editor has a dark background colour and also dark text which makes it impossible to read.
How can I change this?
I was hoping somebody might be able to explain it in more detail.
It talks about setting body, and text colour but it doesn't say where to do it or how to do it. It mentions a template but doesn't say which one and it mentions #pagewrapper which I don't know what the relevance of that is.
So..........
I have done a clean install of cmsms 1.10.3 and installed a theme I like.
The Micro Tiny text editor has a dark background colour and also dark text which makes it impossible to read.
How can I change this?
Last edited by forextrader36 on Fri Apr 06, 2012 11:17 am, edited 1 time in total.
Re: Micro Tiny Dark Background & Dark Text
In the default templates there is...
</__body>
<div id="pagewrapper"> This page wrapper is the first div that wraps the whole page...
In the style sheet attached to the page template...
body {
margin: 1em;
color: #333; change to black/#000
background-color: #CCC; change to white/#FFF
}
div#pagewrapper {
width: 960px;
margin: 0 auto;
color: black;
background-color: #FFF;
border: 1px solid black;
}
This is where you would change the body background and text color to make it so tiny/MT editing shows a white background with a dark/black text
</__body>
<div id="pagewrapper"> This page wrapper is the first div that wraps the whole page...
In the style sheet attached to the page template...
body {
margin: 1em;
color: #333; change to black/#000
background-color: #CCC; change to white/#FFF
}
div#pagewrapper {
width: 960px;
margin: 0 auto;
color: black;
background-color: #FFF;
border: 1px solid black;
}
This is where you would change the body background and text color to make it so tiny/MT editing shows a white background with a dark/black text
-
- Forum Members
- Posts: 82
- Joined: Mon Jul 09, 2007 6:17 pm
Re: Micro Tiny Dark Background & Dark Text
What do you mean by the 'Default Template'?
I can't remember which template was set as default when I first installed cmsms, the default template now is the one from the theme I have installed.
I don't want to change the background colour of my website too?
I can't remember which template was set as default when I first installed cmsms, the default template now is the one from the theme I have installed.
I don't want to change the background colour of my website too?
Re: Micro Tiny Dark Background & Dark Text
Meaning one of the "default templates" installed on first setting up a CMSMS site...
This was just an example you may need to change some of the words to suit your case...
A link to the page/site might help...
This was just an example you may need to change some of the words to suit your case...
A link to the page/site might help...
-
- Forum Members
- Posts: 82
- Joined: Mon Jul 09, 2007 6:17 pm
Re: Micro Tiny Dark Background & Dark Text
For that template I would put one more div around the <div id="wrapper"> and put the body background: #002236 url(/uploads/elegantblue/img01.gif) repeat-x; and color: #181B20; in/on it...
Like <div id='pagewrap'>
Then...
#pagewrap {
margin: 0;
padding: 0;
background: #002236 url(/uploads/elegantblue/img01.gif) repeat-x;
font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
color: #181B20;
}
Then the body can be...
body {
background: #FFF;
color: #000;
}
Like <div id='pagewrap'>
Then...
#pagewrap {
margin: 0;
padding: 0;
background: #002236 url(/uploads/elegantblue/img01.gif) repeat-x;
font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
color: #181B20;
}
Then the body can be...
body {
background: #FFF;
color: #000;
}
-
- Forum Members
- Posts: 82
- Joined: Mon Jul 09, 2007 6:17 pm
Re: Micro Tiny Dark Background & Dark Text
Ok I did what you said which did fix the MicroTiny background issue but then I had a white border all around the edge of my website.
I figured out that I could just add in the margin and padding to the code provided above to make it:
body {
margin: 0;
padding: 0;
background: #FFF;
color: #000;
}
I'm not sure if that is the right thing to do but it did get rid of most of the white border but there is still a white section right at the bottom of the page?
I figured out that I could just add in the margin and padding to the code provided above to make it:
body {
margin: 0;
padding: 0;
background: #FFF;
color: #000;
}
I'm not sure if that is the right thing to do but it did get rid of most of the white border but there is still a white section right at the bottom of the page?
Re: Micro Tiny Dark Background & Dark Text
You have a 40px margin at the bottom of the footer which pushes it away from the bottom of the browser window...
Simple Solution
There is a Simple solution that does not require changing your template:
How to set MicroTiny background and font color
How to set MicroTiny background and font color
-
- Forum Members
- Posts: 82
- Joined: Mon Jul 09, 2007 6:17 pm
Re: Micro Tiny Dark Background & Dark Text
Thanks Dr.CSS & kendo451 for your suggestions.