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

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

    #114412
    Mahesh
    Keymaster

    @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
    Glen Pavelich
    Participant

    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
    Keymaster

    @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
    Glen Pavelich
    Participant

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

    #114599
    Mahesh
    Keymaster

    @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
    Glen Pavelich
    Participant

    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
    Keymaster

    @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
    Glen Pavelich
    Participant

    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
    Keymaster

    @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
    Glen Pavelich
    Participant

    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
    Keymaster

    @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.