[Solved] Colour a button blue, with help of css [closed]


This should do

.html with CSS

<style>
#moderationbuttons .buttonlist ul.nav 
{
    list-style-type:none;
}
#moderationbuttons .button_strip_0 
{
    padding:5px;
    background-color: #0874d1;
    color: #fff;
    border-radius: 4px
}
</style>

<div id="moderationbuttons">
  <div class="buttonlist floatbottom" id="moderationbuttons_strip">
    <ul class="nav nav-pills">
      <li>
        <a class="button_strip_0">
          <i class="fa fa-0 fa-fw"></i>
          Hello
        </a>
      </li>
    </ul>
  </div>
</div>

6

solved Colour a button blue, with help of css [closed]