I was wondering how to change the thumbnail size to make it uniform iwth the other thumbnail sizes on the theme?
And if you expand the thumbnail size to be longer move the Title/content underneath the thumbnail?
1 Answers
You can go to the Dashboard > Customize > Additional CSS then add the following code.
.dw_focus_widget_news_list .post {padding-left: 0; }
.dw_focus_widget_news_list .post .entry-thumbnail {position: relative;}
.dw_focus_widget_news_list .post .entry-thumbnail img {max-width: 100%;}
Then open the wp-content/themes/dw-focus/inc/widgets then open the dw-focus-list-widget.php file and find the line 122.
Replace it with the following code:
<div class="entry-thumbnail"><a href="<?php the_permalink(); ?>"><?php the_post_thumbnail(); ?></a></div>
Please login or Register to submit your answer