Hello, I was wondering if it's possible to change the background color within a project. i.e. if my home page is white, and then a user clicks on a project the project is shown and the background changes colors. Let me know! Thanks.
-
Change background color for individual project?
-
Yes, you could use the "background color" button in the gridder. It's right next to all the buttons like "+Image", "+Video" etc.
Another, maybe more flexible way to do this is to use custom css. If you want all projects to have a black background color you could do:
body[data-type="project"]{ background-color: black; }
Here is an explanation about styling things based on which page you are on:
http://laytheme.com/documentation.html#menu-color-based-on-current-page -
Thank you!!