I want to have a Menu header item, with counter in a label located on the right side of the header. Currently I have
| Projects [label] |
instead of
| Projects [label]|
Here is my code:
<div className="header">
Projects
<div className="ui label floated left pointing" id="projectsMenuCounter"><div className="ui active mini inline loader inverted"></div></div>
</div>
Try this
<div className="header">
Projects
<div style="float:right;" className="ui label floated left pointing" id="projectsMenuCounter"><div className="ui active mini inline loader inverted">[label]</div></div>
</div>
Or
.floated {
float:right;
}
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