Okay
  Public Ticket #1048864
Search page issue
Closed

Comments

  •  2
    Alessandro started the conversation

    Hi Paul, how are you ?

    In the new version of the theme the search function seems not working properly.

    I uploaded a new ptf ( simple plan ), then i went to the search box and wrote "simple". 

    The page showed 2 results ( correct ) but none of them is clickable.

    There isn't any separation space between them too...

    Same behavior in safari/chrome/firefox/iphone/ipad.

    Thank youuuuuuu !! :)

  •  291
    Paul replied

    Hi Alessandro,

    As I check the code on your site, I found that the ".post-title" is currently forced to be hidden by this custom CSS:

    .post-title {
        display: none;
    }
    

    Since all the post titles are hidden, that's why there's no way to click to read the post.

    If you want to hide the post title on normal pages, but display it on the search result page, please use this instead (this code also includes a fix for the missing space between results):

    .post-title {
        display: none;
    }
    .search-result-list .post-title {
        display: block;
    }
    .search-results .post-content-container {
        padding-bottom: 5%;
    }
    

    Hope it helps!

    Regards,
    Paul

  •  2
    Alessandro replied

    Done !! 

    Thaaaaaank you ! :)

    Take care!

    A