• Resolved susgepa

    (@susgepa)


    Is there any way (without creating the child theme) to put logo and nav to one row? (I removed the search, so that element is not a problem)

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi susgepa

    Please provide a link to your site so that someone wanting to help doesn’t have to install the theme to point you in the right direction.

    thanks

    Thread Starter susgepa

    (@susgepa)

    Thank you for your tip salsaturation
    Here is my website

    If you don’t already have a Child_Themes or a custom.css you should install a plugin like custom CSS plugin then add the following to the custom css area

    .site-header .site-logo-link {
    clear: none;
    }
    
    @media screen and (min-width: 768px) {
    .woocommerce-active .site-header .main-navigation {
    width: auto;
    float: left;
    clear: none;
    }
    }

    if you want it to move up a tiny bit then use the following instead:

    .site-header .site-logo-link {
    clear: none;
    }
    
    .secondary-navigation {
    display: none;
    }
    
    @media screen and (min-width: 768px) {
    .woocommerce-active .site-header .main-navigation {
    width: auto;
    float: left;
    clear: none;
    }
    }
    Thread Starter susgepa

    (@susgepa)

    Thank you

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘One row nav’ is closed to new replies.