• Resolved jameseast

    (@jameseast)


    Hello,

    I have been able to remove the author name from under each of my posts however I’m not able to remove the small dot that separates the author name and space and date. As a result the remaining date is off center with a dot after it.

    I removed the author names by CSS:
    .entry-meta .meta-sep, .entry-meta .author { display: none; }

    Would appreciate any thoughts.

    My website is – https://www.upandawaywithme.com

Viewing 4 replies - 1 through 4 (of 4 total)
  • replace your CSS with:

    .entry-meta .byline { display: none; }

    Hi @jameseast,

    Michael’s CSS will hide the dot from view on your site’s home page.

    To then hide the redundant dot to the right of the date on individual posts, the following would also be needed:

    .single .entry-meta > .posted-on:after {
        display: none;
    }

    In case you’re not already aware: Please do not edit your theme’s files directly. Any changes you make there will be lost when it comes time to update.

    Instead, to add custom CSS, set up a child theme or activate a standalone CSS plugin. (If you already have Jetpack installed then you can activate its custom CSS module.)

    Let us know how you get on with that or if any questions come up.

    Thread Starter jameseast

    (@jameseast)

    Thank you both Michael and Siobhan. Worked perfectly!

    Much appreciated for your help.

    You’re most welcome! ?? Hope you have a lovely weekend.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Dots under posts between date and author name’ is closed to new replies.