Within my MVC app, there is a footer displayed on every page that includes an image. I am looking to align the image in the center if possible. The current CSS code for the footer is as shown below:
footer {
position:absolute;
bottom:-150px; /* This places the footer 100px below the bottom of the page*/
width:70%;
height:175px; /* Height of the footer */
background-image: url("/Images/Footer/Footer3.png");
background-repeat: no-repeat;
border-top: 1px solid darkgray;
}
What additional modifications are needed to center the image?