Venkatesh
Venkatesh

Reputation: 29

submenu is showing partially

I tried to develop one submenu under "Share registry operations" named as "Insider...". But I am getting only partial submenu getting displayed. URL: http://sampledemos.online/gnsa/

I tried with the below CSS codings.

.menulist ul ul li a {
  height: 30px;
  line-height: 30px;
  border-bottom: solid 1px #90d4e9;
  font-size: 12px;
  display: block;
  width: 170px;
  float: left;
  margin-left: -23px;
}

I'm trying to create a submenu named "Insider..." under "share registry operations.

Upvotes: 2

Views: 74

Answers (2)

Trickytree22
Trickytree22

Reputation: 86

Add below to your CSS. Your javascript sets a bad clip path, probably due to negative margins. You might want to look closer into that aswell.

#listMenu-id-2 {
  clip: inherit!important;
}

Upvotes: 0

Manikandan2811
Manikandan2811

Reputation: 841

Try this code..

css

.menulist ul ul {
 left: 227px;
 clip: inherit !important;
 opacity: 1 !important;
}

Upvotes: 2

Related Questions