Forums Forums Search & Filter Pro Custom css buttons & combox

Tagged: 

Viewing 3 posts - 1 through 3 (of 3 total)
  • Anonymous
    #114971

    Hello,

    1. how can I customize the CSS of Submit Button?
    I would like to make it flat, bigger and change colors to match the style theme.

    2. Also, I would like to make the Combobox dropdown Flat and change the selection color and font size and taxonomies line heights

    http://oer.makingprojects.org

    Thanks & best regards
    c

    Trevor
    #114989

    You would need to write your own Custom CSS for this.

    I wrote this for someone on the forum recently, for the submit button:

    .searchandfilter input[type="submit"] {
      border: 1px solid #ddd;
      border-radius: 3px;
      color: #fff;
      background: #ddd;
      font-size: 14px;
      padding: 0.7em;
      line-height: 16px;
      cursor: pointer;
      color: #666;
      text-align: center;
      margin-top: 44px;
      font-weight: 700;
    }

    But it gives you an idea. The browser inspector is your friend, which allows you to experiment with CSS and see what other controls on your site are using.

    Anonymous
    #115163

    thanks,
    best regards
    c

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