Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #253911

    We have a couple of menu items in the socket menu and copyright text that are overlapping. The overlapping occurs when the browser is at tablet width, the menu then pushes to next line in mobile sizing. Website is wildcatmattress.com

    Here is the custom styling, as is, in child theme

    @media only screen and (max-width: 767px) and (min-width: 480px) {
    .responsive #socket .sub_menu_socket {
    float: left !important; }}

    @media only screen and (max-width: 767px) and (min-width: 480px) {
    .responsive #scroll-top-link {
    display: block !important;
    }}

    @media only screen and (max-width: 479px) {
    .responsive #socket .sub_menu_socket {
    display: block !important;
    }}

    Thank you.

    #254342

    Hey simplyaha!

    Please add following code to Quick CSS

    @media only screen and (max-width: 767px) {
    .responsive #socket .sub_menu_socket {
    clear: left;
    }}

    Cheers!
    Yigit

    #254350

    Thank you, that worked.

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Socket menu alignment’ is closed to new replies.