Okay
  Public Ticket #2307555
About adaptability
Closed

Comments

  • Mak51m started the conversation

    Hello!

    I have a few questions about adaptability.

    1. Is it possible to make portfolio tiles in the adaptive version (on the phone) more than one in width? 2, 3, 4 ....?

    2. Is it possible to make INSTAGRAM tiles in the adaptive version (on the phone) more than one in width? 3, 4, 5 ....?

  •  675
    Neuron replied

    Hi,

    We've added this on the todo list of the Arkhitekton, that you can be able to change columns within mobile devices, but for now you need some Custom CSS to achieve it.

    Add the following style in Appearance > Customize > Additional CSS.

    @media (max-width: 768px) {
        .masonry .selector {
            max-width: 50% !important;
        }
    }    

    Feel free to ask for anything you need.

    Kind Regards


    Subscribe to our newsletter to get the latest updates about NeuronThemes and join our community Facebook Group.

  • Mak51m replied

    It works, thanks!

    But how to make INSTAGRAM tiles 2, BUT portfolio tiles remain as before (1 in width)?

    Example in the photo

    P.S. For 4 tiles, the values will be 384px and 25%, right?

  • Mak51m replied

    Is it possible to configure this setting on different pages? In different columns on one page?

  •  675
    Neuron replied

    Hi,

    You can make it even more adaptive, if you need it.

    So, with the following classes you can manipulate a lot. First add the following style in Appearance > Customize > Additional CSS.

    @media (max-width: 768px) {
        .two-columns-mobile .selector {
            max-width: 50% !important;
        }     .three-columns-mobile .selector {
            max-width: 33.333% !important;
        }
    }

    So, in every element that you need the following set, please add it as custom class of the element. https://prnt.sc/r6tfri
     

    Kind Regards


    Subscribe to our newsletter to get the latest updates about NeuronThemes and join our community Facebook Group.

  • Mak51m replied

    Excellent, thank you!

  •  675
    Neuron replied

    You're welcome anytime, feel free to ask for anything you need.

    Kind Regards


    Subscribe to our newsletter to get the latest updates about NeuronThemes and join our community Facebook Group.