Search code examples
angularjsonsen-ui

Onsen toolbar background color not changing


I am using a page as a right side menu but it is displaying the toolbar of the backgroud of the first page before it change to some other.So what can be done ?


Solution

  • You can change navigation color as following:

    page1.html

    <ons-page>
    
      <ons-toolbar style="background: #4CD964;">
        <div class="center" style="color: #FF0000" >Navigator</div>
      </ons-toolbar>
    
      ...
    
    </ons-page>
    

    enter image description here