Needs review
Project:
Marinelli
Version:
7.x-3.0-beta7
Component:
User interface
Priority:
Critical
Category:
Task
Assigned:
Reporter:
Created:
22 Feb 2011 at 21:22 UTC
Updated:
10 Jan 2020 at 10:59 UTC
Jump to comment: Most recent
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.
| Comment | File | Size | Author |
|---|---|---|---|
| problem.png | 10.05 KB | mancinu |
Comments
Comment #1
bhumikavarshney commented1. 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.