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?
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;
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With