Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Separate logo banners for mobile & desktop Reply To: Separate logo banners for mobile & desktop

#243339
Atelierbram
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;
}