Header Names Not Visible In Refresh Theme

This subject might have been discussed already but I could not find a solution within the community.

I’ve added header names in the Navigation > Main Menu. But for some reason, it is not visible.

can you share your site link?

It’s not published at the moment but the site is www.homelinemedical.com

https://midgyupabioy45p3-85483422009.shopifypreview.com

add this css in your edit code > base.css file

.list-menu.list-menu--inline.horizontal-mega-menu>li:nth-child(2){
    display:block !important;
}

It’s still not working after adding the code at the bottom of the base.css file

Can you give me an update? The code you provided did not work

Remove above Css And Add This css same place

.list-menu li.buddha-disabled:nth-child(5) {
    display: none !important;

.list-menu li.buddha-disabled {
    display: block !important;
}
.list-menu li.buddha-menu-item {
    display: none !important;
}
.list-menu li.buddha-menu-item:first-child{
    display: block !important;
}