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!