meine Seite ist fertig und ich stelle fest dass sie nur in Safari super ist und in Firefox und IE das Layout ganz anders ist..
Safari: (alles super)

Firefox:

IE:

In Safari richtet er alles richtig aus, in FF und IE richtet er Boxheads und Boxcontents nicht nach der css aus, sondern nach der länge des Contentbereichs.
Wie schaffe ich es dass Firefox und IE schnallen dass sie die divs im Boxbereich nicht auf die Länge der Seite verteilen sollen sondern direkt untereinander machen sollen? Hab schon alles probiert und ja ich weiß dass die Browser das falsch interpretieren.
Die ganze css:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 | tr { font-family: Verdana; font-size: 10px; } #content { background: url(include/designs/neu/images/content.jpg); min-height: 1500px; width: 710px; float: right; border-top-width: 1px; border-top-style: solid; border-top-color: #c3c3c3; } #box { background: url(include/designs/neu/images/boxcontent.gif); min-height: 212px; border-top-width: 1px; border-top-style: solid; border-top-color: #c3c3c3; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #c3c3c3; } #wrapper { background: url(include/designs/neu/images/left_space.gif) repeat-y left top; } #left { float: left; width: 56px; } #main { background-color: #e3e3e3; border-left-width: 1px; border-right-width: 1px; border-color: #871f00; border-style: solid; } #explode_content { margin-top: 8px; margin-left: 8px; margin-right: 8px; } #explode_box { margin-left: 6px; margin-right: 6px; padding-top: 6px; } #head-leiste-right { background: url(include/designs/neu/images/head_leiste_right.jpg) no-repeat; min-height: 34px; margin-top: -1px; } #end { background: url(include/designs/neu/images/footer_bottom.jpg) no-repeat; width: 1100px; height: 80px; } #end-content { margin-left: 20px; margin-bottom: 20px; margin-right: 20px } #boxhead { background: url(include/designs/neu/images/box2head.gif) no-repeat; width: 252px; height: 29px; } #boxhead-content { font-family: Verdana; font-size: 14; margin-left: 6px; padding-top: 5px; } #headright { background: url(include/designs/neu/images/head_right.jpg); width: 334px; height: 140px; } #headright-content { margin-right: 20px; padding-top: 20px; } #headright-content a { color: #fff; } .clear { clear:both } #top-space { height: 11px; } #mid-space { width: 26px; height: 856px; } #right-space { width: 56px; height: 856px; } #box-mid-space { width: 252px; height: 8px; } #box-b-space { width: 252px; height: 19px; } |
die html:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 | <td colspan="3"> <div id="head-leiste-right"> </div></td> </tr> <tr> <td colspan="5"> <div id="top-space"></div></td> </tr> <tr> <td rowspan="12"> <div id="wrapper"> <div id="left"> </div> </div> </td> <td rowspan="12"> <div id="content"> <div id="explode_content"> {EXPLODE} </div> </div> </td> <div style="clear: both;"> </div> <td rowspan="12"> <div id="mid-space"></div></td> <td> <div id="boxhead"> <div id="boxhead-content"> <font color="white">Aktuelles</font> </div> </div> </td> <td rowspan="12"> <div id="right-space"></div></td> </tr> <tr> <td> <div id="box-mid-space"></div></td> </tr> <tr> <td> <div id="box"> <div id="explode_box"> Aktuelle News<br /> {_boxes_LASTNEWS} <br /><hr><br /> Aktuelle Forenposts<br /> {_boxes_LASTFORUM} <br /> </div> </div> </td> </tr> <tr> <td> <div id="box-b-space"></div></td> </tr> <tr> <td> <div id="boxhead"> <div id="boxhead-content"> <font color="white">Statistik</font> </div> </div> </td> </tr> <tr> <td> <div id="box-mid-space"></div></td> </tr> <tr> <td> <div id="box"> <div id="explode_box"> {_boxes_STATISTIK} </div> </div> </td> </tr> <tr> <td> <div id="box-b-space"></div></td> </tr> <tr> <td> <div id="boxhead"> <div id="boxhead-content"> <font color="white">Shoutbox</font> </div> </div> </td> </tr> <tr> <td> <div id="box-mid-space"></div></td> </tr> <tr> <td> <div id="box"> <div id="explode_box"> {_boxes_SHOUTBOX} <br /><br /> </div> </div> </td> </tr> <tr> <td> <div id="box-b-space"></div></td> </tr> <tr> <td colspan="5"> <img src="include/designs/neu/images/footer_top.gif" width="1100" height="139" alt=""></td> </tr> <tr> <td colspan="5"> <div id="end"> <div id="end-content"> </div> </div> </td> </tr> |
Zuletzt modifiziert von LittleBIGFan am 29.05.2010 - 12:03:27