Home › Forums › CSS › CSS to move site logo to the center of navbar › Reply To: CSS to move site logo to the center of navbar
December 15, 2017 at 2:32 am
#263920
Participant
You need to use positioning properties of css on logo, with z-index value.
Try this on image
position: relative;
margin: 0 auto;
top: 120px;
z-index: 10000;