• I have what I hope is a simple question to answer: is it possible to have different background colors for different pages in the Parament theme?

    I have a website that has three areas, and I would like to color code the background on each article so that it’s immediately apparent to which area it belongs.

    Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • If you know css, this should be simple. You know how you can change the background color using:

    body{
        background:orange;
    }

    If you want different colors on different pages then just specify the page id to each page, like so…

    .page-id-1 body{
        background:orange;
    }
    
    .page-id-2 body{
        background:yellow;
    }

    This is only an example, so you will have to find your specific page ids yourself. If you link me to your site, I could take a look at it for you and help you find them.

    If you have any other questions, just ask.

    [ Signature moderated. ]

    Is it possible to do this with a page template rather than a page ID? I would like to be able to make pages for my advertisers, and have different colors for them. Some red, some blue, etc…
    Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Parament theme: multiple background colors?’ is closed to new replies.