ive tried a few places but it changes nothing..
to see the results of css changes, you sometimes need to refresh the browser cache or reload the page you are viewing.
at the moment you managed to stick the new css into the middle of another style - wrong place.
this is it now:
.wp-caption {
border: 1px solid #ddd;
text-align: center;
background-color: #f3f3f3;
padding-top: 4px;
margin: 10px;
img.alignleft.tfe {margin-right: 10px;}
/* optional rounded corners for browsers that support it */
-moz-border-radius: 3px;
-khtml-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
}
try and change it to:
.wp-caption {
border: 1px solid #ddd;
text-align: center;
background-color: #f3f3f3;
padding-top: 4px;
margin: 10px;
/* optional rounded corners for browsers that support it */
-moz-border-radius: 3px;
-khtml-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
}
img.alignleft.tfe {margin-right: 10px;}
your theme seems to be using 'the_excerpt()' in the front page, and there is normally no 'read more' with it.
but you can check this method:
http://codex.wordpress.org/Template_Tags/the_excerpt#Make_the_.22read_more.22_link_to_the_post