-
AuthorPosts
-
May 13, 2014 at 11:08 am #43960
test.theblank.com
wordpress 3.9.1
x shortcodes: 2.2.2I would like to change font color and background for the footer and sidebar widgets.
I would like to change the sidebar font color to white.
I would like to change the footer font color to white and change the background color to dark blue.
Not sure if I need to add a class to footer or sidebar or add custom css line.
Would be grateful for any guidance.
Thank you!
Rick
May 14, 2014 at 3:08 am #44218Hey Rick,
In the Customizer > Custom > CSS, please add the code below.
.x-colophon.top { background-color: black; } .h-widget { color: white; /* For Widget Title Color */ text-shadow: none; /* Remove Shadow */ } .widget ul li, .widget ol li { color: white; /* For List in the Sidebar */ } .x-colophon.bottom { /* Bottom Footer */ color: white; background-color: darkblue; }
Hope that helps. 🙂
May 14, 2014 at 9:31 pm #44536thank you, trying this out now…
May 15, 2014 at 12:42 pm #44829You’re welcome!
May 16, 2014 at 12:55 am #45017OK, I’m beginning to understand how to use Customizer > Custom > CSS.
The solutions you provided worked great! I cut and pasted and tweaked and things are looking good.
However, I am trying to locate the class for sidebar widget #2 (the widget currently with a facebook feed plug-in). I would like to remove text shadow and set body text color and link color on that sidebar widget as well.
I would also like to remove the white background that pops up when I hover over sidebar widget one (currently with the twitter feed). Not sure which class to use to do this.
Appreciate your great theme and your guidance. Thanks again.
Best,
Rick
May 16, 2014 at 6:07 pm #45254Hi Rick,
Sure this might help you.
1. Removing widget hover background :
.widget ul li:hover, .widget ol li:hover { background-color:transparent!important; }
2. Removing text shadow :
.widget { text-shadow: none!important; }
3. Changing your widget text and link color
.widget, .widget li, .widget p, .widget span{ color:blue!important; } .widget a{ color:black!important; } .widget a:hover{ color:pink!important; }
Hope this helps.
May 17, 2014 at 1:10 pm #45432This is awesome, Thank you for being so “responsive” 🙂
May 18, 2014 at 1:34 am #45587You’re welcome Rick.
October 28, 2014 at 4:21 pm #134024Do you know how to add my company logo to the footer?
October 29, 2014 at 12:05 am #134173Hi Michael,
Thanks for writing in! To assist you with this issue, we’ll first need you to provide us with your URL as stated on the forum entrance page. This is to ensure that we can provide you with a tailored answer to your situation. Once you have provided us with your URL, we will be happy to assist you with everything.
October 3, 2015 at 9:20 am #609391Hi X, I was changing a font colour of my sidebar,but the specific link that i click on its becomes white and then i cant see the anchor text. Can you provide me with custom scc to have the colour red when im on the specific link. Im attaching two snapshots.
Thank youOctober 3, 2015 at 10:01 am #609415Hi @pragy,
Thanks for writing in!
Try adding following CSS under Appearance > Customize > Custom > CSS:
.widget_nav_menu .current-menu-item > a { color: red; }
Hope it helps.
October 3, 2015 at 11:56 am #609481Hi, i did paste it in and nothing happened. Im attaching my full css for you.
Thanx.text-white h2,
.text-white p,
.text-white .x-btn {
color: #fff;
}.text-white .x-btn {
border-color: #fff;
}.text-white .x-btn:hover {
opacity: 0.75!;
}.widget {
text-shadow: none!important;
}.widget a{
color:white!important;
}.widget a:hover{
color:red!important;
}.h-widget {
color: white;
text-shadow: none;
}.widget_nav_menu .current-menu-item > a {
color: red;
}October 3, 2015 at 12:54 pm #609517October 3, 2015 at 3:37 pm #609625Of course, Here is my URL:
http://247londonlocksmith.co.uk/areas/ -
AuthorPosts