Forums Forums Search & Filter Pro Align fields and make them non-bullet points and remove Related Post content

Viewing 10 posts - 1 through 10 (of 27 total)
  • Trevor
    #262300
    This reply has been marked as private.
    Anonymous
    #262381
    This reply has been marked as private.
    Anonymous
    #262383

    Just to confirm: on my Search and Filter page, I only used only the below code. There is nothing else on that page.

    [searchandfilter id=”25639″]
    [searchandfilter id=”25639″ show=”results”]

    Trevor
    #262433

    I fixed that link. Can you check/confirm that you did follow the advice there?

    As to the bullet points. This theme CSS file:

    https://www.hifi-advice.com/blog/wp-content/themes/theblog/style.css

    On line 861 has this CSS, which is causing them:

    .body-content ul > li:before {
        content: "\f105";
        font-family: "FontAwesome";
        position: absolute;
        left: 0;
        top: 5px;
        line-height: 1;
    }

    Add this custom CSS to the theme customizer to fix this:

    .body-content .searchandfilter ul > li:before {
        content: none;
    }

    Once I have the answer to the first part of this reply, I need to see the content of the results.php file, IF you have modified it? If you did not modify it, do you have a Related Posts plugin installed (which one), as it may be automatically adding that content after the post excerpt?

    Anonymous
    #262619
    This reply has been marked as private.
    Anonymous
    #262621
    This reply has been marked as private.
    Trevor
    #262624

    Try changing it to:

    .body-content .searchandfilter ul > li:before {
        display: none;
    }
    Anonymous
    #262626

    I’ve tried this in the theme’s Custom CSS box.

    As with the earlier code you supplied, the > character is not accepted and is changed to >

    Trevor
    #262628

    Are you copying it from the email or from the forum, as email software changes characters?

    Anonymous
    #262630

    I copied the text from this very page and it pastes correctly. After saving it turns to
    “& g t ;” (without the spaces). When I paste that text as it appears in the Custom CSS box after saving into this web form, the form corrects it again. (hence my earlier comment having twice the > symbol.

Viewing 10 posts - 1 through 10 (of 27 total)