-
AuthorPosts
-
February 22, 2015 at 7:25 pm #212515
Hi Guys,
Please can you give me code to change the footer background color. I can see in customizer that you can either make it transparent or not, I want to change the actual background color.
Thanks
February 23, 2015 at 1:38 am #212704Hey there,
The Footer has top and bottom parts. For the top part, please add the code below in your Appearance > Customize > Custom > CSS.
.x-colophon.top { background: red; }
For the bottom part, add
.x-colophon.bottom { background: red; }
For the whole footer, use
.x-colophon { background-color: red; }
Hope that helps. 🙂
February 24, 2015 at 1:59 pm #214234Thanks Guys
February 24, 2015 at 8:16 pm #214465Glad we could help, Cheers!
August 3, 2015 at 5:33 pm #348979This reply has been marked as private.August 3, 2015 at 9:25 pm #349130Hi there,
Thanks for updating the thread! Do you mean because the color doesn’t extend to the sides? This is because of the boxed layout. You will need to use full-width for it to work. Then we may need to restrict the other content band’s width with CSS.
Please let us know what you would like to accomplish – thanks!
August 4, 2015 at 3:17 pm #350032This reply has been marked as private.August 4, 2015 at 7:19 pm #350177Hi again,
To change the footer font color, you can use this code:
footer a:hover { color: blue; } footer a, .x-colophon.top .widget { color: red; }
Full width templates does not include the sidebar.
Hope this helps!
September 17, 2015 at 5:11 pm #394332Why make this a custom CSS instead having the capability of choosing the footer background color in the layout and design or the footer section?
September 17, 2015 at 10:28 pm #394545We certainly appreciate the feedback! This is something we can add to our list of feature requests. This way it can be taken into consideration for future development. But note that Custom CSS and JavaScript is also a great feature to enhance the customization option out of the box. For example you can set a RGBA color or background image etc for the footer when you use custom CSS but adding options for everything might be a bit messy for the Customizer.
Hope this helps.
Cheers!
September 18, 2015 at 9:37 am #395013@Themeco … I would agree that Custom CSS and JavaScript allow for a lot of customization but one has to know what the appropriate ID is for each and every element in a theme. And, with firebug — when it works — it can be quite difficult to figure out the appropriate ID to assign CSS to.
September 18, 2015 at 12:52 pm #395171Thank you for your feedback, Jeff! We’ll forward it to our developers for future consideration.
October 30, 2015 at 6:30 pm #646941Hi.
With this css:footer a:hover {
color: blue;
}
footer a, .x-colophon.top .widget {
color: red;
}..the only thing what works for me on the footer fonts colors, is red.. and only text from the text widget.. and i have no idea what im doing wrong..
I do agree that it would be nice to have some more options..October 30, 2015 at 10:19 pm #647137Hello There,
Thanks for updating this thread!
To change the font colors in your footer, please add the following css code in the customizer, Appearance > Customize > Custom > CSS or insert this code in your child theme’s style.css (if you are using a child theme)
.site .x-colophon.top, .site .x-colophon.top a, .site .x-colophon.bottom, .site .x-colophon.bottom a { color: #000; }
We would loved to know if this has work for you. Thank you.
October 31, 2015 at 3:28 pm #647702Thank you.
This CSS changed font color in th footer, except header font color..
I found CSS, that worked well 4 me:
.x-colophon.top .h-widget, .x-colophon.top a, .x-colophon.top .widget {
color: #515151;
} -
AuthorPosts