WPIntell

Source evidence

Oxygen Builder issue

Accordion Slider · support · 2022-03-15T07:00:00+00:00

mixedsentiment
mediumseverity
0.84relevance
4replies
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
Marlimant resolved
Using Oxygen Builder, the class “.as-mask” >> “transform” property hides the accordion. I forced that css code to set “transform:none !important;” I could see a incomplete behavior in responsive mode too. Thanks for the great plugin. This topic was modified 4 years, 2 months ago by Marlimant . The page I need help with: [ log in to see the link] Hi, It’s possible that when the accordion is instantiated, it’s inside an invisible element, which prevents the accordion to calculate its size correctly. If this is the case, if you resize the browser window, the accordion will resize itself correctly. In this case, you could either handle the issue in Oxygen Builder if its settings allow it or use some JavaScript code to programmatically trigger the accordion’s resize after its parent element becomes visible. If you don’t have a way to detect that event, you could simply try to execute the code after a certain delay, like one second, or more if necessary: jQuery(document).ready(function(){ setInterval(function(){ jQuery('.accordion-slider').accordionSlider('resize'); }, 1000); }); To keep the accordion responsive, you need to allow the transform property on as-mask to work as it was designed. Best, David Thanks for the fast reply David. Fortunately Oxygen has a block to add html and javascript. I Added your code, and the problem has gone. Greetings! Javier. This reply was modified 4 years, 2 months ago by Marlimant . Thank you. You’re welcome, Javier!

Comments

4 shown
bqworks 2022-03-15T10:45:00+00:00

Hi, It’s possible that when the accordion is instantiated, it’s inside an invisible element, which prevents the accordion to calculate its size correctly. If this is the case, if you resize the browser window, the accordion will resize itself correctly. In this case, you could either handle the issue in Oxygen Builder if its settings allow it or use some JavaScript code to programmatically trigger the accordion’s resize after its parent element becomes visible. If you don’t have a way to detect that event, you could simply try to execute the code after a certain delay, like one second, or more if necessary: jQuery(document).ready(function(){ setInterval(function(){ jQuery('.accordion-slider').accordionSlider('resize'); }, 1000); }); To keep the accordion responsive, you need to allow the transform property on as-mask to work as it was designed. Best, David

Marlimant 2022-03-15T12:19:00+00:00

Thanks for the fast reply David. Fortunately Oxygen has a block to add html and javascript. I Added your code, and the problem has gone. Greetings! Javier. This reply was modified 4 years, 2 months ago by Marlimant .

Marlimant 2022-03-15T12:21:00+00:00

Thank you.

bqworks 2022-03-15T13:40:00+00:00

You’re welcome, Javier!