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

4 replies
  • WEB DESIGN
  • |
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!
#2011 #bottom #page #recent posts #remove #themeneed #wordpress
  • Profile picture of the author failideas
    open the file showcase.php

    from line 154 to line 207 is where the code to show recent posts is.
    Signature
    Dental WordPress Theme - Dentist WP Theme - Lawyer WordPress Theme

    ++ Theme Release News and Promotions > submit here
    Affiliates - wanna make good money. Subscribe here Affiliates List
    {{ DiscussionBoard.errors[6964747].message }}
  • Profile picture of the author aars
    Just use firebug and find the css line. You can always use display:none; instead of deleting the core.
    {{ DiscussionBoard.errors[6965044].message }}
  • Profile picture of the author BillyW
    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;
    }
    Signature
    Qosso.com - Exceptional Branding At Affordable Prices
    {{ DiscussionBoard.errors[6965219].message }}
  • Profile picture of the author brik2500
    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
    {{ DiscussionBoard.errors[6965871].message }}

Trending Topics