I want to do a simple mobile view and I want to hide the excerpt on Lastest News, I use Lastest News only on mobile phone, for a bigger screens I use Categories. Is possible to hide the excerpt on Lastest News widget?
Regards
1 Answers
To resolve this issue, you can add the following code to the style.css file:
@media only screen and (max-device-width: 480px) {
.widget_dw_focus_lastest_news .hentry .entry-content { display: none; }
}
Hope this helps !
Please login or Register to submit your answer