2
Hey there, guys. I used the image-Replacement technique, tried to leave the image centralized using the background-position: center, but the image position remains unchanged. Would anyone know why the background-position is not working, how can I fix it? Follow the print:
aside {
height: 100vw;
background-color: #fff;
border-right: 3px solid #000;
font-family: 'Lato', sans-serif;
text-align: center;
padding-top: 25px !important;
}
aside h1 {
background-image: url(cal.png);
background-position: center center;
background-repeat: no-repeat;
height: 208px;
width: 200px;
}
aside h1 span {
visibility: hidden;
}
<body>
<div class="columns">
<aside class="column is-3">
<h1><span>Lorem ipsum</span></h1>
</aside>
</div>