Welcome to the nuBuilder Forums!

Register and log in to access exclusive forums and content available only to registered users.

[Changed] Option Menu Icon

Information about updates, news, Code Library
admin
Site Admin
Posts: 2814
Joined: Mon Jun 15, 2009 2:23 am
Been thanked: 25 times

[Changed] Option Menu Icon

Unread post by admin »

option_menu_icon.jpg


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

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"
}
You do not have the required permissions to view the files attached to this post.
Post Reply