Viewing 17 posts - 1 through 17 (of 17 total)
  • Author
    Posts
  • #1217253

    Hello!

    Is there any way for the sections in the footer to stack on top of each other on mobile instead of trying to squishing next to each other? The website is https://solvibrantpro.com/

    Thank you so much!
    Sara

    #1217421

    Hey SaraMichelle,

    Normally, they stack on top of each other. You have this css somewhere:
    Image 2020-05-28 at 17.51.18.png

    You need to either remove it or wrap it in the media query.

    Best regards,
    Victoria

    #1218820

    I added that code so that the logo took up half the footer and the other two sections just took up a fourth. It looked strange when they were in thirds. If I can’t fix this then I suppose I’ll just go with halves and put the contact information in one column. I’d rather have it the way I have it on desktop and stacked on mobile. How do I wrap it in the media query?

    #1220910

    Is that outside your support?

    #1221269

    Hi,

    Sorry for the delay. You can wrap the code in this css media query.

    @media only screen and (max-width: 767px) {
      /* Add your Mobile Styles here */
    
    }
    

    Example with a few adjustments.

    @media only screen and (max-width: 767px) {
      /* Add your Mobile Styles here */
      #footer .av_one_third:first-child {
    	width: 50% !important;
      }
    
      #footer .av_one_third:nth-child(2), #footer .av_one_third:last-child {
    	width: 20% !important;
    	float: left !important;
    	margin-left: 5% !important;
      }
    }
    

    Best regards,
    Ismael

    #1222266

    That wasn’t working for me… I tried a bunch of things, but can’t get the third column to display properly even without any CSS code. The third column goes underneath the rest. Can you please help?

    Ideally, I would like the logo to take up the first 2 columns and then each region of contact information to take up the other two columns, but on mobile just have them display on top of each other. If it’s too much trouble I will just have the logo take up half and the contact info take up half.

    #1222423

    Hi,

    Thanks for the update. I’m not sure what’s going on there, since the third widget seems to be outside of the footer. Could you post admin login details in private so that we can have a closer look please?

    Best regards,
    Rikard

    #1222429

    Sure!

    #1222622

    Hi,

    Thanks for that. The login details are not working though:

    Unknown username. Check again or try your email address.

    Please check and verify.

    Best regards,
    Rikard

    #1222803

    So frustrating!! It should work now. It wasn’t saved in there for some reason, but I tested it.

    #1223002

    Hi,

    Thanks for that, login details are working now. I removed some unnecessary markup in your widget and that made them display as they should again. Could you please try Ismaels CSS again to see if it works better this time?

    Best regards,
    Rikard

    #1224330

    Finally getting back to this!! So Ismael’s code is actually the opposite of what I need. On mobile it’s perfect the way it is – stack logo, western region, eastern region – and not being squished into three columns – PERFECT.

    What I WISH I could do (and it’s totally ok if this is not possible, I will get over it) is for ONLY on the desktop, for the logo take up about 50%, western region to take up about 25% and eastern region to take up about 25%, you know what I mean?

    #1224463

    Hi,

    Thanks for the update. Please try this in Quick CSS:

    @media only screen and (min-width: 1025px) {
    #footer .av_one_third.first {
        width: 50%;
    }
    
    #footer .el_after_av_one_third {
        width: 18%;
    }
    }

    You might have to adjust the % values a bit to get it looking right, and the media query is for above tablet size only.

    Best regards,
    Rikard

    #1224760

    It is SO perfect I can’t even stand it!! You guys are SO amazing!! Thanks for sticking with it!

    #1224991

    Hi,

    Great, I’m glad that we could help :-)

    Please let us know if you should need any further help on the topic or if we can close it.

    Best regards,
    Rikard

    #1225396

    You can close it!

    #1225720

    Hi,

    Thanks for letting us know, I’ll close this thread for now then. Please open a new thread if you should have any further questions or problems.

    Best regards,
    Rikard

Viewing 17 posts - 1 through 17 (of 17 total)
  • The topic ‘Footer mobile version’ is closed to new replies.