• Resolved Bryce Steiner

    (@bryce-steiner)


    Hello,

    Here is a site I’m helping with and the customer does not want all the post pages listed at the bottom of the main page listed here:

    http://test.villageofantwerp.com/newsite/

    I searched and found this:

    You could probably use CSS such as the following. You would just change the page id to the page in question which you can determine by looking at the page source and searching for body class.
    HTML Code:

    body.page-id-777 td#footer {
    display:none;
    }

    I looked up the body class on that page and it says this:
    body class=”home blog logged-in admin-bar no-customize-support”>

    I then pasted it in the CSS to look like this:
    body.page-id-“home blog logged-in admin-bar no-customize-support” td#footer {
    display: none;
    }
    I must have messed up because it still has the footer pages.
    I would love your help

Viewing 4 replies - 1 through 4 (of 4 total)
  • I dont see the pages. Are you talking about where the Powered By is?

    Maybe they did go away, clear browser cache.

    Thread Starter Bryce Steiner

    (@bryce-steiner)

    Right above the “Powered by…” There is the page numbers in a box showing all the pages of posts and that is what i want to have gone.
    thanks

    Add this in your CSS

    .home .pagination_container {
    display: none;
    }
    Thread Starter Bryce Steiner

    (@bryce-steiner)

    Perfect!!

    Thank you very much. You are smart!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Remove Pages from post footer’ is closed to new replies.