Hi,
I want to put page numbers at the end of each blocks of my pages as it is in the attached page.
How can I do that?
Ps: This page has been taken from the newspaper demo pages.
Thanks in advance for your help!
Regards
Hello,
The numbers you see here: https://www.screencast.com/t/A7YrpshU3 are the comment counters for the block. These can be activated from here: https://www.screencast.com/t/5txiZnpzcXtd
Thank you!
Hi,
Numbered pagination is not available for blocks. Blocks have these forms of pagination
– https://www.screencast.com/t/ylpih4W0oVkC
– https://forum.tagdiv.com/block-settings-guide/
On that page the page template with latest articles and pagination is used
– https://www.screencast.com/t/IrEe0U4Gmljt
That section will display a numbered pagination.
Thanks
Hi,
Thank you for your response.
I already use “Next Prev ajax” in the block settings. However, the “<” and “>” shapes shown under the block can not visiable easily. At least it would be better to write a text close to them. Or if the color and background visibility could be changed.
Regards.
You could create some additional design for that next/prev navigation, like this maybe
– https://www.screencast.com/t/LQBeEb7v
.td_block_wrap .td-next-prev-wrap a {
width: 50px;
line-height: 28px;
color: #111111;
}
.td_block_wrap .td-icon-menu-right:before {
content:"Next";
font-size: 15px;
font-family: Roboto;
}
.td_block_wrap .td-icon-menu-left:before {
content:"Prev";
font-size: 15px;
font-family: Roboto;
}
Or use some colors and increase them to be more noticeable
– https://www.screencast.com/t/xUdxcaxhRWc
.td-next-prev-wrap a {
background-color: red;
font-size: 20px;
line-height: 45px;
width: 50px;
height: 50px;
}
You can modify these codes or create different ones
– https://forum.tagdiv.com/create-custom-code-using-the-browsers-inspector/