Resize Featured Image 100% Working
-
hi here is the solution is resize featured in WordPress theme.
You just need to edit theme Stylesheet (style.css)file. but do not forget to backup before edit.Find this code in your style.css file . . .
—————————————————————
}
article img{
max-width:100%;
}
article img:hover, #featured-post img:hover{
-ms-filter: “progid:DXImageTransform.Microsoft.Alpha(Opacity=80)”;
filter: alpha(opacity=80);
-moz-opacity: 0.8;
-khtml-opacity: 0.8;
opacity: 0.8;
}
.blog article.has-post-thumbnail h1.entry-title, .archive article.has-post-thumbnail h1.entry-title{
margin-top:17px;
margin-bottom: 10px;
}
————————————————-
and you need to change
————————————————
}
article img{
max-width:100%;
————————————————-
to –
————————————————MAX-WIDE:30%;
———————————————–and save it.
You are done.
The topic ‘Resize Featured Image 100% Working’ is closed to new replies.