-
Notifications
You must be signed in to change notification settings - Fork 63
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to set width to 100% #163
Comments
One possible solution: Try setting the If that doesnt work, I have another idea what might be causing it. Let me know |
Thank you for replying, Kevin. |
It could be specific to your code. Send me an email [email protected] with your code and I'll post the solution here. |
I solved this doing some dirty fix. See code below, taken from "jquery.liquid-slider.min.js" .css({"max-width":jQuery(i.sliderId+" .ls-panel:first-child").width(),width:"100%"}) Just change "max-width" to "mmax-width" or some inválid CSS code, it worked for me. |
Hey @cacacobra This thread 2.5 years old :D I haven't worked on this code in a long time so it's not fresh in my memory. I'm not sure the above hack is needed, but if it works then good. Resize the browser a few times to make sure nothing breaks. |
Hello, I'm trying to set the slider width to 100% but something strange happens when positioning on the last slide/tab, it shows a fragment of the first tab and the current tab moves to the left side. When positioning on the other tabs the content looks fine.
When I resize the window on Chrome the problem fixes itself but on Firefox it fixes for a couple of seconds and then it moves again.
This is the CSS I changed:
.liquid-slider .ls-panel {
width: 100%;
display: block;
float: left;
}
How can I set the slider to 100%?
The text was updated successfully, but these errors were encountered: