Tagged: 

Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #601248

    Hello,

    I’m using the partner element to add some visual links to a site i’m working on. Currently there is one row, with 8 columns.

    When I view it on mobile, this responsively changes to 4 rows with 2 columns.

    What I would like is for there to be 2 rows with 4 columns displayed on mobile.

    I’ve tried some of the CSS suggested in other threads, but that seems to be more about adjusting sizes.

    please help!

    #601275

    Hi maccadigital!

    Can you please post the link to your website so we can provide you accurate custom CSS code?

    Regards,
    Yigit

    #601287
    #601605

    Were you able to look at the link? :)

    #602840

    Sorry to chase, trying to get this sorted :)

    #603081

    Hi!

    Can you please post a screenshot and show the changes you would like to make? I cannot seem to find partner element on your page :/

    Cheers!
    Yigit

    #603246

    Link to screen grab in the private comments.

    It shows the desktop version and the mobile version. Essentially, for the mobile version, I would like there to be 2 rows of 4 columns.

    Thanks :)

    #603250

    Hi!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

     @media only screen and (max-width: 767px) {
    .avia-content-slider .slide-entry-wrap {
        width: 100%;
    }
    .responsive #top #wrap_all .slide-entry {
        width: 23%;
        clear: none!important;
    }}

    Regards,
    Yigit

    #603258

    Thanks for the reply Yigit, it’s really appreciated.

    I’ve tried the code, and although it works, the spacing between the elements horizontally is not even. The middle two are much closer than they are to the outer two?

    Link to screen shot in private comments.

    Thanks

    #603262

    Hey!

    Please change the code to following one

     @media only screen and (max-width: 767px) {
    .avia-content-slider .slide-entry-wrap {
        width: 100%;
    }
    .responsive #top #wrap_all .slide-entry {
        width: 25%;
        clear: none!important;
        margin-left: 0;
    }}

    Cheers!
    Yigit

    #603269

    Thank you :)

    Is there a way to keep the larger gap between the elements, rather than remove it all?

    Thanks!

    #603273

    Hey!

    You can adjust width and margin-left values to do so :)

    Regards,
    Yigit

Viewing 12 posts - 1 through 12 (of 12 total)
  • You must be logged in to reply to this topic.