<select> Problem im Internetexplorer

Hallo Leute,

ich bin ganz neu hier und hoffe einer hat den richtigen weg wieso dies nicht funktioniert.
Dies sind die zwei Zustände einer im Internetexplorer und der andere im Firefox.

Firefox ist alles super so wie es soll.
[ATTACH]2787.vB[/ATTACH]

Im Internet explorer ist das Select feld einfach nur dr kleine Pfeil zu sehen.
[ATTACH]2788.vB[/ATTACH]

Woran kann so was liegen.

MfG Marco

Wie sieht denn dein Code aus? Nur von Screenshots lässt sich da selten etwas sagen. Außerdem: Welche Version des Internet Explorers ist betroffen?

Hier ist der Code habe nur einen Teil der ganzen Seite rauskopiert.

[HTML]

Pupillendistanz <?php foreach ( $attributes[6]['options_list'] as $options_item ) : ?> <?php if( isset( $options_item['display_price']) ) : ?> value="<?php echo $options_item['base_var'] ?>"><?php echo $options_item['base_value'] ?> (<?php echo $options_item['sign'].$options_item['display_price'] ?>) <?php else : ?> value="<?php echo $options_item['base_var'] ?>"><?php echo $options_item['base_value'] ?> <?php endif; ?> <?php endforeach; ?> Pupillendistanz <?php foreach ( $attributes[7]['options_list'] as $options_item ) : ?> <?php if( isset( $options_item['display_price']) ) : ?> value="<?php echo $options_item['base_var'] ?>"><?php echo $options_item['base_value'] ?> (<?php echo $options_item['sign'].$options_item['display_price'] ?>) <?php else : ?> value="<?php echo $options_item['base_var'] ?>"><?php echo $options_item['base_value'] ?> <?php endif; ?> <?php endforeach; ?> Zum Pupillendisanzmesser.
Bitte wählen Sie Ihre Glasoptionen
<?php echo $attributes[8]['title'] ?> <?php foreach ( $attributes[8]['options_list'] as $options_item ) : ?> <?php if( isset( $options_item['display_price']) ) : ?> <?php echo $options_item['base_value'] ?> (<?php echo $options_item['sign'].$options_item['display_price'] ?>) <?php else : ?> <?php echo $options_item['base_value'] ?> <?php endif; ?> <?php endforeach; ?> <?php echo $attributes[9]['title'] ?> <?php foreach ( $attributes[9]['options_list'] as $options_item ) : ?> <?php if( isset( $options_item['display_price']) ) : ?> <?php echo $options_item['base_value'] ?> (<?php echo $options_item['sign'].$options_item['display_price'] ?>) <?php else : ?> <?php echo $options_item['base_value'] ?> <?php endif; ?> <?php endforeach; ?>
<?php echo $attributes[10]['title'] ?> <?php foreach ( $attributes[10]['options_list'] as $options_item ) : ?> <?php if( isset( $options_item['display_price']) ) : ?> <?php echo $options_item['base_value'] ?> (<?php echo $options_item['sign'].$options_item['display_price'] ?>) <?php else : ?> <?php echo $options_item['base_value'] ?> <?php endif; ?> <?php endforeach; ?> <?php echo $attributes[11]['title'] ?> <?php foreach ( $attributes[11]['options_list'] as $options_item ) : ?> <?php if( isset( $options_item['display_price']) ) : ?> <?php echo $options_item['base_value'] ?> (<?php echo $options_item['sign'].$options_item['display_price'] ?>) <?php else : ?> <?php echo $options_item['base_value'] ?> <?php endif; ?> <?php endforeach; ?>
Zur Ansicht bestellen
<?php echo $attributes[12]['title'] ?> <?php foreach ( $attributes[12]['options_list'] as $options_item ) : ?> <?php if( isset( $options_item['display_price']) ) : ?> <?php echo $options_item['base_value'] ?> (<?php echo $options_item['sign'].$options_item['display_price'] ?>) <?php else : ?> <?php echo $options_item['base_value'] ?> <?php endif; ?> <?php endforeach; ?>
[/HTML]

Also entwarnung ich hab es gelöst.

Es war kein style=„width:120px;“ in den select gesetzt.
Ach ich mach da jetzt schon drei Tage rum. Aber ich habs gelöst.

Also nicht vergessen Style Attribute setzen.

MfG Marco

Nein, Style-Attribute sind hier nicht die Lösung. Du solltest die Style-Eigenschaften in einer externen CSS-Datei setzen, nicht als Inline-Style (was Style-Attribute sind). Also:

select { width: 180px; }

Btw. ist der Quellcode, den Du gezeigt hast, kein HTML-Code wie er für eine Beurteilung hier wichtig wäre, sondern PHP-Code der hier niemandem etwas bringt um deine Frage zu beantworten. Denk daran nächstes Mal bitte.