Title: Delete Widget Backgrounds?
Last modified: March 31, 2018

---

# Delete Widget Backgrounds?

 *  [adam8212](https://wordpress.org/support/users/adam8212/)
 * (@adam8212)
 * [8 years, 2 months ago](https://wordpress.org/support/topic/delete-widget-backgrounds/)
 * I don’t like the backgrounds or alignments on the widgets in this theme. I’d 
   much rather have them all match, but I can’t figure out how to change them. Can
   anyone help?
 * The page I need help with: _[[log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fdelete-widget-backgrounds%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

Viewing 1 replies (of 1 total)

 *  [sacredpath](https://wordpress.org/support/users/sacredpath/)
 * (@sacredpath)
 * Automattic Happiness Engineer
 * [8 years, 2 months ago](https://wordpress.org/support/topic/delete-widget-backgrounds/#post-10143331)
 * For the alignment, this will take care of it.
 *     ```
       #secondary .widget:nth-of-type(4n+1), #secondary .widget:nth-of-type(4n+3) {
       	left: 0;
       }
       ```
   
 * For the colors, it is a bit more complex and I’m not sure how many variations
   there are, but this takes care of things for the 4 widgets you have.
 *     ```
       #secondary .widget:nth-of-type(4n+3) {
       	left: 0;
       }
       .widget:nth-of-type(4n+1), .widget:nth-of-type(4n+2), .widget:nth-of-type(4n+3), .widget:nth-of-type(4n+4) {
       	background: #cc0000;
       	background-image: none;
       	color: #2233dd !important;
       }
       .widget:nth-of-type(4n+1) a, .widget:nth-of-type(4n+2) a, .widget:nth-of-type(4n+3) a, .widget:nth-of-type(4n+4) a {
       	color: #2233dd !important;
       }
       ```
   
 * You can of course edit my obnoxious colors.

Viewing 1 replies (of 1 total)

The topic ‘Delete Widget Backgrounds?’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/scratchpad/1.0.6/screenshot.png)
 * Scratchpad
 * [Support Threads](https://wordpress.org/support/theme/scratchpad/)
 * [Active Topics](https://wordpress.org/support/theme/scratchpad/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/scratchpad/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/scratchpad/reviews/)

## Tags

 * [background](https://wordpress.org/support/topic-tag/background/)
 * [widgets](https://wordpress.org/support/topic-tag/widgets/)

 * 1 reply
 * 2 participants
 * Last reply from: [sacredpath](https://wordpress.org/support/users/sacredpath/)
 * Last activity: [8 years, 2 months ago](https://wordpress.org/support/topic/delete-widget-backgrounds/#post-10143331)
 * Status: not resolved