• I use Reddle for a lit mag online and would like to remove the “posted by” and “posted in” lines from my posts (since I do all the posting and everything is posted to same category.

    Is there some simple way to do this?

    Would something like this work in one of the files? If so, which one? I yam clewless.

    .tag-links {
    display: none;
    }

    Thanks,

    fb

Viewing 9 replies - 1 through 9 (of 9 total)
  • Thread Starter fbarthelme

    (@fbarthelme)

    Forgot. Mag is here
    https://newworldwriting.net

    This should:

    .entry-header .entry-meta, footer.entry-meta {
       display: none;
    }

    You should add that to custom CSS – if your theme does not have that option, add with a plugin such as JetPack or Custom CSS Manager.

    Thread Starter fbarthelme

    (@fbarthelme)

    Did that, works great, but now I think I want to keep “posted by” and eliminate only the “posted in” line.

    Would this work in Custom CSS Manager?

    footer.entry-meta {
    display: none;
    }

    Also, how do I change the “Continue reading —>” to something less obtrusive, like “More ->” or just “More”

    Thanks much for the help. It’s great.

    Thread Starter fbarthelme

    (@fbarthelme)

    Looking at this further, I note that this also removes the dates that are a feature of the theme’s design. Not what was wanted, alas.

    .entry-header .entry-meta, footer.entry-meta {
    display: none;
    }

    Try this instead:

    .entry-header .entry-meta, .cat-links {
       display: none;
    }

    Thread Starter fbarthelme

    (@fbarthelme)

    Yep. That works for cutting both “posted by” and “posted in” but leaves the date.

    Now how to do just the “posted in” and leave the “posted by”?

    Just use:

    .cat-links {
       display: none;
    }

    Thread Starter fbarthelme

    (@fbarthelme)

    Thanks. That did it. What would be a good text to learn how to do such thing in CSS? Preferably online, downloadable, PDF.

    Thanks again for your help.

    Best tool for CSS is Firebug (addon for Firefox browser) good info on their site too: https://getfirebug.com

    Good CSS site (and other stuff for that matter):
    https://www.w3schools.com/css/default.asp

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘How to delete "posted by" and "posted in" in Reddle?’ is closed to new replies.