Tagged: footer
Hi!
I just noticed that the right link in my footer doesn’t appear in the mobile view, it only appears “Copyright…”, but not the right part. Any way to make it appear?
Thank you!
Hi,
Remove this code from your custom CSS:
.responsive #socket
.sub_menu_socket {
display:none
}
Regards,
Josue
Hi Josue!
Thanks for the help, but I don’t find that code inside my custom.CSS (maybe I’m not opening the correct one). I’m entering Enfold’s folder, then in CSS, and finally in custom.css, but in that file there are only 3 general paragraphs of code, am I opening the wrong file?
Thanks a lot!
Hey!
What josue meant was to remove any occurance of the following code in your custom styles.
.responsive #socket
.sub_menu_socket {
display:none
}
It doesn’t mean custom.css. It means the stylesheet you re using to add your own css styles.
If you can’t find it, try adding the following to the end of custom.css
@media only screen and (max-width:497px){
.responsive #socket .sub_menu_socket {
display: block;
}
}
Best regards,
Arvish
Hi Arvish!
I see, good to know, thanks for the info! And that code did the trick, thanks again!