-
Notifications
You must be signed in to change notification settings - Fork 127
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
Column breaks out #73
Comments
hi there. the only reason it could do that, is that the css is not added, or is overwritten by your own css. please make sure these styles are correctly added: https://github.com/oriongunning/gridder/blob/master/dist/css/jquery.gridder.min.css |
Hi, I have included the demo css, <li class="card card col-6 col-md-4 col-lg-3 col-xxl-2 gridder-list" ... ( in desktop : I have 4 column (col-lg-3), but when I click on one of them, all the next li wrap under the gridder-show content. |
Hahhh. It will not work if you use bootstrap grid. You will have to do your
own responsive css.
FIY, all the li should be display: inline-block; and the gridder should be display block;float:left;
I guess, I'll have to find a way to make it work with bootstrap columns one day.
…On Wed, 29 May 2019 at 07:54, anniemaisonneuve ***@***.***> wrote:
Hi, I have included the demo css,
But because I am using card-group from bootstrap, with bootstrap grid:
The float left on .gridder-show seems to not work with my layout
Example:
<li class="card card col-6 col-md-4 col-lg-3 col-xxl-2 gridder-list"
...
( in desktop : I have 4 column (col-lg-3), but when I click on one of
them, all the next li wrap under the gridder-show content.
Thanks for helping by the way
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#73>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/ABGYDRAESA2QIEQGAPQUYNDPXWSZFANCNFSM4HQEXJ2A>
.
|
When I click the first item, it shifts the others on the same row down below the expanded part and if I click the ones below the expanded section they move back up to the first row as I click them.
Can you help me out, so it does not break out? Thank a lot
The text was updated successfully, but these errors were encountered: