Caleb Williams
asked 3 years ago

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
DominicStaff
answered 3 years ago

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>
Powered by DW Question & Answer Pro