Skip to main content

Code to fix small footer

In iPad and phone the footer it was too small so I will share some code to fix it temporarily.

add_action('fluent_community/portal_head', function() {
?>

/* 768px and larger screen sizes */ Media Rocketeer (min-width:768px){
/* Division */
div:nth-child(9) div:nth-child(1){
    min-height:55px;
}

/* Link */
div:nth-child(9) div div:nth-child(1) a{
    padding-top:17px !important;

}

}
Media Rocketeer (max-width:767px){

/* Division */
div:nth-child(9) div:nth-child(1){
    min-height:55px;
}

/* Link */
div:nth-child(9) div div:nth-child(1) a{
    padding-top:17px !important;

}

}

/ 640px and smaller screen sizes /
Media Rocketeer (max-width:640px){

/* Division */
div:nth-child(9) div:nth-child(1){
    min-height:45px;
}

/* Link */
div:nth-child(9) div div:nth-child(1) a{
    padding-top:15px !important;
}

}

</style>
<?php

});

Code to fix small footer Code to fix small footer

Aaron Liang

Thanks for the code. I found this mobile menu quite useless, so I simply removed it πŸ˜‘