I am trying to change background color of my html page but its not reflecting. I am using jquerymobile, marionette for my pages. In my css i have written
body {
background-color:rgb(44,2,4);
}
even i had tried
html, body {
background-color:rgb(44,2,4);
}
What happens is the background color is being set, but i can see on html page just for a flash when the pages loads but after that the default jquerymobile theme gets set. Can anyone please help me with the solution? Thanks in advance.