Viewing 18 posts - 1 through 18 (of 18 total)
  • Author
    Posts
  • #494371

    Hi,

    I have a 3 column, 1 row logo element on my site. It scales correctly and maintains the 3 column 1 row layout until it reaches screen size 767px, then it switches to 1 column 3 rows, where the logos are stacked and all 3 slide at once.

    How can i change it so it maintains the 3 column, 1 row layout at all screen sizes. I do not want it to go stacked or have the logos very big.

    Thanks!

    #494695

    Hey marcbuote,

    Could you provide us with a link to the site in question so that we can take a closer look please?

    Thanks,
    Rikard

    #495503

    The logo slider is near the bottom of the page

    #496189

    Hi,

    Please try the following in Quick CSS under Enfold–>General Styling:

    @media only screen and (max-width: 767px) {
    .responsive #top .avia-smallarrow-slider .flex_column {
        width: 33.3% !important;
    }
    }

    Best regards,
    Rikard

    #496196

    No, that didn’t work. Caused the logos to stack and only use 33% of the width of the screen, instead of 3 logos on 1 row using 100% of the screen.

    #496238

    Hi!

    Please try

    @media only screen and (max-width: 767px) {
    .responsive #top .avia-smallarrow-slider .flex_column {
        width: 33.3% !important;
    display: inline;
    }
    }

    and let me know if I understood correctly what you need to do

    Regards,
    Basilis

    #496442

    That didn’t seem to work. I’ve attached a screenshot showing what I am trying to have, and what it looks like now.

    #497169

    Hi!

    Try commenting out lines 1758 – 1770 in the /enfold/css/shortcodes.css file.

    @media only screen and (max-width: 767px)
    {
    	.responsive #top #wrap_all .slide-entry{width:48%; margin-left:4%}
    	.responsive #top #wrap_all .avia-content-slider-even .slide-entry.slide-parity-odd,
    	.responsive #top #wrap_all .avia-content-slider-odd .slide-entry.slide-parity-even{margin:0; clear:both;}
    	.responsive #top #wrap_all .avia-content-slider-odd  .slide-entry.first{margin-left:0; width:100%;}
    	.responsive avia-content-slider .slide-image img { width: 100%; }
    }
    
    @media only screen and (max-width: 479px)
    {
    	.responsive #top #wrap_all .avia-content-slider-odd  .slide-entry{margin-left:0; clear:both; width:100%;}
    }

    Or just copy that into your custom CSS and change the widths / margins with !important override.

    Best regards,
    Elliott

    #497358

    Note sure if I understood you correctly or did this correctly. But instead of commenting the code out of the .css, I added the following to the custom css. Can you confirm this is correct?

    @media only screen and (max-width: 767px)
    {
    	.responsive #top #wrap_all .slide-entry{width:48%!important; margin-left:4%!important}
    	.responsive #top #wrap_all .avia-content-slider-even .slide-entry.slide-parity-odd,
    	.responsive #top #wrap_all .avia-content-slider-odd .slide-entry.slide-parity-even{margin:0!important; clear:both;}
    	.responsive #top #wrap_all .avia-content-slider-odd  .slide-entry.first{margin-left:0!important; width:100%!important;}
    	.responsive avia-content-slider .slide-image img { width: 100%!important; }
    }
    
    @media only screen and (max-width: 479px)
    {
    	.responsive #top #wrap_all .avia-content-slider-odd  .slide-entry{margin-left:0!important; clear:both; width:100%!important;}
    }
    #497712

    Hi!

    should be working. Let us know if you still need help with this. Otherwise feel free to open a new ticket if you have some more questions or issues related to the theme.

    Cheers!
    Andy

    #497733

    Thank you so much for all the help. The settings above didn’t fix it but with some playing around. The following settings worked.

    @media only screen and (max-width: 767px)
    {
    	.responsive #top #wrap_all .slide-entry{width:33%!important; margin-left:0%!important}
    	.responsive #top #wrap_all .avia-content-slider-even .slide-entry.slide-parity-odd,
    	.responsive #top #wrap_all .avia-content-slider-odd .slide-entry.slide-parity-even{margin:0!important; clear:right;}
    	.responsive #top #wrap_all .avia-content-slider-odd  .slide-entry.first{margin-left:0!important; width:33%!important;}
    	.responsive avia-content-slider .slide-image img { width: 33%!important; }
    }
    
    @media only screen and (max-width: 479px)
    {
    	.responsive #top #wrap_all .avia-content-slider-odd  .slide-entry{margin-left:0!important; clear:right; width:33%!important;}
    }
    
    #498288

    Hi,

    Great, so you’re all good now?

    Best regards,
    Rikard

    #498415

    Yes, all good! Thank you all for the wonderful help yet again! Great to know that there are still theme developers that go above and beyond to help users create modifications.

    #498830

    Hey,

    Great, glad you got it fixed and thanks for the kind words :-)

    Best regards,
    Rikard

    #745954

    Hi guys,

    I have a 5 column, 1 row logo element on my site, but i want it to shift to a 3 column, 1 row logo element in under 767px viewport size. Do you have any idea how i can achieve this?

    Thanks

    • This reply was modified 7 years, 9 months ago by photig.
    #746207

    Hi @photig,

    Please post a link to your site along with a screenshot highlighting what you would like to achieve and we’ll have a closer look at it.

    Best regards,
    Rikard

    #872242

    Hello, i had same issue and solved with this post.
    I have another partner elements with 4 columns tho and i would like it to block at 25% and not taking the 33% size like the other one.
    If i set a class for this partners element how can i set the row elements at 25%?

    Thank you

    #872467

    Hi bitinteractive,

    Could you post a link to where we can see the element in question please?

    Best regards,
    Rikard

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