• Das Erstellen neuer Accounts wurde ausgesetzt. Bei berechtigtem Interesse bitte Kontaktaufnahme über die üblichen Wege. Beste Grüße der Admin

CSS wird nur in Safari angezeig...

Poehli

New member
Hi allerseits...

Ich hab ein kleines Problem:
Ich habe versucht button herzustellen die mit hover farbe wechseln...
Mit Safari (arbeite an meinem MacBook) geht das auch alles super... doch wenn ich die page von irgeneinem PC aus öffne (meistens Firefox) zeigt er mir nur die Links an...

meine page ist:
langstedt.la.funpic.de
--> keine sorge ich weiß das die Site noch suckt ;) aber ich versuche halt die ganze zeit dieses Problem zu lösen... Ich stell auch mal den Code rein, falls da iein problem mit ist...
wäre nett wenn ihr mir zurückschreiben könnt.
Code:

Code:
/* CSS Document */
/*-------------------------------------------------*/

/* Hauptmenü*/
#button{
    display: block;
    width: 107px;
    height: 23px;
	text-decoration:none;
    background: url("/images/button1.gif") no-repeat 0 0;

  }

  #button:hover{ 
    background: url("/images/button1.light.gif") no-repeat 0 0;
  }
/* Link Eigenschaften*/
a:link{
	color:#FFF;
	text-align:center;
	text-decoration:none
}

a:hover{	
	color:#FFF;
	text-align:center;
}
	
a:active{
	color:#000;
	text-align:center;
}

a:visited{
	color:#FFF;
	text-align:center
	}
	
/* Bild Eigenschaften */
#bildiphq{
	height:60px;
	width:80px
}

#bildiphl{
	height:80px;
	width:60px;
}

#bildcamq{
	height:auto;
	width:60px;
}

#bildcaml{
	height:60px;
	width:auto;
}

/*Tabellen*/

#Rahmen{
	border-style:double;
	border:thick;
	border-color:#009

}


Oh ja, dann hätt ich noch ne Frage:
bei Rahmen hab ich irgendwas falsch... Er zeigt den Rahmen nirgendswo an...

Danke schon mal im Voraus

Poehli
 
Zuletzt bearbeitet:
hey danke für die antwort...

sorry dass ich erst so spät zurückschreibe... naja hab jetzt mal das ausprobiert, doch es klappt immer noch nicht...

auch die website von dir zeigt keine besonderen fehler an (nur
# Error Line 30, Column 18: Attribute "BORDER" is not a valid attribute. Did you mean "border"?

border=1



You have used the attribute named above in your document, but the document type you are using does not support that attribute for this element. This error is often caused by incorrect use of the "Strict" document type with a document that uses frames (e.g. you must use the "Transitional" document type to get the "target" attribute), or by using vendor proprietary extensions such as "marginheight" (this is usually fixed by using CSS to achieve the desired effect instead).

This error may also result if the element itself is not supported in the document type you are using, as an undefined element will have no supported attributes; in this case, see the element-undefined error message for further information.

How to fix: check the spelling and case of the element and attribute, (Remember XHTML is all lower-case) and/or check that they are both allowed in the chosen document type, and/or use CSS instead of this attribute. If you received this error when using the <embed> element to incorporate flash media in a Web page, see the FAQ item on valid flash.

solche fehler...

hab jetzt die #button ID mit .button CLASS ersetzt...
und ich hab Doctype benutzt... doch es klappt immer noch nicht...

EDIT:
oh ja und ich hab Frames oder eher gesagt IFRAMES... macht das Probleme??
 
Zurück
Oben