• Hi all.
    I have a problem putting contact form to the right of my contact information. I’m using contact form 7. I have tried to align the form right or paste the code in between the contact text, but without eny luck. If I align it to the right, then the form is aligned to the right, but its still below text. I want them to be next to each other.
    Maybe someone can help me.
    Thanks in advance!

Viewing 3 replies - 1 through 3 (of 3 total)
  • You need to edit your theme’s CSS but unless you provide a link to a page demonstrating the problem, no one will be able to offer much in the way of assistance.

    Thread Starter melkker

    (@melkker)

    Link to my contact page is http://www.timberking.ee/?page_id=38

    Two options:

    1. Place your contact text in it’s own div with a unique class (eg .contact-text) then use that class to float the div left with a width of (say) 30%:

    #post-38 .contact-text {
    float:left;
    wudth:30%;
    }

    2. Move the contact form shortcode so that it’s above the contact text on the page. Then use something like:

    #post-38 .wpcf7-form {
    float:right;
    width: 70%}

    In both cases, you will probably need to tweak the widths and perhaps add some padding but that should get you started.

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Contact form issue’ is closed to new replies.