• Resolved dacm

    (@dacm)


    Greetings,
    Someone posted before about this and a posible solution. My question is, I found that line of code in the file “style.min.css” but if modified it, when the plugin gets and update it will erase the changes, am I right? If so, any suggestions on how can I modify this? The original post:

    WCat (@wcat)
    2 years, 5 months ago
    This is happening for me when I choose 2 column simple list and categ_name=”none”.

    Plugin still creates

    <div class=”mprm-simple-view-column mprm-category-title”>
    </div>

    Which staggers the two column list unevenly.

    I tried display:none; and just can’t seem to figure out how to remove that div without some jquery.

    Best regards

    edit

    my solution was changing this

    .mprm-container.mprm-view-simple-list > div[class^=”mprm-columns-count-“].mprm-all-items .mprm-simple-view-column {
    display: inline-block;
    width: 100%;
    }

    to this

    .mprm-container.mprm-view-simple-list > div[class^=”mprm-columns-count-2”].mprm-all-items .mprm-simple-view-column {
    display: block;
    width: 100%;
    }

    Best regards

Viewing 1 replies (of 1 total)
  • Plugin Support dimned

    (@dimned)

    Hi @dacm,
    It is possible to override CSS file with your custom CSS adding it to Appearance > Customize > Additional CSS:

    .mprm-container.mprm-view-simple-list > div[class^=”mprm-columns-count-2”].mprm-all-items .mprm-simple-view-column {
    display: block;
    }

    Let me know if it is helpful.

Viewing 1 replies (of 1 total)
  • The topic ‘Simple list Columns’ is closed to new replies.