Forums Forums Search & Filter Pro Edit typography and button

Viewing 8 posts - 1 through 8 (of 8 total)
  • Anonymous
    #230766

    Hello, I would like to know how I can edit the typography and Button of search and filter.

    Thank you!

    Trevor
    #230784

    You want to change the font (family, color, weight, size) for the Submit button? For example, color:

    .searchandfilter input[type=submit] {
      color: #333;
    }

    But you can set the other attributes as well I think. Did you try this (or can you) and get back to me if it does not work, with a live link/URL to your search page so I can take a look (plus details of what you want to set/change)?

    Anonymous
    #230804

    Thank you very much for your help, it worked! Now I ask you to edit the following items;

    -search
    -Category
    -Tag
    -Sort Order
    -Reset Button

    Trevor
    #230822

    Are you able to send me a live link/URL to your search page so I can take a look?

    Also, any annotated screenshots you can make to help me (tell me what you want) would be appreciated. You will need to upload images to an external file sharing site, like dropbox, and share the link(s) with me.

    Anonymous
    #230830
    This reply has been marked as private.
    Trevor
    #230885

    What facet of the fonts do you need to change (size, family, color etc) and do they all need to be the same?

    Anonymous
    #230889
    This reply has been marked as private.
    Trevor
    #231026

    This CSS will improve things for you:

    .searchandfilter > ul,
    .searchandfilter h4,
    .searchandfilter select {
      font-family: roboto;
    }
    .searchandfilter > ul ul {
      padding-left: 0
    }

    For example, if you want to increase the font size in the headings:

    .searchandfilter h4 {
      font-size: 18px;
    }
Viewing 8 posts - 1 through 8 (of 8 total)