Flattening out buttons

  • Posted in : Responsy WP
  • tobyholman
    Participant

    How would I flatten out all buttons? I especially want the buttons on the homepage to be a solid colour and rectangular with no corned edges and no gradient.

    Many thanks

    Mehmet S.
    Keymaster

    Paste to Theme Settings > Style > Custom CSS:

    .btn
    {
    -webkit-border-radius: 0px;
    border-radius: 0px;
    background-clip: padding-box;
    background-image: none;
    background-color: green;
    }
    
    tobyholman
    Participant

    Superb. Many thanks and works a treat….

    But….

    It’s rendered my previously red buttons green….any idea?

    Mehmet S.
    Keymaster

    Try only this:

    .btn
    {
    -webkit-border-radius: 0px;
    border-radius: 0px;
    background-image: none;
    }
    
    tobyholman
    Participant

    Superb! Thanks kindly

Viewing 5 posts - 1 through 5 (of 5 total)

The forum ‘Responsy WP’ is closed to new topics and replies.