Hello, I wanted to make the logo image transparent but full opacity on hover. We came up with this code:
.x-brand.img {
opacity: 0.5;
filter: alpha(opacity=50); /* For IE8 and earlier */
}
a:hover.x-brand.img {
opacity: 1;
filter: alpha(opacity=100); /* For IE8 and earlier */
}
Now I just need help with centering the image on all screens. Can anyone suggest a work around to center the logo image on all screens?
Thanks in advance. The site is at https://mredsanders.net if you care to have a look…

