Dixie McCall Well-known member Sep 26, 2021 #1 How can I hide the pagination on top of the page? Thank you. Last edited: Sep 26, 2021
Solution tom3 Sep 26, 2021 You probably selected a different pagination option in the ACP, my bad. This one should show the pagination only at the end of the page: CSS: .block-outer.block-outer--after .block-outer-main nav.pageNavWrapper { display: inherit; } nav.pageNavWrapper { display: none; }
You probably selected a different pagination option in the ACP, my bad. This one should show the pagination only at the end of the page: CSS: .block-outer.block-outer--after .block-outer-main nav.pageNavWrapper { display: inherit; } nav.pageNavWrapper { display: none; }
tom3 Active member Sep 26, 2021 #2 To hide it globally you can add this code to your extra.less template: CSS: .p-breadcrumbs { display: none; } Upvote 0 Downvote
To hide it globally you can add this code to your extra.less template: CSS: .p-breadcrumbs { display: none; }
Dixie McCall Well-known member Sep 26, 2021 #3 I'm sorry I meant to write pagination not bread crumbs. I need to head the pagination at top of page. Upvote 0 Downvote
I'm sorry I meant to write pagination not bread crumbs. I need to head the pagination at top of page.
tom3 Active member Sep 26, 2021 #4 Try adding this: CSS: nav.pageNavWrapper.pageNavWrapper--mixed { display: none; } Upvote 0 Downvote
tom3 Active member Sep 26, 2021 #6 You probably selected a different pagination option in the ACP, my bad. This one should show the pagination only at the end of the page: CSS: .block-outer.block-outer--after .block-outer-main nav.pageNavWrapper { display: inherit; } nav.pageNavWrapper { display: none; } Upvote 1 Downvote Solution
You probably selected a different pagination option in the ACP, my bad. This one should show the pagination only at the end of the page: CSS: .block-outer.block-outer--after .block-outer-main nav.pageNavWrapper { display: inherit; } nav.pageNavWrapper { display: none; }
Dixie McCall Well-known member Sep 26, 2021 #7 Thank you again! Worked great. Appreciate it! Upvote 0 Downvote