• hello,

    currently working on a new site, and wondered how i can remove the title (in this case ” home”) from this page?
    u use theme twenty eleven, and am using the sidebar template on this page (there are 3 more pages with the same problem)
    check this picture to see what i mean

    help would really be appreciated, thank you!

Viewing 5 replies - 16 through 20 (of 20 total)
  • Thread Starter boriskamp1991

    (@boriskamp1991)

    ok, the site is online Esmi, here is the link:
    https://www.le-club-culinair.nl
    again, i want the text “Home” gone and add text in my own way, like i can in the showcase template (heading text)

    please let me know, thank you!

    Try editing your child theme’s index.php template file.

    If you don’t feel like editing any hardcoded files, you could display:none; the title specifically on that home page with CSS like this:

    body.home .entry-title { display: none; }

    Which will remove the title from displaying on the page which is displaying on home, then edit the page and add your own title to the top of that edited page that would replace it.

    You will notice in your <body class=””> body classes that are dynamically generated there is a ‘home’ class, meaning you can target specifically the home page which will not effect any subsequent pages other then that.

    Thread Starter boriskamp1991

    (@boriskamp1991)

    esmi, could you be more specific please?

    Frumph, ok thanks! but that is not good for SEO right?? or will the seach machine stiil find the title cause it is hidden??

    thanks1

    body.home .entry-title {
    position:absolute;
    left:-9999px;
    top:-9999px; }

    will pull the title off the page on graphical browsers but keep it available for use by search engines and other user agents.

Viewing 5 replies - 16 through 20 (of 20 total)
  • The topic ‘how do i remove the " title" from sidebar template?’ is closed to new replies.