|
i don't understand your question... what do you mean by make the form in css? do you mean without using tables?
in this case, as mentioned, tables probably wouldn't be wrong here. you shouldn't nest them though. instead, try using one <td> for the picture, and another <td> for the description/link. you can use the css styles padding and margin to create the spacing you want inside each cell. with php, just iterate using a loop to generate each <tr> and the <td>s inside each <tr>. keep the <table> and </table> outside the loop. that way, you won't be nesting tables.
|