Support Forums

The forums are closed and will be removed when we launch our new site.

Looking for support? You can access the support system via your account.

Forums Forums Search & Filter Pro Can't get rid of random spacing

Viewing 5 posts - 1 through 5 (of 5 total)
  • lineca
    #107722

    On all my pages with S&F, there is padding between the taxonomy type and parameters. Inspecting shows it is because of ( ul data-operator=”and” ) which is set as “.page-content.txt section.post_content ul” (padding of 16px) I tried editing with custom CSS but am unable to effect it. Maybe something to do with child theme setup?

    lineca
    #107723
    This reply has been marked as private.
    Trevor Moderator
    #107806

    Try this Custom CSS:

    .page-content.txt section.post_content .searchandfilter > ul ul {
      padding: 0;
    }
    .page-content.txt section.post_content .searchandfilter > ul {
      padding-left: 10px !important;
      padding-right: 10px !important;
    }
    lineca
    #107808

    Hey Trevor,

    Thanks! That got rid of the spacing above, created some weird spacing on the sides but fixed it by excluding the second CSS code and changing the first to:

    .page-content.txt section.post_content .searchandfilter > ul ul {
    padding-top: 0;
    }

    also added

    .page-content.txt section.post_content .searchandfilter > ul {
    padding-top: 0;
    } instead of the second one and achived what I was looking for!

    Issue resolved, once again thank you very much!

    Cheers.

    Trevor Moderator
    #107844

    Cool. I didn’t quite know what you need, so I gave examples only. I will close this thread.

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

The topic ‘Can't get rid of random spacing’ is closed to new replies.