removing photo box from blog posts

Discussion in 'Elite Pro WordPress Theme' started by sandrawalter, Feb 7, 2013.

  1. sandrawalter

    sandrawalter New Member

    Joined:
    Dec 14, 2012
    Messages:
    19
    Likes Received:
    0
    when I installed Elite, it put a box next to my blog post teasers for a photo. Since I don't use photos, how can I remove the box from the teaser listings on the blog page?
     
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Paste the following code in your custom css
    Appearance -> theme options -> styling options -> custom css
    Code:
    .content-bar .post .postimg {
    border:none;
    }
    This will solve your issue.

    Thanks.
     
  3. sandrawalter

    sandrawalter New Member

    Joined:
    Dec 14, 2012
    Messages:
    19
    Likes Received:
    0
    That took away the box border, there is still a blank square space in the teasers listings.
     
  4. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Do let us know your website link and also specify your issue clearly with the help of screenshot images.So that we can provide
    you exact solution.

    Thanks.
     
  5. sandrawalter

    sandrawalter New Member

    Joined:
    Dec 14, 2012
    Messages:
    19
    Likes Received:
    0
    I managed to delete the photo box code.

    In the teasers listings of my blog posts, it shows the tags, almost as large as the post excerpt. I deleted the tags for the current posts so they didn't interfere, however you can see them on page 2 in the link below. I would also like to delete the categories, author and comments from the post listings, both teaser and full posts if possible.

    http://www.sandrawalter.com/2013-articles/page/2/


    Thanks!
     
  6. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS


    Code:
    .content-bar .post .post_meta, .content-bar .page .post_meta{
    display:none;
    }
     
  7. sandrawalter

    sandrawalter New Member

    Joined:
    Dec 14, 2012
    Messages:
    19
    Likes Received:
    0
  8. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    I have checked your blog page. Posts which contain paypal button for donation are showing this blank space.
    There is an image (pixel.gif), Which is creating this issue.

    Code given below will remove all images from blog page.

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .content-bar .post .postimg {
    display: none;
    }
     
  9. sandrawalter

    sandrawalter New Member

    Joined:
    Dec 14, 2012
    Messages:
    19
    Likes Received:
    0
    I am still having the tag issue - currently I am not tagging my posts because the tags show up in the blog listing AND in the full posts. How do I eliminate this from the teasers and blog posts?
     
  10. sandrawalter

    sandrawalter New Member

    Joined:
    Dec 14, 2012
    Messages:
    19
    Likes Received:
    0
    also, the tags show up when someone uses the search box - they appear under the article teaser.
     
  11. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    We are not getting your issue. Please explain with the help of screenshot, About which area you are talking.
     
  12. sandrawalter

    sandrawalter New Member

    Joined:
    Dec 14, 2012
    Messages:
    19
    Likes Received:
    0
    here you go - the tags show up in the teasers as well as underneath the articles. I would like to hide them.
     

    Attached Files:

  13. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .content-bar .post .tag {
    display: none;
    }
    This will solve your issue.
     

Share This Page