Modifying Posts

  • Unknown's avatar

    is there a way to change the text at the bottom of my posts to say “previous report” or “next report” instead of the title of the previous and next posts?

    http://pnpi.org/featured-reports/

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hi there, this is a bit involved due to the way the CSS and HTML are structured, but give the following a try and see what you think.

    .nav-previous a {
        visibility: hidden;
    }
    .nav-previous a::before {
        background-color: #f9f9f9;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
        content: "Previous Report";
        display: inline-block;
        margin-left: -24px;
        max-width: 100%;
        padding: 9px 24px;
        visibility: visible;
        text-align: center;
    }
    .nav-next a {
        visibility: hidden;
    }
    .nav-next a:before {
        background: #f9f9f9;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
        content: "Next Report";
        display: inline-block;
        margin-right: -24px;
        max-width: 100%;
        padding: 9px 24px;
        visibility: visible;
        min-width: 122px;
        text-transform: uppercase;
        text-align: center;
        float: right;
    }
  • Unknown's avatar

    that is PERFECT! thanks again!!!!!!

  • Unknown's avatar
  • The topic ‘Modifying Posts’ is closed to new replies.