CSS to remove search bar and auto text

  • Unknown's avatar

    How do I remove the search bar at bottom and the text, “It seems we can’t find what you’re looking for. Perhaps searching can help.”? Not sure if it is possible, but also the WordPress autotext at the bottom?

    http://shaynagold.com/

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hi!

    There are two ways to remove the search bar and text from your page. The first way will remove the search bar and that text from every page on your blog. Just add this to your CSS:

    .page-content p {
        display: none;
    }
    
    .search-form {
        display: none;
    }

    The second way you can do this is to ONLY remove the search bar and text from your blogs home page. This is the CSS you would use for that:

    .home .page-content p {
        display: none;
    }
    
    .home .search-form {
        display: none;
    }

    Hope this helps! Let me know if you have any issues with this. :)

  • Unknown's avatar

    thanks wweadam! is there any way to get rid of the WordPress theme watermark?

  • Unknown's avatar

    Hi

    It is possible to remove the watermark, but unfortunately this is against the WordPress.com Terms of Service:

    Attribution. Automattic reserves the right to display attribution links such as ‘Blog at WordPress.com,’ theme author, and font attribution in your blog footer or toolbar. Footer credits and the WordPress.com toolbar may not be altered or removed regardless of upgrades purchased.grades purchased.

  • Unknown's avatar

    Oops!

    I was playing around with the Obsidian theme and realized that the search bar and text you want removed may actually be removed by just putting this into your CSS:

    .home .no-results.not-found {
        display: none;
    }

    Now your post or page content will show on the home page if you choose to display other content there.

  • The topic ‘CSS to remove search bar and auto text’ is closed to new replies.