Question

I am using Jquery Mobile´s grid and I want to remove the default border and change the default background-color. Here is my code:

   <div class="ui-grid-b">
    <div class="ui-block-a"><div class="ui-bar ui-bar-a" style="height:60px">Block A</div></div>
    <div class="ui-block-b"><div class="ui-bar ui-bar-a" style="height:60px">Block B</div></div>
</div><!-- /grid-b -->

Thank you

Était-ce utile?

La solution

The answer is

.ui-bar-a {
background-color: #FFFFFF;
border-style: none; 
}

Autres conseils

Try this:

.ui-bar-a {
background-color: #fff !important;
border-style: none !important;
}

!important helps to override the jquery mobile css.

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top