Hi there
This problem was fixed but now for some reason its not lining up again on desktop computer view.
The right hand menu items are lower than the left hand copyright info. It was overlapping on mobile view but now its gone out of line again. Below is my quick CSS code.
@media only screen and (max-width: 767px) {
.responsive #socket .sub_menu_socket {
display: block!important;
}}
@media only screen and (max-width: 767px) and (min-width: 480px) {
.responsive #socket .sub_menu_socket {
display: block !important;
}
}
#socket .sub_menu_socket div {
overflow: visible;
}
#socket .menu {
margin-top: -6px;
}
#socket {font-size: 14px;
}
#socket .sub_menu_socket li {
line-height: 1.5em;
font-size: 14px;
}
Hey xfacta!
Try adding this to your custom CSS.
#socket .sub_menu_socket {
position: relative;
top: -7px;
}
Cheers!
Elliott
Hi there
Thank you that fixed it :-)
Cheers