New Menu Feature

Dear Admin,

I just try a new MENU feature of beaver builder in my home page. But I am curious how to get rid of a little square icon box next to my text menu. Would you advise how to get rid of that? Thank you very much.

Regard,
coki

When I inspect with firebug, this is caused with this code below:

element {
}
.fl-node-5620b73f39208 .menu li:first-child {
border: medium none;
}
.fl-node-5620b73f39208 .fl-menu li:first-child {
border-top: medium none;
}
.dynamik-page-builder .site-inner ul li, .archive-page ul li, .entry-

content ul li, .dynamik-widget-area ul li {
list-style-type: square;
margin: 0px 0px 0px 30px;
padding: 0px;
}

When I change the code above: list-style-type: none, the square disappeaar/ gone. And now my question is how to make this changes permanently. I don’t know how to put this code to where location. Will you help? Thanks.

Hey Coki,

That’s a styling from your Dynamik theme. Try placing this under the Dynamik Custom > Custom CSS part and see if it fixes the problem.

.fl-builder .fl-module .fl-menu ul li {
  list-style-type: none;
}

Ben

Thanks so much Mr.Ben. It solved now.

Awesome! Have fun with BB! :slight_smile:

Ben