Hello fettbauch,
Please make you sure that you refer to the Module 4 on category page. I’ve tested on my side with M4 on category page and on mobile version and all the images are full width. You can look here the result: http://screencast.com/t/YOckkOZnDJ – http://screencast.com/t/XOg979wWD .
Please try to disable all the active plugins, except Visual Composer and install only the plugins that come bundle with our theme, clear all your caches and test it again. If you problem is still there, please provide your URL website so I can inspect it closer.
Hope this helps and let us know how it goes!
Thank you for the message!
Hello,
Unfortunately the theme has no option for it and it will be no easy task to make it work. You will need to change the thumbnail used by the element and modify it’s css. There is no easy method to do it except coding it. You will need coding knowledge to get it done. you can hire a freelancer if you cannot do it from sites like studio.envato.com
Thank you!
Hello,
The modification is all css related
you will need to use the media queries to target just the mobile viewport. Then you can make images use the whole container width and change positioning:
@media (max-width: 767px){
.td_module_11 .td-module-thumb {
width: 100%;
position:relative;
}
.td_module_11 .td-module-thumb .entry-thumb{
width:100%;
}
}
Now you will need to position the titles and excerpts.
This should get you started on your task.
Thanks.
