WORDPRESS 2011 THEME...NEED TO REMOVE "Recent Posts" at the bottom of the page? THANKS FOR THE HELP!

by 4 replies
7
WEBSITE IS

| E.M. Unlimited

If you notice at the bottom of the page, on each page, there are the words "RECENT POSTS" .

I'm trying to figure out where to delete that....I went to the editor, and couldn't find it anywhere.

Like I said, I'm using the basic 2011 Theme from WP.

THANKS!
#website design #2011 #bottom #page #recent posts #remove #themeneed #wordpress
  • open the file showcase.php

    from line 154 to line 207 is where the code to show recent posts is.
    • [ 1 ] Thanks
  • Just use firebug and find the css line. You can always use display:none; instead of deleting the core.
    • [ 1 ] Thanks
  • Find this code on line 138 in your style.css file:

    .page-template-showcase-php section.recent-posts {
    float: right;
    margin: 0 0 0 31%;
    width: 69%;}

    ADD this:

    display: none;

    So finished code should look like this:

    .page-template-showcase-php section.recent-posts {
    float: right;
    margin: 0 0 0 31%;
    width: 69%;
    display: none;
    }
    • [ 1 ] Thanks
  • I ended up using the display none. I usually just delete the stuff but was just curious to see how that would work because I'm not the best at code.

    Thanks all!

    Brik