|
#1

Oct 9, 2014, 02:20 AM
|
|
Hi
I would like to know how to change the background color for Montezuma theme?
Currently the site has white background and like to change to differenct color.
Please suggest
Thanks
Knev
|
#2

Oct 9, 2014, 04:30 AM
|
 |
|
|
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
|
|
go to MTO->CSS Files->Content.css and add your css to change the body however you want.
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
|
#3

Oct 9, 2014, 09:15 AM
|
|
Hi
The css file name is 10-content.css, applied this change
/************************************************** ******************
<BODY> for TEXT
************************************************** ******************/
body
{
margin: 0;
padding: 0;
font-family: "Segoe UI", "Lucida Grande", "Helvetica Neue", sans-serif;
font-size: 15px;
opacity: 0; /* <--- will be turned on ( = set to '1' ) with jQuery
after google fonts, if any, have loaded and masonry layout,
if any, was applied */
background-color: #8181F7;
}
The background color did not changed.
What else to change?
Please help
Thanks
Knev
|
#4

Oct 9, 2014, 05:10 PM
|
 |
|
|
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
|
|
That code works for me so I would assume you have a typo. What is the url?
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
|
#5

Oct 10, 2014, 06:56 AM
|
|
I applied the code for this website http://vamclays.com
But does not work.
Can you please help ?
|
#6

Oct 10, 2014, 04:44 PM
|
 |
|
|
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
|
|
please go to MTO->Export/Import settings and copy your export to a TEXT file and attach it to a reply.
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
|
#7

Oct 11, 2014, 03:00 AM
|
|
Hi
Please check the attachment
Thanks
Knev
|
#8

Oct 11, 2014, 04:50 AM
|
 |
|
|
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
|
|
I just noticed you said you changed '10-content.css' (???)
In post #2 I told you to go to 'MTO->CSS Files->Content.css' and make the change. How did you colclude you should change '10-content.css' from that? Did I confuse you?
MTO refers to the Montezuma Theme Options in the WordPress backend. (Dashboard->Appearances->Montezuma Theme Options)
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
|
#9

Oct 13, 2014, 08:12 AM
|
|
If the background is changed, the content area also changes.
Is it possible to change only background, with out making changes to content area layout?
|
#10

Oct 13, 2014, 12:15 PM
|
 |
|
|
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
|
|
The content area does not change color - it has no color assigned to it (it's transparent) so the body color shows thru. You just need to use some CSS on the main section
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
|
#11

Oct 13, 2014, 01:13 PM
|
|
Hi
If you check my site http://vamclays.com/, this has background color
body {
background-color: #C9C9FF;
But the content area background also changed, how can i set this area only white background?
Thanks
Knev
|
#12

Oct 13, 2014, 02:13 PM
|
 |
|
|
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
|
|
You need to learn a little. Use a code examiner (like the FireBug extension in FireFox) and find the <div...> that surrounds the main content. See if it has an ID=... and then you can code your CSS selector and CSS rule to apply to that section of the page.
While I could give you the answer...read my signature
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
|
|