Hi.
- How i can change background colour of pages?
- 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
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 !
Please login or Register to submit your answer