How do you align submenu categories in the Debut theme?

Does anyone know how I can align these submenu categories as shown in the picture below?

@alyreneeco

Sorry you are facing this issue, it would be my pleasure to help you.

Welcome to the Shopify community! :blush:
Thanks for your good question.

Please share your site URL,
I will check out the issue and provide you a solution here.

@alyreneeco

The picture is a bit confusing. Do you want to align them to the “more” text?

My URL is alyreneeco.com

Sorry about that, I was demonstrating how the left side is all aligned versus the right. I’m wanting the “Shop” to be aligned with the “Contact” where they are.

@alyreneeco , no problems. You can do this:

  1. In your Shopify Admin go to: online store > themes > actions > edit code
  2. Find Asset > theme.scss.liquid or theme.css and paste this at the bottom of the file:
@media (min-width: 750px){
    .site-nav__dropdown li{
        width: 40% !important;
    }
}

Kind regards,
Diego

@alyreneeco

can you please add this code

  1. Go to Online Store->Theme->Edit code
  2. Asset->/theme.css ->paste below code at the bottom of the file.
.site-nav__dropdown li {width: 50%;}

Hi @alyreneeco

add this style to theme.css

.site-nav__dropdown li{
    width: 50%;
}