Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #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)

    #748610

    Hi,

    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,
    Yigit

    #749251

    HI, 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)

    #749275

    Hi,

    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,
    Yigit

    #749707

    Thanks, Yigit

    Attached please find the explanation of the second part

    (responsive review in mobile only )
    https://drive.google.com/file/d/0B6L9QZ3Td5YjUmU5UXNiejlKYjA/view?usp=sharing

    #749916

    Hi,

    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,
    Yigit

    #750001

    Great, Yigit

    the footer stays 2 columns at the same row.

    how Can I adjust the content to be align center?

    #750002

    Hey!

    Please add following code to Quick CSS as well

    @media only screen and (max-width: 767px) {
    #footer .flex_column * {
        text-align: center !important;
    }}

    Cheers!
    Yigit

    #750234

    Thanks, Yigit

    It works great!

    #750585

    Hi,

    Great!
    Let us know if you have any other questions or issues :)

    Best regards,
    Yigit

Viewing 10 posts - 1 through 10 (of 10 total)
  • The topic ‘drowdown menu in footer (Mobile)’ is closed to new replies.