Hocalarım;

Bir anket scripti üzerine çalışıyorum ancak bir konuda takıldım kaldım. Sorunum şu alt alta listelenmiş cevap şıklarını sorunun sağ tarafına sıralamak istiyorum ancak başaramadım. Kodlar ve yapmak istediğim ekran görüntüsü aşağıdaki gibidir. Nasıl yaparım bunu

Standart düzen:


Yapmak istediğim


// First poll definition
$p = new Poll;
$p->question = "What is your favorite color?";	// Question displayed to the user
$p->returnToURL = "../example.php";				// Specify the URL to return to for this poll; may be relative or absolute
$p->legend = "First Poll";						// Form legend; leave empty for none
$p->control_type = $CONTROL_RADIOBUTTONS;		// Control type; $CONTROL_RADIOBUTTONS or $CONTROL_COMBOBOX
$p->add_value("1", "Red");						// Poll value ID and a display string
$p->add_value("2", "Green");
$p->add_value("3", "Blue");
$p->add_value("4", "Yellow");
$VALID_POLLS["1"] = $p;							// "1" is the poll ID