I tryed centering the .brand
logo with:
.brand { margin-left: auto; margin-right: auto; }
this is my top navbar layout:
but it seems it doesn't works.
I searched on stack before to post this answer and the code i used above, is taken from an answered question.
Any idea how to center .brand ?
NB: i can't use position:absolute and fixed
, and i would like to do this responsively (responsive
)
also i tryed this:
.brand {
margin:0 auto !important;
padding:0 auto !important;
position:absolute !important;
right:0px;
left:0px;
z-index:9999999999 !important;
}