• Resolved idodam

    (@idodam)


    Hello,
    I build a new form and install the shortcode on page, from some reason the title such as “your name”, “your email” appear on the left side and the filling box on the right.

    you can see it on this link https://movingb.com/contact-us/

    any idea why? how to check or fix?
    Thank you

Viewing 2 replies - 1 through 2 (of 2 total)
  • because in your style sheet https://movingb.com/wp-content/themes/converio/style.css you have
    float: right;

    .wpcf7 .wpcf7-form input[type="text"], .wpcf7 .wpcf7-form input[type="email"], .wpcf7 .wpcf7-form input[type="url"], .wpcf7 .wpcf7-form input[type="date"], .wpcf7 .wpcf7-form input[type="number"], .wpcf7 .wpcf7-form input[type="range"], .wpcf7 .wpcf7-form span.select, .wpcf7 .wpcf7-form span.file-input {
        width: 80%;
        max-width: 173px;
        float: right;
    }

    You need to change that to
    float: left;

    or if you use a child css add in

    .wpcf7 .wpcf7-form input[type="text"], .wpcf7 .wpcf7-form input[type="email"], .wpcf7 .wpcf7-form input[type="url"], .wpcf7 .wpcf7-form input[type="date"], .wpcf7 .wpcf7-form input[type="number"], .wpcf7 .wpcf7-form input[type="range"], .wpcf7 .wpcf7-form span.select, .wpcf7 .wpcf7-form span.file-input {
        float: left;
    }
    Thread Starter idodam

    (@idodam)

    Hi, Sorry for my late respond. i thought i answer you.
    So, thank you very much for your time and help.
    Ido

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Title on left, Box on right side’ is closed to new replies.