Support » Plugin: WordPress Related Posts » Problem on Mobile with 2 colomn layout since last update

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter homework

    (@homework)

    Back to 3.4.1 because it’s working better with this version…

    Hey homework,

    thanks for reaching out!
    I am sorry for the inconvenience but in our latest release we removed that ‘Mobile settings’ submenu and we made all of our themes responsive. But we can make it work for you specifically. First please upgrade the plugin to the latest version. Then go to plugin settings-> “Advanced settings”-> “Customize”-> and tick the box next to “Enable custom CSS”. Finally put the following code at the bottom of custom CSS code:

    @media screen and (max-width: 480px) {
    	ul.related_post {
    		-moz-column-count: initial !important;
    		-moz-column-gap: normal !important;
    		-moz-column-rule: none !important;
    		-webkit-column-count: initial !important;
    		-webkit-column-gap: normal !important;
    		-webkit-column-rule: none !important;
    		column-count: initial !important;
    		column-gap: normal !important;
    		column-rule: none !important;
    	}
    }

    Everything put together should look like this:

    .related_post_title {
    }
    ul.related_post {
    }
    ul.related_post li {
    }
    ul.related_post li a {
    }
    ul.related_post li img {
    }
    @media screen and (max-width: 480px) {
    	ul.related_post {
    		-moz-column-count: initial !important;
    		-moz-column-gap: normal !important;
    		-moz-column-rule: none !important;
    		-webkit-column-count: initial !important;
    		-webkit-column-gap: normal !important;
    		-webkit-column-rule: none !important;
    		column-count: initial !important;
    		column-gap: normal !important;
    		column-rule: none !important;
    	}
    }

    Please let me know how it goes. Take care and have a nice day,
    Petra

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Problem on Mobile with 2 colomn layout since last update’ is closed to new replies.