Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #1441211

    Hello,
    I’m using the Classic Editor to create blog posts. At the bottom of each post, above the Social Media Share link is a line element that I would like to remove. I’m not sure why it is there, and what it is for.

    Please see https://lokitacarter.com/2024/03/24/the-story-of-my-book-part-2/ — it’s above “Share this Entry” — the two parallel lines with the vertical short line. Thanks in advance for your help. Greetings, Lokita

    #1441214

    you have set the comments and time to display: none – but let the text-separator be visible.
    why don’t you set the parent container to display: none – then you can erase the two rules and set:
    ( maybe it is best to do this only for single posts )

    .html_elegant-blog #top.single .post-entry .post-meta-infos {
      display: none !important;
    }
    #1441217

    thanks but hmmmm, I don’t know how to do this: “why don’t you set the parent container to display: none – then you can erase the two rules”. I added your suggestion to the Quick CSS but nothing changed.

    #1441248

    Hi,

    Thank you for the update.

    The css code provided by @Guenni007 above should have removed the parallel lines above the share icons.

    .html_elegant-blog #top .post-entry .post-meta-infos {
        display: none !important;
    }

    Do you have any other css modifications in the Quick CSS field? Please ensure that there are no invalid css codes (such as missing curly braces, semicolons, etc.) and that all css rules have been closed correctly.

    Best regards,
    Ismael

    #1441310
    This reply has been marked as private.
    #1441347

    you see here on your code that you have set these meta infos to display: none ( 1 and 2 ) but the separator ( text-sep ) is still there.
    now – if you set the whole parent container to display : none that will do the job.

    sorry it is only one css in your existing one that you can erase and insert instead mine from above

    .html_elegant-blog #top .post-entry .minor-meta {
      display: none !important;
    }

    maybe you haven’t refreshed your merging on enfold or have some caching plugins that will preserve the old styles.

    #1441354

    Hello Guenni007, thank you so much for that! I added your code to the Theme Editor CSS area and hooray! It works. The lines are no longer showing. Appreciation and gratitude to you.

    #1441383

    Hi,

    Great! Glad to know that the modification worked. Please feel free to open another thread if you have more questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘How to remove an element at the bottom of Blog Posts’ is closed to new replies.