Andres G
asked 9 years ago

Hi.

  1. How i can change background colour of pages?
  2. How i can change text colour of page without change colour of post in main page? I want create a page with changes of main.

thanks

1 Answers
DominicStaff
answered 9 years ago

Hi,

  • To change the background color, you can add the following code to the style.css file:
    .page-template-default .content.row {
    background: #fff;
    }
    .main .page {
    background: #fff !important;
    }
    .page-template-default {
    background: #999;
    }
  • To change the text color, you can add the following code:
    /**** Only content & page title ******/
    .page-template-default p {
    color: red;
    }
    /**** Page title ******/
    .page-template-default {
    color: red;
    }

    Hope this helps !

Powered by DW Question & Answer Pro