I cant figure out how to wrap the content to a new row when it exceeds the width of the page?
Here is a link to what I have so far and the first question in this survey has more color swatches than is visible. I need these color chips to move to a new line so that they are all visible.
http://www.colormatter s.com/component/surveys/1-color-survey/2/editsurvey?Item id=794
Here is what I have:
Here is a link to what I have so far and the first question in this survey has more color swatches than is visible. I need these color chips to move to a new line so that they are all visible.
http://www.colormatter s.com/component/surveys/1-color-survey/2/editsurvey?Item id=794
Here is what I have:
Code:
$return .= '<table class="table_question">';
$return .= '<tr>';
$return .= '<td class="'.$question_class.'">';
$return .= $question_details["0"]["title"];
if($question_details["0"]["required"] == "1"){
$return .= '<span class="question_required"> *</span>';
$javascript = ' onchange="setentertext(form.q'.$question_id.', this)" ';
$validation = $this->createValidation($question_id, $question_details["0"]["title"]);
}
$return .= '</td>';
$return .= '</tr>';
Comment