Hallo,
ich möchte die Überschrift H1 abhängig von der Auflösung “Responsive…” machen. Nun habe ich in der Child-Style.css einige Angaben wie folgt gemacht:
Media screen and (min-width: 768px) {
#content .page .entry-header h1.entry-title {
font-family: ‘Zapfino Extra LT W01’, Trebuchet MS;
font-size: 1.0rem;
color: #be4948;
}
}
Media screen and (min-width: 1024px) {
#content .page .entry-header h1.entry-title {
font-family: ‘Zapfino Extra LT W01’, Trebuchet MS;
font-size: 1.2rem;
color: #be4948;
}
}
Media screen and (min-width: 1180px) {
#content .page .entry-header h1.entry-title {
font-family: ‘Zapfino Extra LT W01’, Trebuchet MS;
font-size: 1.4rem;
color: #be4948;
}
}
Die Größendefinitionen funktionieren im Browser; wenn ich jedoch die URL auf meinem Smartphone mit Chrome öffne, dann wird weder die Schriftart noch die Größe berücksichtigt.
Wie kann ich dies am besten lösen?
Ich habe auch schon mit px gearbeitet- hat auch nichts gebracht.
Wäre für eine Hilfestellung dankbar...