Welcome to the nuBuilder forums!

Please register and login to view forums and other content only available to registered users.

[Changed] Option Menu Icon

Information about updates, news, Code Library
admin
Site Admin
Posts: 2781
Joined: Mon Jun 15, 2009 2:23 am
nuBuilder Version: 4.5
Been thanked: 1 time

[Changed] Option Menu Icon

Unread post by admin »

option_menu_icon.jpg
option_menu_icon.jpg (8.08 KiB) Viewed 254 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 254 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"
}
Post Reply