• Hi,
    https://downtownball.net/
    is my site, i want to remove a few things..
    1) ‘You are here: Home’ – i want to remove this from every page.
    2) ‘Posted in’ – i want to remove this and all of the tags. i do not want them visible.

    Thanks
    I know it is very simple, but i am just getting into this game..

Viewing 2 replies - 1 through 2 (of 2 total)
  • Easy enough to do using CSS. Does your theme have an option to add custom CSS? If not, you can use a CSS stylesheet plugin like Lazyest Stylesheet or Custom CSS Manager.

    /* Hide the breadcrumb bar and the post's meta bar */
    .breadcrumb-trail.breadcrumbs,
    .entry-footer .entry-meta {
       display: none;
    }
    
    /* Add a little spacing to the top of the content since the breadcrumb bar is no longer there */
    #content {
    margin-top: 25px;
    }

    Yes css is one way in case you want to tweak code try searching that in single.php or single-blog.php

    And remove the code of tags and posted in.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘how to remove tags and information on blog post’ is closed to new replies.