sacredpath
(@sacredpath)
Automattic Happiness Engineer
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.