Mobile Look - Login Pagin

Discussion in 'ColorWay WordPress Theme' started by rdeshazer, Dec 29, 2014.

Thread Status:
Not open for further replies.
  1. rdeshazer

    rdeshazer Member

    Joined:
    Dec 21, 2014
    Messages:
    302
    Likes Received:
    0
    Location:
    USA
    Hello,

    Looking at the login page on a mobile device: http://www.irgfirm.com/myirg/ the field orientation looks squeezed vertically. And when the login page is horizontal on a mobile device it doesn't look to bad but still squeezed tightly. Can the responsive alignment for mobile devices be widen for both vertical and horizontal orientations.

    Thx
     
  2. Pramod

    Pramod Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,847
    Likes Received:
    63
    Hello,
    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.
    Code:
    @media only screen and (max-width: 767px){
    div#wpuf-login-form {
    text-align: left;
    border: 1px solid #ccc;
    width: 81%;
    padding: 30px;
    margin:0;
    }
    }
    Thanks & Regards
    Pramod
     
  3. rdeshazer

    rdeshazer Member

    Joined:
    Dec 21, 2014
    Messages:
    302
    Likes Received:
    0
    Location:
    USA
    Hello Pramod,

    The mobile login page looks good. However the mobile "MyIRG Regristration" page horizontal view, the some of the field boxes are to close to the field label.

    Thx
     
  4. Yogesh

    Yogesh Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,052
    Likes Received:
    41
    Hello,

    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.
    Code:
    ul.wpuf-form li .wpuf-label {
    min-width: 150px;
    }
    It will resolve your issue.

    Thanks & Regards
    Yogesh Bhade
     
  5. rdeshazer

    rdeshazer Member

    Joined:
    Dec 21, 2014
    Messages:
    302
    Likes Received:
    0
    Location:
    USA

    Attached Files:

  6. Yogesh

    Yogesh Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,052
    Likes Received:
    41
    Hello,

    It seems that you didn't use last CSS code that i provided you, it will resolve your issue.
    Code:
    ul.wpuf-form li .wpuf-label {
    min-width: 150px;
    }
    Thanks & Regards
    Yogesh Bhade
     
  7. rdeshazer

    rdeshazer Member

    Joined:
    Dec 21, 2014
    Messages:
    302
    Likes Received:
    0
    Location:
    USA
    hi the code is in there, screen shot of styling css.
     

    Attached Files:

  8. rdeshazer

    rdeshazer Member

    Joined:
    Dec 21, 2014
    Messages:
    302
    Likes Received:
    0
    Location:
    USA
    but the alignment is still off, the code was in scene you sent it.
     
  9. Pramod

    Pramod Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,847
    Likes Received:
    63
    Hello,

    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.
    Code:
    ul.wpuf-form li .wpuf-fields {
    width: 100%;
    }
    Thanks & Regards
    Pramod
     
  10. rdeshazer

    rdeshazer Member

    Joined:
    Dec 21, 2014
    Messages:
    302
    Likes Received:
    0
    Location:
    USA
    The latest code revision did fix the mobile viewing problem. However now on the actual site via a computer browser the "Registration Button" is no longer aligned with the "Strength Indicator" button on the MyIRG Registration page.

    www.irgfirm.com/myirg-registration

    Thx
     
  11. Pramod

    Pramod Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,847
    Likes Received:
    63
    Hello,

    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.
    Code:
    ul.wpuf-form .wpuf-submit input[type=submit] {
    clear: both;
    float: left;
    }
    Thanks & Regards
    Pramod
     
  12. rdeshazer

    rdeshazer Member

    Joined:
    Dec 21, 2014
    Messages:
    302
    Likes Received:
    0
    Location:
    USA
    Fixed.

    Thx
     
Thread Status:
Not open for further replies.

Share This Page