Support » Themes and Templates » Hainvg Trouble Pulling Pictures to Front Page

  • I’m using magazine mode and I’m having trouble getting the pictures to show up on the front page. Any ideas?

    Also is it possible to change the links to not highlight?

Viewing 3 replies - 1 through 3 (of 3 total)
  • There are thousands of WordPress themes – which means that many people won’t be familiar with your particular theme. So a link to your site might help.

    Thread Starter deanosounds

    (@deanosounds)

    Sorry I thought it was already tagged. The theme is SSirup’ by 1000ff and the my website is Cultures of Soul

    If you want to show the pictures you inserted into your articles on the homepage, you’ll have to make some changes to the code.

    In your theme, the file to modify will be index.php. Open it and locate <?php the_excerpt(); ?>
    This small piece of code shows up only a brief excerpt of your post, that you can actually define in the edit post panel.

    If you replace that function by <?php the_content(); ?>, it will call all the content of your post, not only the beginning.
    It is then easy for you to decide what you want to show on the homepage: in the edit post panel, all your content placed above the <!--more--> tag will be shown.

    Give it a try!

    About the highlight of your links, that’s set in the style.css stylesheet.
    If you do not want any hightlights, look for this part:

    #content h1 a{
    color:#000;
    background:#FFFD87;
    line-height:37px;
    padding:1px 3px;
    }
    
    #content h2 a,h3 a,h4 a {
    line-height:29px;
    padding:1px 3px;
    }
    
    body a,h3 a:hover,.navigation a:hover {
    color:#000;
    background:#FFFD87;
    }
    
    body a:hover,#content h1 a:hover,h2 a:hover,h3 a:hover,h4 a:hover,h3 a {
    color:#FFFD87;
    background:#000;
    }

    The background:#FFFD87; and background:#000; attributes are responsible for the highlights. Remove them all or only part of them depending on the result you wanna achieve!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Hainvg Trouble Pulling Pictures to Front Page’ is closed to new replies.