Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #528946

    Hi,

    I’m trying to figure out how can I change the position of a contact form inside a column element. I added the contact form through a shortcode but I want to move the contact form to the right border of the column, is there a way to do that?

    Thanks

    #529176

    Hey Didre,

    As far as I can see the contact form is as far to the right as possible, could you try to explain a bit further or post screenshots highlighting your intentions so that we can get a better idea please?

    Thanks,
    Rikard

    #530532

    Hi Rikard,

    Thanks for the answer.

    My idea is to position this contact form like the contact form in the homepage of the website (link below). In the homepage I used the advanced layerslider and positioned the contact form inside the layer using the Layout & Positions in the Styles tab (Top:32% Left:82%). But using the advanced layerslider the contact form isn’t responsive so I’m trying to use the contact form inside a column element, beucase this way the contact form is responsive.
    I would like to know if there is a way to control the position of the contact form (top, left) in column elements.

    Best regards

    • This reply was modified 9 years ago by Didre.
    #531232

    Hi!

    use this code in Quick CSS field:

    div#ipt_fsqm_form_wrap_10 {
    position: relative;
    right: -51px;
    }
    

    and adjust as needed.

    Cheers!
    Andy

    #531266

    Hi Andy,

    Thanks for your answer.
    The code worked but now the contact form stay off the screen (right:-Ypx) in mobile devices.

    #531792

    Hi,

    Please try the following instead:

    @media only screen and (min-width: 768px) {
    div#ipt_fsqm_form_wrap_10 {
    position: relative;
    right: -51px;
    }
    }

    Thanks,
    Rikard

    #533591

    Hi Rikard

    The code worked perfectly!
    Thanks

    • This reply was modified 9 years ago by Didre.
Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘Position of contact form inside a column’ is closed to new replies.