Modifying Theme Colors
Permalink
I've been trying for two hours to modify the background color of my page's theme. The tool seems to have no effect, even in the tool window.
Do I have to learn HTML?
Do I have to learn HTML?
you need to know some minor css, what theme?
It's Earthtones Water...
So how do I find/access my CSS file?
It will be in your sitename/themes folder OR in the sitename/packages folder.
I'm not familiar with Earthtones Water myself so take this post with a grain of salt, but sometimes if I switch between themes Concrete5 keeps some of the old colors if the labels in the CSS are the same.
So to prevent this, under the dashboard, go to Pages and Themes (side menu) and hit the "Customize" button under your activated theme. This brings up the color customization window. Again, not familiar with Earthtones Water but most if not all official themes allow for color control through this panel. Anyway, at the bottom left, hit "Reset". This will ensure that you have no color "ghosts" lingering from a previous customized theme.
Also, I've noticed that the preview window here in Pages and Themes often doesn't update when a new color is selected. If this is occuring, hit "Save" and check the actual website to see if the color has updated. 9 times out of 10 the problem is the preview window (as a warning, hitting "Save" updates the published site, so run this on a test server first :) ).
If either item above doesn't help, follow bcarone's directions above to the css files and try editing them manually.
So to prevent this, under the dashboard, go to Pages and Themes (side menu) and hit the "Customize" button under your activated theme. This brings up the color customization window. Again, not familiar with Earthtones Water but most if not all official themes allow for color control through this panel. Anyway, at the bottom left, hit "Reset". This will ensure that you have no color "ghosts" lingering from a previous customized theme.
Also, I've noticed that the preview window here in Pages and Themes often doesn't update when a new color is selected. If this is occuring, hit "Save" and check the actual website to see if the color has updated. 9 times out of 10 the problem is the preview window (as a warning, hitting "Save" updates the published site, so run this on a test server first :) ).
If either item above doesn't help, follow bcarone's directions above to the css files and try editing them manually.
Your body background consists of an image that is repeated on the "X" axis (Horizontally) from the top of the page, it is 519 pixels high, behind this image is a basic background colour of #18455F, this background colour is similar to the colour at the bottom of the image so that you have a watery type colouration at the top of the page changing to a flat blue colour after 519 pixels,
You have the background colour being called twice in your css files,
In the typography.css file it declares
and, in the minimalist_base.css file it declares
You have the background colour being called twice in your css files,
In the typography.css file it declares
body { /* customize_body */ font: normal normal 14px Arial; /* customize_body */ /* customize_body */ color: #eee; /* customize_body */ line-height:21px; background:#18455f url(./images/main_bg.png) repeat-x top; }
and, in the minimalist_base.css file it declares
body {/* customize_background */ background-color: #000; /* customize_background */ padding: 0px; margin: 0px; }
I can't get my custimized thiem to work on the site It looks good in the preveiw What I'm I doing wrong
I can't help you but, I've got the same problem.
Same here.
It would help to give us your site url so that we can check out your css files,
It could be a case of double declaration whereby your css styling is being overridden by another css file or even an inline css code.
It could be a case of double declaration whereby your css styling is being overridden by another css file or even an inline css code.
I've noticed that the customization css is very specific in it wording. I spent 3 hours tracking down some issues on Monday. I might suggest that you make sure the code is correct and, of course, clear your cache and refresh your page.