[FONT=Arial]Hallo,[/FONT]
[FONT=Arial]Ich hoffe dass ich im Off-Topic richtig bin, sIFR passt ja auch nicht wirklich mehr in den Javascript Bereich.[/FONT]
[FONT=Arial]Ich habe folgenden HTML Code[/FONT]
[FONT=Arial]
[/FONT]
[FONT=Arial]Dabei habe ich eine Background- und Schriftfarbeinstellung in der sIRF Konfigurationsdatei definiert, allerdings möchte ich dabei für den Link eine andere Farbe verwenden, als für den normalen Text.[/FONT]
[FONT=Arial]Die sIRF Dokumentation sagt folgende Selektoren sind erlaubt ([/FONT]Selectors in sIFR 3 Documentation & FAQ)[FONT=Arial]:[/FONT]
Und fügt folgendes hinzu (Selectors in sIFR 3 Documentation & FAQ):
Meine Konfiguration sieht so aus, die Schriftfarbe bleibt allerdings weiß!
Edit:
Ich glaube eure Zeiteinstellungen sind nicht mehr ganz korrekt!
[FONT=Arial]Ich hoffe dass ich im Off-Topic richtig bin, sIFR passt ja auch nicht wirklich mehr in den Javascript Bereich.[/FONT]
[FONT=Arial]Ich habe folgenden HTML Code[/FONT]
[FONT=Arial]
HTML Code:
<div id=“box“> <p class=“normal“>Text <a href=““ class=“grey“>Link</a></p> </div>
[FONT=Arial]Dabei habe ich eine Background- und Schriftfarbeinstellung in der sIRF Konfigurationsdatei definiert, allerdings möchte ich dabei für den Link eine andere Farbe verwenden, als für den normalen Text.[/FONT]
[FONT=Arial]Die sIRF Dokumentation sagt folgende Selektoren sind erlaubt ([/FONT]Selectors in sIFR 3 Documentation & FAQ)[FONT=Arial]:[/FONT]
- [FONT=Arial]h1[/FONT]
- [FONT=Arial]h1 > em[/FONT]
- [FONT=Arial]h1 em[/FONT]
- [FONT=Arial].foo[/FONT]
- [FONT=Arial]h1.foo[/FONT]
- [FONT=Arial]#bar[/FONT]
- [FONT=Arial]h1#bar[/FONT]
- [FONT=Arial]h1#bar.foo[/FONT]
- [FONT=Arial]#bar.foo[/FONT]
- [FONT=Arial].foo.baz[/FONT]
Und fügt folgendes hinzu (Selectors in sIFR 3 Documentation & FAQ):
If you want to use a general selector and more specific ones, [FONT="]make sure the most specific one is replaced first[/FONT]. i.e. 'h1.foo' is higher on the page than 'h1'
HTML Code:
sIFR.replace(font, { selector: '.grey.normal', css: '.sIFR-root { color: #cccccc; }' }); sIFR.replace(font, { selector: '.normal', css: '.sIFR-root { background-color: #000000; color: #ffffff; }' });
Geändert von ranopalepu (02-04-2010 um 14:06 Uhr)
Comment