Viewing 14 posts - 1 through 14 (of 14 total)
  • Author
    Posts
  • #468371

    Guys,

    I can’t get my landing page (below) mobile responsive.

    Where am I doing wrong?

    Thanks!
    Ali

    #468375

    On a seperate note, just one more thing:

    I also can’t make my signup form (on the same landing page) horizontal (email and signup button on the same line).

    I followed the instructions you gave on all other thread such as this one however there is something in theme that hides the signup button afterwards. what css should i insert?

    #468505

    Hi!

    It looks like you have used   for spaces in the header, please try to remove them since they are the reason it’s not breaking properly.

    Best regards,
    Rikard

    • This reply was modified 9 years, 4 months ago by Rikard.
    #468540

    Where in the header you mean? Which one exactly? In CSS code or avia builder? I didn’t get it, sorry.

    #468556

    Ok no worries, fixed the header thing. Thanks!

    The only problem remaining now is the email signup form that I can’t make horizontal.

    I tried to follow instructions you guys gave like this in this thread but there is something in the theme that the submit (add mee) button disappears afterwards.

    What am I missing? What CSS code should I insert to make them horizontal like on this website?

    #468768

    Hi!

    I’m not sure what’s going on with that form, could you send us a temporary admin login so that we can have a closer look please? You can post the details here in the Private Content section of your reply.

    Best regards,
    Rikard

    #470108

    Thanks Rikard,

    details in the private content section below.

    #470791

    Hi!

    try this code:

    .mc-field-group {
    width: 80% !important;
    }
    #mc_embed_signup .button {
    display: table-row;
    top: 0 !important;
    right: -2px;
    position: absolute;
    }
    

    Best regards,
    Andy

    #471827

    Wow, thanks! The button is there and horizontal!

    Just one last question, is there a chance I can make the “Add Me” button stick to the email field since now it is aligned right while the email field is aligned left. I mean, I am trying to remove the space between the “Add Me” button and the email email. So that they are sticking to each other like the form here.

    Thank you so much!

    #472164

    Hi!

    You can adjust the position of the button with this:

    #mc-embedded-subscribe {
      right: 146px !important;
      height: 38px !important;
    }

    Regards,
    Ismael

    #472947

    Thanks, Ismael but it makes it like this on mobile -> http://imgur.com/ipFFJKF

    Any alternative?

    #472964

    Hi!

    Please change Ismael’s code to following one

    @media only screen and (min-width: 767px) {
    #mc-embedded-subscribe {
      right: 146px !important;
      height: 38px !important;
    }}

    Cheers!
    Yigit

    #473585

    Thank you so much Yigit, the problem is solved for desktop but the submit button on the mobile version isn’t aligned even though padding/font sizes are the same. You can see it here.

    Any chance we can fix this? Thanks!

    #473591

    Hey!

    Yigit’s code should fix it, but I can’t see that you are using it in your source code. Try to adjust the code a little bit:

    input#mc-embedded-subscribe {
    right: 0 !important;
    height: 38px !important;
    }
    

    Clear browser cache and hard refresh your website a few times.

    Regards,
    Andy

Viewing 14 posts - 1 through 14 (of 14 total)
  • You must be logged in to reply to this topic.