Page 1 of 1

[Changed] Option Menu Icon

Posted: Mon Jan 03, 2022 12:52 pm
by admin
option_menu_icon.jpg
option_menu_icon.jpg (8.08 KiB) Viewed 269 times


To use another icon of your choice, overwrite nuOptions::before and nuOptionsSubform::before by setting the content's unicode value.


Example to use the chevron-down icon:

style_change_icon.jpg
style_change_icon.jpg (13.67 KiB) Viewed 269 times

Code: Select all

.nuOptions::before {
  content: "\f078"
}

.nuOptionsSubform::before {
   content: "\f078"
}
To use the vertical ellipsis icon:

Code: Select all

.nuOptions::before {
  content: "\f142"
}

.nuOptionsSubform::before {
   content: "\f142"
}