Hi,
Great theme!
I got one question:
I use module 12 and my post excerpts are showing on computer, but in mobile view i can see only headline.
So is there any way to show post excerpts also in mobile view?
Example like this: http://bit.ly/2od9iy9
(that is differend theme, but if you look it with mobile you can see excerpts)
Hi,
Module 12 would be this one
– https://demo.tagdiv.com/newspaper/category/module-12-layout/
On mobile it looks like this
– https://www.screencast.com/t/woHtHMm4c
The excerpt should be visible on mobile as well using his module. Please provide a link to your website where the issue is happening so we can inspect it.
Thanks
Hi,
Ok. Thank you.. my bad =)
Another question:
I would like to show all my posts excerpts on my homepage.
I know i can do it with Visual Composer.
But if i use example “Block 12” it will show post excerpts in computer, but in mobile it shows only title?
Is there anything to do, so it would show also the excerpts in mobile view?
Hi,
I believe it was a design choice to hide the excerpts for that block on mobile. I could give you a code to make them visible if you need it, the block will look like this with excerpts
– https://www.screencast.com/t/ZyTu00ZxQ
Enter the code in Theme panel->Custom code->Advanced CSS in the phones section.
.td_block_12 .td_module_11 .td-excerpt {
display: block;
}
The length of the excerpt can be controlled for each module
– https://forum.tagdiv.com/excerpts-introduction/
Thanks
Hi,
Then the code would be like this
– https://www.screencast.com/t/hr8Xk9cwx
.td_block_12 .td_module_11 .td-excerpt,
.td_block_12 .td_module_11 .td-read-more {
display: block;
}
Thanks