Welcome
I have a problem that can not cope:
1. How do I remove the word "CLOSE THE PANEL?
2. What and how to change to display the menu in one line. I tried everything :-(
I placed a photograph of an example in the annex.
I would add that another menu (also using dropmenu) on the same page is displayed correctly

Please help.

CommentFileSizeAuthor
problem.png10.05 KBmancinu

Comments

bhumikavarshney’s picture

Issue summary: View changes
Status: Active » Needs review

1. To remove the CLOSE THE PANEL text
As this text is default feature of Mega menu dropdown so to remove it by css we can hide the text
.closepanel {
display: none;
}
2. Display the menu in one line:
.mega{
white-space: nowrap;
}
By this the whole text will be in the single line.
Thanks!! hope it will work for you.