carousel button
Forum rules
IMPORTANT NOTE!!
DO YOU HAVE A QUESTION OR PROBLEM AND WANT QUICK HELP?
THEN PLEASE SHARE A "DEMO" PROJECT.
PLEASE READ THE FORUM RULES BEFORE YOU POST:
http://www.wysiwygwebbuilder.com/forum/viewtopic.php?f=12&t=1901
MUST READ:
http://www.wysiwygwebbuilder.com/getting_started.html
WYSIWYG Web Builder FAQ
IMPORTANT NOTE!!
DO YOU HAVE A QUESTION OR PROBLEM AND WANT QUICK HELP?
THEN PLEASE SHARE A "DEMO" PROJECT.
PLEASE READ THE FORUM RULES BEFORE YOU POST:
http://www.wysiwygwebbuilder.com/forum/viewtopic.php?f=12&t=1901
MUST READ:
http://www.wysiwygwebbuilder.com/getting_started.html
WYSIWYG Web Builder FAQ
- alexoliveira
-
- Posts: 233
- Joined: Fri Oct 01, 2021 5:12 am
- Contact:
carousel button
A frequent complaint from my clients at the agency is that the carousel button is crooked and they charge me a lot to fix it, does anyone have a solution?
https://ibb.co/THMksSp
https://ibb.co/THMksSp
S.A
Re: carousel button
Do you have a demo project so I can see all your settings?


- alexoliveira
-
- Posts: 233
- Joined: Fri Oct 01, 2021 5:12 am
- Contact:
Re: carousel button
You are using the Card Container in carousel mode. This is based on the OWL script. This third party script is using the < and > characters of the default font-family for navigation.
So, if you want to control the appearance of the arrows then you can select a different font in the page properties.
If you want to control the exact position of the arrow then you can add some custom code. Note that the offset depends on the selected font so this cannot be done automatically.
So, if you want to control the appearance of the arrows then you can select a different font in the page properties.
If you want to control the exact position of the arrow then you can add some custom code. Note that the offset depends on the selected font so this cannot be done automatically.
Code: Select all
<style>
#CardContainer1 .owl-nav button.owl-prev,
#CardContainer1 .owl-nav button.owl-next
{
display: inline-flex;
align-items: center;
justify-content: center;
flex-wrap: nowrap;
}
#CardContainer1 .owl-nav button.owl-prev span,
#CardContainer1 .owl-nav button.owl-next span
{
transform: translateY(-6px);
}
</style>
- alexoliveira
-
- Posts: 233
- Joined: Fri Oct 01, 2021 5:12 am
- Contact:
- alexoliveira
-
- Posts: 233
- Joined: Fri Oct 01, 2021 5:12 am
- Contact:
Re: carousel button
Could you consult this website and tell me why the code is not working on the button?
https://tonydivisorias.com.br/
https://tonydivisorias.com.br/
S.A
Re: carousel button
Where exactly on the website I need to look?
Can you please be more specfic?
Can you please be more specfic?
- alexoliveira
-
- Posts: 233
- Joined: Fri Oct 01, 2021 5:12 am
- Contact:
Re: carousel button
Of course... on the carousel button (next - prev), I applied the code provided and it is working correctly on other sites, but on this specific one it didn't work. ID: (produtosslid)
Last edited by alexoliveira on Mon Jan 20, 2025 8:53 am, edited 1 time in total.
S.A
Re: carousel button
The code has been applied incorrectly.
It should be in Page HTML, not in the class property.
It should be in Page HTML, not in the class property.
- alexoliveira
-
- Posts: 233
- Joined: Fri Oct 01, 2021 5:12 am
- Contact:
Re: carousel button
I just checked that when changing the general font, the code works again.
With that, I thank you for the support.
With that, I thank you for the support.
S.A
- alexoliveira
-
- Posts: 233
- Joined: Fri Oct 01, 2021 5:12 am
- Contact:
Re: carousel button
The code should be added in Page HTML.
https://www.wysiwygwebbuilder.com/add_html.html
https://www.wysiwygwebbuilder.com/add_html.html