• Resolved frolickingmini

    (@frolickingmini)


    Is there anyway to remove all the author information in the posts? Thank you! I’ve tried various CSS but nothing is working.

Viewing 2 replies - 16 through 17 (of 17 total)
  • @pixelverbieger
    This codes worked:

    p.credits-left {
    display:none;
    }
    p.credits-right span {
    display:none;
    }
    Thanks .

    Is it also possible to create a home button on every page within this template?

    • This reply was modified 4 years, 7 months ago by kraaijennest.

    @1btcnews
    The theme Baskerville does not have any element with class “postauthor-inner”, so you will need to adjust my cody according to the class used in your theme …

    Most Browsers do offer web developer tools. You can use these to inspect the source code and identify all elements.

    To remove elements, you can address them via CSS/customizer by id or class.
    Some examples:

    <div id="postauthor"> --> CSS = div#postauthor { display: none; }
    <div class="postauthor"> --> CSS = div.postauthor { display:none; }
Viewing 2 replies - 16 through 17 (of 17 total)
  • The topic ‘Remove Author Info In Post’ is closed to new replies.