Hi there, I love yur DW Minion theme so much, so I decided to use it but I have some problems;
My blog have an 259 post, I can’t edit them one by one, so how can I auto except them?
And thumbnail it looks very bad like that: http://imgur.com/Xz0NRtx
How can I auto resize them and align to left?
1 Answers
Hi Lacivenrt,
To resolve these issues please follow my instruction here:
1. Excerpt:
– Open content.php in /wp-content/themes/dw-minion/content.php
– Replace following code
– line 10
<?php the_content( __( '<span class="btn btn-small">Continue reading</span>', 'dw-minion' ) ); ?>
with:
<?php the_excerpt(); ?>
2. Thumbnail:
– Add following code to Header Code in Dashboard / Appearance / Customize / Custom code
<style>
@media (min-width: 768px) {
.entry-thumbnail img {
width: auto;
}
}
</style>
Hope this helps!
Please login or Register to submit your answer