• Resolved Ignacio Red

    (@ignaciored)


    I’m testing the plugin to use on my website and the design is not working. I’ve chosen the two-column option and it doesn’t work. Also, the text box is not sorted either.

    The page I need help with: [log in to see the link]

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Tom

    (@edge22)

    Your theme has this CSS, which is forcing the plugin columns to be full width:

    .post {
        float: left;
        width: 100%;
    }

    Try adding this CSS:

    @media (min-width: 768px) {
        .post.wpsp-col-6 {
            width: 50%;
        }
    }
    Thread Starter Ignacio Red

    (@ignaciored)

    Thanks @edge22 now is working perfect (:
    Any chance to repair the pagination style? https://i.imgur.com/ktCv6qY.png
    (It’s on the same site vegrecetas.com/test)

    Plugin Author Tom

    (@edge22)

    Give this a shot:

    .wpsp-load-more .page-numbers.current {
        width: auto;
        border: 0;
        background-color: transparent;
        color: initial;
        box-shadow: 0 0 0;
    }
    Thread Starter Ignacio Red

    (@ignaciored)

    Thanks @edge22, best support ever! ★★★★★

    Plugin Author Tom

    (@edge22)

    Glad I could help! ??

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Design not working’ is closed to new replies.