[SOLVED] Altering the Pill Drop Down Menu - Joomla! Forum - community, help and support
hi 
just quick question, how rid of little triangle pointy bit @ top of pill drop down menu, part makes drop down speech bubble in way?
i using protostar template
thank in advance
just quick question, how rid of little triangle pointy bit @ top of pill drop down menu, part makes drop down speech bubble in way?
i using protostar template
thank in advance
one quick , easy way using css set .btn .caret display:none;
so add custom css or less
.btn .caret {
display:none;
}
you'll want narrow down bit , may need !important in there, e.g.
.topmenu .btn .caret {
display:none !important;
}
so add custom css or less
.btn .caret {
display:none;
}
you'll want narrow down bit , may need !important in there, e.g.
.topmenu .btn .caret {
display:none !important;
}
Comments
Post a Comment