WPIntell

Source evidence

navigation

Accordion Slider · support · 2022-07-14T16:33:00+00:00

mixedsentiment
mediumseverity
0.85relevance
11replies
Evidence linked to opportunitycommercial context

Proof Health

Open evidence

Commercial opportunities need traceable source links before they are treated as build-worthy.

5 / 33 rows with source links

15.2% of this page's analysis has direct source links.

0 build-decision rows missing links

0 rows here require auditable proof before promotion.

28 rows with no attached evidence

0 rows have source counts but still need direct links.

Conversation

support
kvle resolved
is it possible to not display the navigation circles at the bottom of the sliding images when visible panels is set to 1… also, has anyone noticed that when there are multiple slides, the last circle is not lined up in a straight line with other circles… it is a little lower than the rest…something like this • ₒ since i can’t paste a screenshot nor attach it, i’ve uploaded to my flickr account… https://www.flickr.com/gp/164143134@N08/M4Yj33w3k9 thanks forgot to include my environment… WordPress 5.9.3 PHP Version : 7.4.28 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 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 .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 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 that worked… thanks for following through… You’re welcome!

Comments

11 shown
kvle 2022-07-14T16:36:00+00:00

forgot to include my environment… WordPress 5.9.3 PHP Version : 7.4.28

kvle 2022-07-14T16:57:00+00:00

sorry, one more observation… the circles line up ok in the preview… it only displays strangely when included on a page

bqworks 2022-07-15T07:46:00+00:00

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

kvle 2022-07-15T11:17:00+00:00

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

bqworks 2022-07-15T12:20:00+00:00

Hi, Instead of visibility: hidden you can use display: none . Best, David

kvle 2022-07-15T14:26:00+00:00

.as-pagination-buttons {display: none;} doesn’t work…white space is still there

bqworks 2022-07-15T15:48:00+00:00

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

kvle 2022-07-15T17:48:00+00:00

still no luck… .as-pagination-buttons {display: none !important;} (site is still under construction) https://sites.austincc.edu/bua/rele/ thanks

bqworks 2022-07-15T19:07:00+00:00

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

kvle 2022-07-15T19:45:00+00:00

that worked… thanks for following through…

bqworks 2022-07-16T07:39:00+00:00

You’re welcome!