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

    (@wpkube)

    Hi @attosoftonline

    Not at the moment.

    But I can write and send over some CSS code which you can put on the site and make it show more columns. Just let me know exactly how many columns you need.

    Thread Starter attosoftonline

    (@attosoftonline)

    Let’s say, 5 colums.

    And another problem: in your plugin description, say “title_element (the element that wraps the name of the user/author, defaults to div, can be any element, for example h2)”.

    Sometimes, between h2 and h3, the diference is too big. Can you correct me on this case?

    [authors_list title_element=”18px”}

    Thank you!

    P.S. Do you have some premium features at this plugin?

    Plugin Author WPKube

    (@wpkube)

    Hi @attosoftonline

    Keep the settings as you have them now and add this:

    @media only screen and (min-width:760px) {
        .authors-list-cols-dir-horizontal.authors-list-cols-4 .authors-list-col:nth-child(4n+1){
            clear: none !important;
        }
        .authors-list-cols-dir-horizontal .authors-list-col-3 {
            width: 17.264% !important;
        }
        .authors-list-cols-dir-horizontal.authors-list-cols-4 .authors-list-col:nth-child(5n+1) {
            clear: both !important;
        }   
    }

    As for the size of the name/titles, it depends on the theme’s set size for the headings. We’re releasing a commercial version in a few days which has a “Styler” where you can change all those styling related options.

    But you could also go with custom CSS:

    .authors-list-item-title {
        font-size: 18px !important;
    }
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Author list – colums number’ is closed to new replies.