Tagged: x
-
AuthorPosts
-
May 2, 2016 at 3:08 am #908720
Hi
I am working on a staging site for a client and trying to change the color of the font for the footer (top and bottom). Reading through a lot of the forums I managed to get the below CSS but this still doesn’t change the color of the font!
————————————————————
.x-logobar {
background: white;
background-color: white;
}
.x-topbar .p-info{
color: white;
}.single-post .entry-featured {
display:none;
}/* Footer Style */
.x-colophon.top {
background-color: #666666;
padding-top: 20px;
padding-bottom: 20px;
}.x-colophon.bottom {
background-color: #222222;
}.x-colophon.bottom,
.x-colophon.bottom .x-colophon-content a { /* content links */
color:#FFFFFF; }.x-colophon.bottom {
padding-top: 5px;
padding-bottom: 5px;
}
————————————————————I want to Make the entire font in the footer in White and Bold so it’s readable on the dark background.
Thanks
May 2, 2016 at 3:35 am #908743Hello There,
Thanks for writing in!
To make the entire font in the footer in White and Bold so itโs readable on the dark background, please update this block of code:
.x-colophon.bottom, .x-colophon.bottom .x-colophon-content a { /* content links */ color:#FFFFFF !important; font-weight: bold !important; }
Hope this helps. Kindly let us know.
May 3, 2016 at 12:06 pm #911067This reply has been marked as private.May 3, 2016 at 3:34 pm #911404Hi There,
Could you please provide your wp-admin credentials so we can have a better look and create a tailored solution?
Make sure to mark the reply as privte.
Thanks,
Joao
May 4, 2016 at 1:39 pm #912986This reply has been marked as private.May 4, 2016 at 7:00 pm #913439Hi there,
I have updated the code to:
.x-colophon.top, .x-colophon.top .widget, .x-colophon.top a, .x-colophon.bottom, .x-colophon.bottom .x-colophon-content a { /* content links */ color:#FFFFFF !important; font-weight: bold !important; }
Hope this helps.
May 5, 2016 at 3:37 am #913972Thx! That’s good.
Is it possible to add a hover effect so the color change to Red on hover.
Thx
May 5, 2016 at 3:53 am #913994Hi There,
Add this in your custom CSS to add hover effect:
.x-colophon.top a:hover, .x-colophon-content a{ color:red; }
Hope it helps.
Let us know how it goes.
Thanks.
May 6, 2016 at 2:55 am #978295Hey.. I have added this to the end of my CSS but no luck.
May 6, 2016 at 7:22 am #978514Hi There,
Please change the code provided above by Nico for this one:
.x-colophon.top a:hover, .x-colophon-content a { color:red !important; }
Hope that helps,
Joao
May 6, 2016 at 12:00 pm #978815Great! That Works! ๐
Thx
May 6, 2016 at 6:41 pm #979470You’re most welcome.
-
AuthorPosts