-
AuthorPosts
-
February 14, 2017 at 10:07 am #746783
Hi, is that possible to make the footer menu to be dropdown in mobile?
Can you help?
and there are 4 colomns, I only want to show 2 of them in Mobile( the secondary menu and custom menu)
February 17, 2017 at 7:41 pm #748610Hi,
Not sure if i understood you correctly.
If you are talking about footer menu that is being displayed inline with copyright text, it is not possible to add dropdown feature to it at the moment unfortunately. Please feel free to request – or vote if already requested – such feature on Enfold feature request form.
If you would like to hide certain footer columns on mobile, please add following code to Quick CSS in Enfold theme options under General Styling tab
@media only screen and (max-width: 480px) { #footer .flex_column:nth-child(1),#footer .flex_column:nth-child(3) { display: none !important; }}
That would hide 1st column and 3rd column on mobile. You can adjust the numbers as needed.
If neither was what you meant, please elaborate.
Best regards,
YigitFebruary 20, 2017 at 10:34 am #749251HI, Yigit, thanks,
it is helping. IT shows 2 columns only when mobile vertically held, but when the mobile was held horizontally, 4 columns display as asual.
BTW, IS THAT POSSIBLE TO show 2 columns abreast? ( also on mobile)
February 20, 2017 at 12:15 pm #749275Hi,
Please edit the code and changed “480px” to “767px”.
I am not sure if i understood the second part. Can you please post a screenshot and show the changes you would like to make? You can upload your screenshots on imgur.com or Dropbox public folder and post the links here
Best regards,
YigitFebruary 21, 2017 at 4:47 am #749707Thanks, Yigit
Attached please find the explanation of the second part
(responsive review in mobile only )
https://drive.google.com/file/d/0B6L9QZ3Td5YjUmU5UXNiejlKYjA/view?usp=sharingFebruary 21, 2017 at 1:10 pm #749916Hi,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:
@media only screen and (max-width: 767px) { #footer .flex_column { width: 50%!important; }}
Best regards,
YigitFebruary 21, 2017 at 3:30 pm #750001Great, Yigit
the footer stays 2 columns at the same row.
how Can I adjust the content to be align center?
February 21, 2017 at 3:32 pm #750002Hey!
Please add following code to Quick CSS as well
@media only screen and (max-width: 767px) { #footer .flex_column * { text-align: center !important; }}
Cheers!
YigitFebruary 22, 2017 at 3:25 am #750234Thanks, Yigit
It works great!
February 22, 2017 at 6:36 pm #750585 -
AuthorPosts
- The topic ‘drowdown menu in footer (Mobile)’ is closed to new replies.