Thread Starter
kvle
(@kvle)
forgot to include my environment…
WordPress 5.9.3
PHP Version : 7.4.28
Thread Starter
kvle
(@kvle)
sorry, one more observation…
the circles line up ok in the preview…
it only displays strangely when included on a page
Hi,
You can hide the buttons with custom CSS. The lining issue with the last circle is probably caused by some external CSS. This code should fix it:
.as-pagination-buttons {
visibility: hidden;
}
.as-pagination-button {
margin: 4px !important;
}
Best,
David
Thread Starter
kvle
(@kvle)
hi,
thanks for quick response.
both worked.
however, the pagination buttons are gone but the white space remains…
how do i remove that also…
thanks
Hi,
Instead of visibility: hidden you can use display: none.
Best,
David
Thread Starter
kvle
(@kvle)
.as-pagination-buttons {display: none;} doesn’t work…white space is still there
Maybe try .as-pagination-buttons {display: none !important;}. If that still doesn’t work, the white space could be caused by something else and I would need to take a look at the page, in order to figure it out.
Best,
David
Thread Starter
kvle
(@kvle)
still no luck…
.as-pagination-buttons {display: none !important;}
(site is still under construction)
https://sites.austincc.edu/bua/rele/
thanks
One of the accordion’s container elements, wpb_content_element, has a margin bottom of 35px. You could remove that with CSS .wpb_content_element {margin-bottom: o !important;}, but that will remove it everywhere and maybe you want that margin in some places, so check if you can remove it only for that element, somewhere in the admin area.
Best,
David
Thread Starter
kvle
(@kvle)
that worked…
thanks for following through…