Hi,
Thank you for letting us know about the issue.
Could you provide a screenshot of the problem and a link to the page where the shortcode is added?
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
-
This reply was modified 8 years, 2 months ago by
WCat.