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() {
?>
/* 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
});
Thanks for the code. I found this mobile menu quite useless, so I simply removed it π
