• Resolved jekasim

    (@jekasim)


    Hello, I want to make the list in 3 columns view in desktop. How can I do that? Thanks

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Steven

    (@shazahm1hotmailcom)

    You can apply some custom CSS, like this example:

    #cn-card .cn-list-body {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    #cn-card .cn-list-item {
        flex: 0 33%;
    }
    
    #cn-card .cn-list-item .cn-entry {
        height: 100%;
    }

    Another alternative is to use a premium template such as this one:

    This does not display exactly 3 columns; it will vary depending on the theme’s content width and the device on which the page is being viewed.

    I hope this answers your question. Please let me know.

    Thread Starter jekasim

    (@jekasim)

    Thanks for your help, it make the list in 3 column in desktop view but it change the mobile view too, it becomes 2 column in mobile. I want to change to 3 column in just desktop.

    Plugin Author Steven

    (@shazahm1hotmailcom)

    Apologies for the delay in my reply!

    If you want the mobile view to be different, you have to add a CSS media query to change the layout.

    Example:

    @media only screen and (max-width: 480px) {
        
        #cn-card .cn-list-body {
          display: block;
      }
    
        #cn-card .cn-list-item {
          flex: unset;
      }
    }
Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘3 column in desktop view’ is closed to new replies.