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

    Hi guys,

    I´m using the plug-in “Wp Edit Password Protected” which looks great on wide screens but on ipad portrait mode and iphone both orientations it´s all bunched on one line. Do you have css that can access this plug-in or do you have html code that I can add to this plug-in in order for it to display differently for smaller screen sizes?

    Many thanks

    #994340

    Hey ProTravelGolf,

    Where can we see the problem in question? Please try to be as specific as possible as to what is wrong and how you want to change it.

    Best regards,
    Rikard

    #994372
    This reply has been marked as private.
    #994720

    Hi,

    Thanks for the feedback. Please try the following in Quick CSS under Enfold->General Styling:

    @media only screen and (max-width: 767px) {
    .wpppass-top-text img {
        width: 100% !important;
        height: auto !important;
    }
    }

    Best regards,
    Rikard

    #994732
    This reply has been marked as private.
    #994735
    This reply has been marked as private.
    #995919
    This reply has been marked as private.
    #996016

    Hi,

    Sorry for the late response. Please add this css code to move the text below the image on iPad view.

    @media only screen and (min-width: 767px) and (max-width: 1024px) {
        .wpppass-top-text img {
            clear: both;
            display: block;
            float: none !important;
            margin: 0 auto;
        }
    }

    Screenshot: https://imgur.com/a/bDAtof5

    Best regards,
    Ismael

    #996040
    This reply has been marked as private.
    #996537

    Hi,

    Glad it worked! Use this css code to adjust the width of the input field on phone screens.

    @media only screen and (max-width: 767px) {
        #wpppass form input[type="password"] {
            width: 95%;
            height: 40px;
        }
    }

    Best regards,
    Ismael

    #996558
    This reply has been marked as private.
    #996573

    Hi,

    Awesome! Glad we could help!

    Please take a moment to review our theme and show your support https://themeforest.net/downloads
    Don’t forget to bookmark Enfold Documentation for future reference.
    And please feel free to open a new thread if you need anything else.

    Thank you for using Enfold :)

    Best regards,
    Ismael

Viewing 12 posts - 1 through 12 (of 12 total)
  • The topic ‘HTML for responsive screen width’ is closed to new replies.