Search feature concerns

Hello.
My search feature: when I run a word search in my website - it will bring up articles that contain the search word, but will not bring up the post title as a result I cannot click into the post for additional information. In other words, the search is not helfpul…how can I get the title to show up so I can click into the results?

Thank you!

Best,
Katrin

Hi Katrin,

Thanks for writing in! You have added this custom css

.entry-title {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 0 10px;
    font-size: 0%;
    line-height: 1;
    text-align: left;
    word-wrap: break-word;
}

In the code, the font size is 0%. This made the titles invisible. Please update your code and change the font size to at least 18 pixels.

Hope this helps. Kindly let us know.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.