How can I widen the drop down menus in the Petica theme?

I’m currently using the petica theme which is available within the ella theme. As you can see in the picture below my drop down menu isnt wide enough and looks weird compared to the category. Can someone let me know how to change the code to make it wider?

1 Like

Hello, @Misto

Welcome to the Shopify community!
and Thanks for your Good question.

Please share your site URL,
So I will check and provide a solution here.

https://crystalmountainsco.com/

@Misto

Thanks

  1. Go to Online Store->Theme->Edit code
  2. Asset->/theme.scss.liquid->paste below code at the bottom of the file.
@media (min-width: 1025px) {
.site-nav .site-nav-dropdown
{
width: 100.5%;
}
}
1 Like