changing widget background color on Twenty Thirteen
-
Can I change the widget background color on Twenty Thirteen and if so could someone help?
Thank you!!!!
The blog I need help with is: (visible only to logged in users)
-
Hi, here is the existing CSS for the widget background color. It is done as RGB with an Alpha opacity setting. The first three numbers are the RGB values, and the last number, the 0.7, is the opacity. The closer to 1, the more opaque the color.
.widget { background-color: rgba(247, 245, 231, 0.7); }If you wish to use a hex color using the following and then edit the color code as desired.
.widget { background-color: #FFCCAA; } -
Thank you, thesacredpath! I think I’m getting the hang of CSS. Now I’d like to change the widget header color. Last one, I promise. Can you help?
-
You are welcome, and not a problem with the questions. Your site is looking great. Love the header and colors. Nice and clean.
Widget titles coming up :)
.widget .widget-title { color: #55dd00; }(Excuse my obnoxious color, I use those so that things stand out when I’m making sure the code works.)
-
This is awesome. I think I’m finally satisfied with the look. Thank you for all your help!!!
-
- The topic ‘changing widget background color on Twenty Thirteen’ is closed to new replies.