Picture not showing up in blog.

Discussion in 'RoadFighter WordPress Theme' started by satinfeather99, Sep 3, 2013.

  1. satinfeather99

    satinfeather99 Member

    Joined:
    Mar 5, 2013
    Messages:
    72
    Likes Received:
    0
    Hi I can add the pictures to my post fine and the post appears in the blog, but not when you click read more and go to the article. The picture is then missing

    http://buff.ly/174q7sF

    http://solditclosedit.com/blog/

    Can I take the date off also showing up on the top left. It is appearing overtop of the text or picture. I want to delete the date on top left. Thanks!
     
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
  3. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,

    Your issue has been resolved on the post http://buff.ly/174q7sF .

    You are adding the image inside the h1 header tag (i.e. <h1></h1>) and on the other side you have inserted the code given below in the Custom CSS section.
    Code:
    .page-content .content-bar h1 {
    display: none;
    }
    Due to this, it is hiding the post images.

    And in some cases of post you have inserted the wrong URL address of the images due to which they are displaying there.
    So, put the correct image address, this will solve your post image issue.

    And to remove the date on the top left of blog post,
    paste the code given below in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

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

Share This Page