-
AuthorPosts
-
May 28, 2020 at 6:51 am #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!
SaraMay 28, 2020 at 4:52 pm #1217421June 2, 2020 at 5:57 pm #1218820I 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?
June 9, 2020 at 5:28 pm #1220910Is that outside your support?
June 10, 2020 at 5:09 pm #1221269Hi,
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,
IsmaelJune 13, 2020 at 5:48 am #1222266That 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.
June 14, 2020 at 4:31 am #1222423Hi,
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,
RikardJune 14, 2020 at 4:47 am #1222429Sure!
June 15, 2020 at 12:44 pm #1222622Hi,
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,
RikardJune 15, 2020 at 6:58 pm #1222803So frustrating!! It should work now. It wasn’t saved in there for some reason, but I tested it.
June 16, 2020 at 1:04 pm #1223002Hi,
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,
RikardJune 21, 2020 at 3:02 am #1224330Finally 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?
June 22, 2020 at 4:29 am #1224463Hi,
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,
RikardJune 23, 2020 at 4:05 am #1224760It is SO perfect I can’t even stand it!! You guys are SO amazing!! Thanks for sticking with it!
June 24, 2020 at 3:30 am #1224991Hi,
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,
RikardJune 25, 2020 at 3:56 am #1225396You can close it!
June 26, 2020 at 5:52 am #1225720 -
AuthorPosts
- The topic ‘Footer mobile version’ is closed to new replies.