Tagged: footer, mobile optimisation
Hello Enfold team,
Is there a way to only show a two of my four columns in the footer on mobile? I basically only want to show columns 1 and 4 on mobile.
Link below
Thanks!
Hey realisedesign,
Here is the code you can put in Enfold > General Styling > Quick Css, if it does not work, put into themes/enfold/css/custom.css
@media only screen and (max-width: 767px) {
#footer .flex_column.av_one_fourth:nth-child(2),
#footer .flex_column.av_one_fourth:nth-child(3) {
display: none;
}
}
If you need further assistance please let us know.
Best regards,
Victoria
Thanks Victoria!
Just to check, does the (2) and (3) denote the columns?
So if I were to change my columns around I could just switch these out for the columns I do not want to show? or add – #footer .flex_column.av_one_fourth:nth-child(4) if I also wanted to stop showing my 4th column?
Thanks again, you guys are great.
Sean