Hi,
I have been trying unsuccessfully to use CSS to hide the navbar icon and centralise the social icons on mobile devices.
I’m using:
@media only screen
and (min-device-width : 320px)
and (max-device-width : 768px)
My website, just in case, is: http://mar7ab10.com
Can you please tell me which elements I need to use for the “display:none” and “text-align:none”?
Thanks.
-
This topic was modified 11 years, 1 month ago by Mike100.
Try this code:
@media screen and (max-width: 760px) {
#access .nav-show {
display: none;
}
#social-media-icons {
float: none;
}
}