Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • the_wing

    (@the_wing)

    Hi, there’s a similar post that discuss the same issue, I think I solved the problem, take a look there.

    the_wing

    (@the_wing)

    I think I solved the problem: It is an old setting of a older version of SRP Free that *should* collapse with an other css setting, this works well for all other browsers except for ie8, ie7 and ie6. Here’s the “bad” css, its in “layout.css” file in the plugin folder.

    .srp-content-box {
    	-webkit-box-flex: 1;   /* OLD - iOS 6-, Safari 3.1-6 */
           -moz-box-flex: 1;   /* OLD - Firefox 19- */
                 width: 20%;   /* For old syntax, otherwise collapses. */
            -webkit-flex: 1;   /* Chrome */
                -ms-flex: 1;   /* IE 10 */
                    flex: 1;   /* NEW, Spec - Opera 12.1, Firefox 20+ */
    }

    The problem is this “width: 20%” that squeezes the posts to 1/5 of its normal size. I solved it by adding this code simply in the custom css editor that you find in the plugin settings inside the wordpress admin backend:

    .srp-content-box {
        width: auto !important;
    }

    Having not completely understood the problem, maybe someone else can find a more elegant solution, but this should fix the thing more or less definitively. Hope this has helped!

Viewing 2 replies - 1 through 2 (of 2 total)