Skip to content
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

Number of columns #68

Open
LeonardoDaVincio opened this issue Jun 27, 2019 · 2 comments
Open

Number of columns #68

LeonardoDaVincio opened this issue Jun 27, 2019 · 2 comments

Comments

@LeonardoDaVincio
Copy link

Hello, is it possible to change the number of columns in the portfolio?
I didn't find a way to modify it, yet.

@ed353
Copy link

ed353 commented Mar 6, 2021

I am wondering the same thing myself!

@HLasse
Copy link

HLasse commented Apr 7, 2021

@LeonardoDaVincio @ed353

I managed to get 2 columns by adding the following to the custom.css file:

@media (min-width: 992px){
    .col-lg-3{
        width: 50% !important;
    }
}

@media (min-width: 1200px){
    .col-lg-3{
        width: 50% !important;
    }
}

@media (min-width: 992px) {
    .col-md-9{
        width:60%;
    }
}

It's possible the !important calls are unnecessary (it's a habit to use them by now)

Best,
Lasse

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants