Issue
In my JavaFX project, I am trying to add an icon on Menu(mnAdmin) in the MenuBar using the CSS code below
#mnAdmin > .label {
-fx-graphic: url("../images/Admin-icon32.png");
}
and am getting the icon beside the text and I would like to get the text at the bottom of the icon.
Is there any way to get it?
Solution
As suggested by kleopatra modified the code as stated below and it works well.
#mnAdmin > .label {
-fx-graphic: url("../images/Admin-icon32.png");
-fx-content-display:top;
}
Answered By - Renoj Joseph