In my homepage I added a dropdown menu. One of my categories isn't showing up. How can I fix this?

Hi everyone,

In my main menu under “clothing” I added a dropdown menu. I added 5 categories but only 4 are showing up; my category “Bottoms” is missing. Please any help would be appreciated! I’m using Brooklyn theme. Also, how can I reduce the gaps between each category? This is the link: www.paolalizano.com

Thanks

Hi @pbd123 ,

Please send me password, I will check it.
Thanks you.

Hi! Thank you! The password is 1234paola

Hi @LitExtension ,

Were you able to check this out? Thanks!

Hi @pbd123 ,

Please follow the steps:

  • Step 1: Go to Online store > Themes > Actions > Edit code.

  • Step 2: Go to Assets > theme.scss.liquid and paste this at the bottom of the file:

@media only screen and (min-width: 767px){

#AccessibleNav li:nth-child(5) {

position: relative !important;

right: 0 !important;

}

}

Thank you!! It worked :slightly_smiling_face:

Hi @LitExtension ,

It worked but now that I’ve noticed it moved my “accounts” icon to the left. How can I move that icon back to where it was before next to the search and shopping cart icon?

Thanks

Hi @pbd123 ,

Please change code: #AccessibleNav li:nth-child(5) => #AccessibleNav .site-nav__dropdown li:nth-child(5)

code:

@media only screen and (min-width: 767px){

#AccessibleNav .site-nav__dropdown li:nth-child(5) {

position: relative !important;

right: 0 !important;

}

}

Hope this helps!