Okay
  Public Ticket #2361288
image size
Closed

Comments

  • hideatsu started the conversation

    Hello.

    Please let me ask you a question.
    The smaller the screen width, the smaller the image becomes. (a.jpg→b.jpg)
    If you set the screen width to mobile size, the image will be a little larger.(b.jpg→c.jpg)
    Only one image per line is displayed.
    I want to display three images in one line in mobile size.
    What should I do?
    I look forward to working with you.

  •  8,991
    Tahir replied

    Hey Again,

    Add this into the Custom CSS box located in your Salient Options panel (All custom css provided is tested in the Live Browser so it will work as intended . If you cant see any changes make sure there is no red cross in the Custom CSS Box as that syntax error would cause all css below it to not show up on the Frontend):

    @media only screen and (max-width: 690px) {
        .wpb_gallery .portfolio-items:not(.carousel) .col.span_3 {
            width: 33.3% !important;
        }
    }

    Thanks


    ThemeNectar Support Team 

  • hideatsu replied

    Thank you very much for your quick response.

    It went well☆