on the iPhone some margin on the right

Hi,

When I look at the page http://pixelway.de/projekt-stahl/kontakt/ on the iPhone, the input fields are a bit cut off on the right, how can I get some air behind them?


Thanks

Comments

  • Hello,

    You can reduce the size of these inputs so there will be a space behind them. However, to achieve that, you will have to write a custom CSS code.

    Do you need help with that?


    Thanks

  • Hello,

    yes I am grateful for your css code

  • Please, use the following code:

    @media only screen and (max-width: 767px){
     span.wpcf7-form-control-wrap .wpcf7-select, 
     span.wpcf7-form-control-wrap .wpcf7-text, 
     span.wpcf7-form-control-wrap .wpcf7-textarea{
       width: 80%!important;
     }
     span.wpcf7-form-control-wrap input.wpcf7-captchar{
        max-width: 80%!important;
     }
    }
    

    Thanks

Sign In or Register to comment.