Skip to main content
Topic: Change background Color in every Page [SOLVED] (Read 1289 times) previous topic - next topic

Change background Color in every Page [SOLVED]

Hi, I wanna ask about how can i change the Background color in pages, Example in ADD page i wanna put a yellow light simulating a new form, in List i wanna put green as so on.

By default all page gotta White Background.

Thank you in advance.


Re: Change background Color in every Page

Reply #1
@ocalle‍ you can change background for pages using the bellow method
Code: [Select]
body.products-index {
 background:blue;
 color:red;
 }

in App Custom CSS add the above code replacing products with the name of the table you are working on and index with the page name you are working on, the background of the page should change when this is done.

Note:
index is for ListPage
edit is for EditPage
add is for AddPage

 

Re: Change background Color in every Page

Reply #2
Thank you!!