Greek Yogurt Themes not updating
Permalink
Hi, wonder if anyone can find a solution for this.
http://salemchapelfurniture.co.uk/...
I noticed that the themes which I set are no longer updating in the website. They appear to save in custom themes but do not update in the website.
If I add a block of content then I have to manually add the #hex colour code as it is not being picked up from the theme,same with links etc,
I have cleared the cache but did not make any difference
any assistance much appreciated,
Thanks
http://salemchapelfurniture.co.uk/...
I noticed that the themes which I set are no longer updating in the website. They appear to save in custom themes but do not update in the website.
If I add a block of content then I have to manually add the #hex colour code as it is not being picked up from the theme,same with links etc,
I have cleared the cache but did not make any difference
any assistance much appreciated,
Thanks

If you add a hex code to a content block, the default styling of the theme is going to override it. You need to modify the CSS file of your theme instead. I hope this helps!
Hi and thanks for the reply, in the themes css my default text code is #51b048 however when I go to add content the text colour is #888888 so I have to over ride the font colour manually as it has stopped picking it up from the themes css, I have attached screen shots
In your typography css file on line 77 you have
Try changing it to this
div#main-container p { margin-bottom: 20px; margin-top: 20px; }
Try changing it to this
div#main-container p { margin-bottom: 20px; margin-top: 20px; color: #51b048; }
Just noticed an error in your typography file on line 63,
You have
Try changing it to this
You have
div#main-container, div#main-container ul li { /* customize_p-font */ font-family: 'Merriweather', Georgia, serif; line-height: 1.8em; font-size: 14px; div#main-container #nav-header li { border: 0; } /* customize_p-font */ /* customize_text */ color:#51b048; /* customize_text */
Try changing it to this
div#main-container, div#main-container ul li { /* customize_p-font */ font-family: 'Merriweather', Georgia, serif; line-height: 1.8em; font-size: 14px; /* customize_p-font */ /* customize_text */ color: #51b048; /* customize_text */ } div#main-container #nav-header li { border: 0; }