Jquery Mobile: Change page background color

3

How can I override the stylization of this css file to change the background color of the page? I have already tried to use !important in the background of the body and even then it does not work.

I know that this file is doing this, because if I remove it, everything works normally.

File link: link

PS: Stopping using this file is not an option.

    
asked by anonymous 07.11.2017 / 21:27

1 answer

2

The following code overrides styling:

.ui-page {
    background: red;
}
    
07.11.2017 / 21:49