Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #114375

    Is there a way to hide the home title here without affecting the other h2 ‘entry-titles’?
    https://blainelake.ca/BL2017/

    #114412
    Mahesh
    Member

    @fireflywebs: Go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:

    .home #main article#post-83 > .entry-container > .entry-header {
    	display: none;
    }

    Regards,
    Mahesh

    #114529

    For some reason that didn’t work.
    I added the code
    .home #main article#post-83 > .entry-container > .entry-header {
    display: none;
    }

    to my child style sheet, and/or the additional css, but no effect.

    #114589
    Mahesh
    Member

    @fireflywebs: You’ve put the code in your child theme’s style.css as
    .home #main article#post-83 &gt ; .entry-container &gt ; .entry-header {
    display: none;
    }

    you have to put it as:

    .home #main article#post-83 > .entry-container > .entry-header {
            display: none;
    }

    Regards,
    Mahesh

    #114595

    Is there a difference between the two lines. I can’t see it if there is. Can you point it out please.

    #114599
    Mahesh
    Member

    @fireflywebs: The code isn auto corrected it in the above so appearing almost the same, that’s why I’ve re-edited it. On your CSS the code looks like its using &gt ; instead of > which is why the title is displaying even after using the CSS. Hope you understand. Let me know if the problem persist.

    Regards,
    Mahesh

    #114620

    OK – so the &gt is simply appearing in my email copy that I get from you. I was wondering what &gt was supposed to be.

    I also have gotten code in the past which shows "
    ie
    .sidebar-before-content:before {
    display: block;
    content: " ";
    clear: both;
    }
    Are those not supposed to be there either??

    Thanks

    #114635
    Mahesh
    Member

    @fireflywebs: May be the encoding/decoding is causing it to appear > and ‘&gt’. Just concerned on if that’s the case it isn’t working for you. I just checked your site and seems now the text “Home” is not appearing on your site.
    Let me know if any problem.

    Regards,
    Mahesh

    #114653

    Yes, once I realized to grab the code from here (the posts) and not from the email, then all worked well. Thanks for helping with this. I’m glad to have the ‘home’ gone.

    #114789
    Mahesh
    Member

    @fireflywebs: We highly recommend you to use the code directly of the within the code tag to avoid issues because some characters may get encoded to other like in the above.

    Regards,
    Mahesh

    #131790

    On another site…. months later.

    I came back to this ticket to get the code for another Lucida site, but it is not working now.
    I have added
    .home #main article#post-83 > .entry-container > .entry-header {
    display: none;
    }
    to the ‘Additional CSS’
    but it is not working. Home still displays.

    See: https://backyardpollinator.ca/

    #131829
    Mahesh
    Member

    @fireflywebs: Add the following CSS:

    .home #content #main .entry-header {
    	display: none;
    }

    Regards,
    Mahesh

Viewing 12 posts - 1 through 12 (of 12 total)
  • The topic ‘Hiding 'Home'’ is closed to new replies.