• What is this theme’s background color setting supposed to do (Theme > Customize > Colors > background)?

    From my experiments:-

    Intergalactic 1 on wordpress.com changed the backgound color for all pages and all posts to the value set.

    Intergalactic 1 self hosted changed the background for all pages incl Home page but NOT for any posts.

    Intergalactic 2 self hosted seems to have very little effect, just search page titles and some in-between element blocks (eg a line of color between header block and post).

    What is the recommended css code to include in order to make all page and all post background colors to a required value?

    Many thanks.

Viewing 1 replies (of 1 total)
  • sacredpath

    (@sacredpath)

    Automattic Happiness Engineer

    Hi, this would give you a start. I think it catches all background colors.

    body {
        background: lime;
    }
    .entry-content-wrapper {
    	background: orange;
    }
    .site-footer {
    	background: royalblue;
    }
    .entry-footer-wrapper {
      background: greenyellow;
    }

    I’ve used various named colors for demonstration purposes so you can what rule applies to what area.

Viewing 1 replies (of 1 total)
  • The topic ‘Setting theme’s background color’ is closed to new replies.