• tmiddled

    (@tmiddled)


    Hi,

    I am using the MH Magazine them, and am trying to remove the links to the next article and previous article that appear on the bottom of my posts. I have downloaded the Simple Custom CSS plugin (which worked for hiding the post meta), but it doesn’t seem to work for hiding the next article/previous article. I have tried the below 3 code insert:

    nav-links { display: none; }

    .post-navigation {
    display: none;
    }

    #nav-below {
    display: none;
    }

    My site is here:

    https://www.bodybuildingdietinfo.com/pre-and-post-workout-nutrition/

    Thanks,
    Tom

Viewing 3 replies - 1 through 3 (of 3 total)
  • Michael

    (@alchymyth)

    you need to use a browser inspection tool to find out what CSS selectors are really used the code, instead of guessing and trying;

    .mh-post-nav-wrap {
        display: none;
    }
    Thread Starter tmiddled

    (@tmiddled)

    Haha, that worked, thanks ?? My next step is to change the below text in the footer:

    Copyright ? 2016 | WordPress Theme by MH Themes

    I might try and figure it out myself rather than just asking ??

    Thread Starter tmiddled

    (@tmiddled)

    Woo hoo, figured out how to delete the text ??

    Used chrome developer tools, found out the footer was the mh-copyright and typed:

    .mh-copyright {
    display: none;
    }

    Next step is to figure out how to change it, cheers Michael! Teach a man to fish…..

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Remove Next Article and Previous Article links from Posts’ is closed to new replies.