How to modify the footer and footer widget of Twenty Eleven
-
Hi,
1) I am trying to change the background color of the footer widget in my Twenty Eleven child-plan theme. I am trying this code but it’s not working:
/* To change bottom side bar widget’s background color */
#colophon {
clear: both;
background-color: #CDC0B0;
}2) I am trying to hide the “powered by WordPress” with this code but it is not working:
/* To hide the ‘Powered By WordPress’ advertisement */
#site-generator {
display: none;
}3) I am trying to modify the text in the widget with this code which is not working:
/* To change Right SideBar widget Title’s font color, size and font type */
.widget-title {
color: #8B6969;
font-size: 14px;
font-weight: bold;
text-shadow: 1px 1px 1px #aaa;
font-family: Papyrus, Gudea, “Helvetica Neue”, Helvetica, Arial, sans-serif;
}
/* To change right side bar widget’s Links color, font size */
.widget a {
color: #7a7a7a;
font-size: 14px;
}Incidentally I had all three things working and then I did something to break it and I’m not sure what *sigh*.
Any advice would be appreciated. (Please don’t laugh at my CSS, as I said this is my first try at it). This is the site in question: https://www.esotericwisdom.cu.cc/
- The topic ‘How to modify the footer and footer widget of Twenty Eleven’ is closed to new replies.