• Resolved zenzino

    (@zenzino)


    I want to have the press coverage in two columns. I noticed in the class designations, there was an odd/even. Is it possible, using the shortcode to have the odd items in the first column and the even items in the second column?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Contributor farinspace

    (@farinspace)

    Nooz does not have functionality for 2-columns built into the “shortcode”. We do have plans for layout/theme picker on the roadmap, but until then Nooz does have excellent markup with well-defined CSS class names which will allow you to refine the look and feel.

    Here is a starter 2-col CSS setup:

    @media (min-width: 768px) {
        .nooz-list-wrapper .nooz-item {
            float: right;
            width: 49%;
        }
        .nooz-list-wrapper .nooz-item-odd {
            clear: both;
            float: left;
        }
    }
    
    Thread Starter zenzino

    (@zenzino)

    I had the columns set up. I was just wondering if the shortcode had the ability to define odd or even items.

    But, the CSS you supplied worked perfectly. Thank you very much.

    As expressed by other commenters, this is a great plugin and I would happily pay for a full-featured version if you decided to go that way.

    Plugin Contributor farinspace

    (@farinspace)

    Thank you for the comments, we appreciate it very much, we work for 5-star reviews, leave us some feedback! ?? Thanks again, @zenzino

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Two columns using shortcode’ is closed to new replies.