Can anyone tell me how to get my checkout questions to align on the left side? The default is to justify it on the right, which looks really stupid if you have more than one line. I've tried using <align="left"> in the checkout box, but that doesn't work.
Announcement
Collapse
No announcement yet.
Checkout question alignment
Collapse
X
-
Solution...
RRW,
The alignment in that case if controlled by the table row
Change this:
<td align="right"
To this:
td align="left"
In the HTML of the checkout step template for the checkout question. You have to locate the type of question (text, ratio, drop down) as there is seperate HTML for each.
-
Hmmm . . . this is the only section that I see in the 1 page checkout for checkout questions:
<table border="0" width="763">
<tr>
<td>Checkout Questions:</td>
</tr>
<tr>
<td>*</td>
</tr>
</table>
Can you tell me where to insert the td align=left? Sorry, I'm code challenged. :) I tried inserting it after the width (<table border="0" width="763" td align="left">, but it didn't work.Last edited by rrw; 10-23-2010, 06:58 PM.
Comment
-
I might try using;
<!--START: checkout_questions-->
<table border="0" width="100%">
<tr>
<td class="checkout-headers">[checkout1_checkoutquestions]</td>
</tr>
<tr>
<td ><table width="100%" cellpadding="2" cellspacing="0" class="alternative" id="Table3">
<tr>
<td><!--START: questions-->
<p align="left">[questions]
<!--END: questions-->
</td>
</tr>
</table></td>
</tr>
</table>
<br>
<!--END: checkout_questions-->
I'm not 100% sure it would work but it seems logical to me... Hope it helps.
Comment
Comment