• 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 to see the link]

Viewing 1 replies (of 1 total)
  • 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.

Viewing 1 replies (of 1 total)
  • The topic ‘Delete Widget Backgrounds?’ is closed to new replies.