PHP interesse |
|
In FF, Chrome en Safari werkt het onderstaande correct. De font size is goed en eveneens de posities. Maar in IE wordt alles in een klein font size formaat weergeven en zijn de posities niet meer correct.
Iemand enig idee hoe ik dit kan oplossen?
#logo {
position: absolute;
width: 194px;
height: 60px;
z-index: 0;
top: 33px;
left: 65px;}
/* Show the font styles */
logo#big {
font-size: 33px;
font-weight: bold;
/* text-transform: uppercase; */
color:#0079b6;
font-weight:normal;
letter-spacing:-.05em;
margin:.6em 0;
position:relative;}
#slogan {
position: absolute;
width: 194px;
height: 60px;
z-index: 0;
top: 38px;
left: 34px;}
slogan#slogan {
font-size: 14px;
font-weight: bold;
text-transform: uppercase;
color:#0079b6;
font-weight:normal;
letter-spacing:-.05em;
margin:.6em 0;
position:relative;}
#logo { position: absolute; width: 194px; height: 60px; z-index: 0; top: 33px; left: 65px;} /* Show the font styles */ logo#big { font-size: 33px; font-weight: bold; /* text-transform: uppercase; */ color:#0079b6; font-weight:normal; letter-spacing:-.05em; margin:.6em 0; position:relative;} #slogan { position: absolute; width: 194px; height: 60px; z-index: 0; top: 38px; left: 34px;} slogan#slogan { font-size: 14px; font-weight: bold; text-transform: uppercase; color:#0079b6; font-weight:normal; letter-spacing:-.05em; margin:.6em 0; position:relative;}
|