How to make post excerpt in Thesis theme?

You already made a topic and we already answered you correctly. Why are you posting this again?

If you are NOT using teasers : in your Thesis admin panel options, go to design options --> display options (it's on the leftmost column). Select "display post excerpts".

If you ARE using teasers, go to "HomePage Display Options" and change the number of features to 0 (so your whole homepage will become teasers).

If you select the second option, you will have to add the following CSS:

Code:
.custom .teaser {
   width: 100%;
   margin-top: 2em;
   padding-top: 2em;
   border-top: 1px dotted #bbb;
   text-align: justify;
}
.custom .teasers_box {
   padding-top: 0;
   padding-bottom:0;
   border-top: 0;
}
 
Back
Top