I'm having a problem centering a SVG image in the background.
Here is the CCS:
.cs-title {
display: block;
background: url("../logo.svg");
background-repeat: no-repeat;
height: 220px;
margin: 0 auto;
text-indent: -9999px;
width: 440px;
background-position:left center;
float: center;
}
Do you guys have any ideas?
Thanks!