I will fix it in the next update. As for now you may add the following to your CSS file. Works just as well.
.netsposts-block-wrapper { column-count: 2; }
If you don’t want any margin as shown in the image link add the following:
.netsposts-column { margin-left: 0; }
And if you don’t want any of the border lines just add:
.netsposts-content { border-bottom: none !important; }
If you’d like to make sure this pertains to this one shortcode only you may add:
shortcode_id='custom-shortcode-id'
that way it will only change this exact shortcode. So the above CSS arguments will be the same except be preceded with the ID as in below.
#custom-shortcode-id .netsposts-block-wrapper { column-count: 2; }
#custom-shortcode-id .netsposts-column { margin-left: 0; }
#custom-shortcode-id .netsposts-content { border-bottom: none !important; }
Here is the image to show you what the above will look like. Keep your shortcode the same except for adding the following ID above to the shortcode. So your shortcode will look like:
[netsposts shortcode_id='custom-shortcode-id' include_blog='9' post_type='question' column='2' titles_only='true' include_link_title='true' hide_source='true' list='6']
Remember to change custom-short-code-id to whatever name you want. Must begin with a letter for proper CSS formatting.
https://drive.google.com/open?id=1mQm2UHeHgSY8mbIH5AdjdDSdK4tSREO9
Here is another image with the removal of the borders and margins. That is with all the above CSS added.
https://drive.google.com/open?id=1DZncmNI5-nuBr3CDwlgSTHpyBi7LHsC9
-
This reply was modified 4 years, 10 months ago by johnzenausa. Reason: Added second image