Home › Forums › CSS › Separate logo banners for mobile & desktop › Reply To: Separate logo banners for mobile & desktop
July 3, 2016 at 6:51 am
#243339
Participant
Specificity issue: #logo img
is too strong with the id: it overrides the ones in the media-queries. When you would change this to an attribute selector than it will work.
[div id="logo"] img {
display: block;
margin: 0 auto;
}