carousel button

All WYSIWYG Web Builder support issues that are not covered in the forums below.
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
Post Reply
User avatar
alexoliveira
 
 
Posts: 233
Joined: Fri Oct 01, 2021 5:12 am
Contact:

carousel button

Post by alexoliveira »

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
S.A
User avatar
Pablo
 
Posts: 23239
Joined: Sun Mar 28, 2004 12:00 pm
Location: Europe
Contact:

Re: carousel button

Post by Pablo »

Do you have a demo project so I can see all your settings?

Image
User avatar
alexoliveira
 
 
Posts: 233
Joined: Fri Oct 01, 2021 5:12 am
Contact:

Re: carousel button

Post by alexoliveira »

S.A
User avatar
Pablo
 
Posts: 23239
Joined: Sun Mar 28, 2004 12:00 pm
Location: Europe
Contact:

Re: carousel button

Post by Pablo »

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.

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>
User avatar
alexoliveira
 
 
Posts: 233
Joined: Fri Oct 01, 2021 5:12 am
Contact:

Re: carousel button

Post by alexoliveira »

Thank you very much Pablo, the code is working correctly.
S.A
User avatar
alexoliveira
 
 
Posts: 233
Joined: Fri Oct 01, 2021 5:12 am
Contact:

Re: carousel button

Post by alexoliveira »

Could you consult this website and tell me why the code is not working on the button?

https://tonydivisorias.com.br/
S.A
User avatar
Pablo
 
Posts: 23239
Joined: Sun Mar 28, 2004 12:00 pm
Location: Europe
Contact:

Re: carousel button

Post by Pablo »

Where exactly on the website I need to look?
Can you please be more specfic?
User avatar
alexoliveira
 
 
Posts: 233
Joined: Fri Oct 01, 2021 5:12 am
Contact:

Re: carousel button

Post by alexoliveira »

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
User avatar
Pablo
 
Posts: 23239
Joined: Sun Mar 28, 2004 12:00 pm
Location: Europe
Contact:

Re: carousel button

Post by Pablo »

The code has been applied incorrectly.
It should be in Page HTML, not in the class property.
User avatar
alexoliveira
 
 
Posts: 233
Joined: Fri Oct 01, 2021 5:12 am
Contact:

Re: carousel button

Post by alexoliveira »

I just checked that when changing the general font, the code works again.

With that, I thank you for the support.
S.A
User avatar
alexoliveira
 
 
Posts: 233
Joined: Fri Oct 01, 2021 5:12 am
Contact:

Re: carousel button

Post by alexoliveira »

Pablo wrote: Mon Jan 20, 2025 8:53 am The code has been applied incorrectly.
It should be in Page HTML, not in the class property.
Where would it be correct to add the code?
S.A
User avatar
Pablo
 
Posts: 23239
Joined: Sun Mar 28, 2004 12:00 pm
Location: Europe
Contact:

Re: carousel button

Post by Pablo »

The code should be added in Page HTML.
https://www.wysiwygwebbuilder.com/add_html.html
Post Reply