@ olliks1973,
danke für deine Anleitung.
Jetzt habe ich bei mir geschaut und so habe ich es stehen.
index.php
PHP-Code:
<jdoc:include type="head" />
<link rel="stylesheet" href="templates/system/css/system.css" type="text/css" />
<link rel="stylesheet" href="templates/system/css/general.css" type="text/css" />
<link rel="stylesheet" href="templates/<?php echo $this->template ?>/css/template.css" type="text/css" />
<!--[if lte IE 6]>
<link href="templates/<?php echo $this->template ?>/css/ieonly.css" rel="stylesheet" type="text/css" />
<![endif]-->
Dann habe schon eine css Datei mit Name ieonly.css und dies steht drin
PHP-Code:
/* IE ONLY CSS */
div#wrapper {
margin: 10px 20px 20px 20px;
}
div#footer {
margin: 10px;
}
Dann habe ich eine weitere css Datei: mit Name template.css
PHP-Code:
div#mainholder {
float:left;
width:950px;
}
div#left {
text-align: left;
float:left;
width: 205px;
margin-right: 10px;
}
div#right {
text-align: left;
float:left;
width: 205px;
margin-left: 10px;
color: #333;
}
div#main {
font-family: Helvetica,Arial,sans-serif;
font-size:1em;
text-align: left;
float:left;
color: #333;
}
div#main {
font-family: Helvetica,Arial,sans-serif;
font-size:1em;
text-align: left;
float:left;
color: #333;
}
Habe versucht beim
div#mainholder {
float:left;
width:950px;
}
so umzuschreiben aber ohne Ergebnis:
div#mainholder {
float:left;
width: 970px !important;
width:950px;
}
Wo muss ich noch was einfügen, bzw. ändern?
Kannst du mir bitte hlefen?
Lesezeichen