<?xml version="1.0"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>MachForm Community Forums Topic: Label inline to text field</title>
<link>https://www.machform.com/forums/</link>
<description>MachForm Community Forums Topic: Label inline to text field</description>
<language>en</language>
<pubDate>Mon, 04 May 2026 00:50:51 +0000</pubDate>

<item>
<title>daltx7 on "Label inline to text field"</title>
<link>https://www.machform.com/forums/topic/label-inline-to-text-field#post-20486</link>
<pubDate>Tue, 18 Mar 2014 19:36:46 +0000</pubDate>
<dc:creator>daltx7</dc:creator>
<guid isPermaLink="false">20486@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Well, success comes to the patient.  I have found the solution as I had the label id's wrong, and a quick review with firebug corrected.  Thanks to those who assisted.
&#60;/p&#62;</description>
</item>
<item>
<title>daltx7 on "Label inline to text field"</title>
<link>https://www.machform.com/forums/topic/label-inline-to-text-field#post-20474</link>
<pubDate>Mon, 17 Mar 2014 05:07:52 +0000</pubDate>
<dc:creator>daltx7</dc:creator>
<guid isPermaLink="false">20474@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;I am trying something similar and have seen two types of code for this.  Either code works on my first field only, but the remaining three are unresponsive.  I have tried this:&#60;/p&#62;
&#60;p&#62;#li_1 label.description {&#60;br /&#62;
float: left !important ;&#60;br /&#62;
width: 42% !important;&#60;br /&#62;
} &#60;/p&#62;
&#60;p&#62;#li_1 input.text {&#60;br /&#62;
clear:none !important;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;#li_2 label.description {&#60;br /&#62;
float: left !important ;&#60;br /&#62;
width: 42% !important;&#60;br /&#62;
} &#60;/p&#62;
&#60;p&#62;#li_2 input.text {&#60;br /&#62;
clear:none !important;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;And has the same effect as this:&#60;/p&#62;
&#60;p&#62;#li_1 label.description, #li_2 label.description, #li_3 label.description{&#60;br /&#62;
width: 25%; !important;&#60;br /&#62;
float: right; !important;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;#li_1 input.text, #li_2 input.text, #li_3 input.text{&#60;br /&#62;
width:15%; !important;&#60;br /&#62;
float: left; !important;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;The latter I am trying to perform on three fields.&#60;/p&#62;
&#60;p&#62;I am actually trying to place three successive fields in alignment LABEL   TEXT  On three different lines.  Something tells me I have to insert code to break the lines.  Any suggestions?
&#60;/p&#62;</description>
</item>
<item>
<title>Lazarix on "Label inline to text field"</title>
<link>https://www.machform.com/forums/topic/label-inline-to-text-field#post-16736</link>
<pubDate>Mon, 07 Jan 2013 15:50:09 +0000</pubDate>
<dc:creator>Lazarix</dc:creator>
<guid isPermaLink="false">16736@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Any ideas on the above?
&#60;/p&#62;</description>
</item>
<item>
<title>Lazarix on "Label inline to text field"</title>
<link>https://www.machform.com/forums/topic/label-inline-to-text-field#post-16714</link>
<pubDate>Thu, 03 Jan 2013 04:17:51 +0000</pubDate>
<dc:creator>Lazarix</dc:creator>
<guid isPermaLink="false">16714@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Thanks Redityo!&#60;br /&#62;
That works perfectly except for one small thing.&#60;br /&#62;
The checkbox element 44 doesn't seem to adhere to the above.&#60;/p&#62;
&#60;p&#62;The code is:&#60;br /&#62;
&#60;code&#62;&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;li id=&#38;quot;li_44&#38;quot; class=&#38;quot;column_7 new_row&#38;quot;&#38;gt;
&#38;lt;label class=&#38;quot;description&#38;quot;&#38;gt;Cost Incurred&#38;lt;/label&#38;gt;
&#38;lt;div&#38;gt;
&#38;lt;span&#38;gt;
&#38;lt;input id=&#38;quot;element_44_1&#38;quot; name=&#38;quot;element_44_1&#38;quot; class=&#38;quot;element checkbox&#38;quot; type=&#38;quot;checkbox&#38;quot; value=&#38;quot;1&#38;quot;/&#38;gt;
&#38;lt;label class=&#38;quot;choice&#38;quot; for=&#38;quot;element_44_1&#38;quot;/&#38;gt;
&#38;lt;/span&#38;gt;
&#38;lt;/div&#38;gt;
&#38;lt;/li&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;I've tried:&#60;br /&#62;
&#60;code&#62;&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;#li_44 label.description { float: left !important ; width: 42% !important; }
#li_44_1 input.checkbox { clear:none !important; }&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;&#60;/code&#62;&#60;br /&#62;
And also:&#60;br /&#62;
&#60;code&#62;&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;#li_44 label.description { float: left !important ; width: 42% !important; }
#li_44 input.checkbox { clear:none !important; }&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;&#60;/code&#62;&#60;br /&#62;
And also:&#60;br /&#62;
&#60;code&#62;&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;#li_44 label.description { float: left !important ; width: 42% !important; }
#li_44 input.text { clear:none !important; }&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;&#60;/code&#62;&#60;br /&#62;
but it doesn't seem to make a difference.&#60;/p&#62;
&#60;p&#62;Yes, I have created a &#34;custom&#34; 7 column style but it works just fine for the text input fields.
&#60;/p&#62;</description>
</item>
<item>
<title>redityo on "Label inline to text field"</title>
<link>https://www.machform.com/forums/topic/label-inline-to-text-field#post-16698</link>
<pubDate>Tue, 01 Jan 2013 21:17:25 +0000</pubDate>
<dc:creator>redityo</dc:creator>
<guid isPermaLink="false">16698@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Have you try to put these css code into your form &#34;advance css&#34; code  ?&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;#li_4 label.description {
    float: left !important    ;
    width: 42% !important;
}

#li_4 input.text {
clear:none !important;
}

#li_9 label.description {
    float: left !important    ;
    width: 42% !important;
}

#li_9 input.text {
clear:none !important;
}

#li_14 label.description {
    float: left !important    ;
    width: 42% !important;
}

#li_14 input.text {
clear:none !important;
}

#li_19 label.description {
    float: left !important    ;
    width: 42% !important;
}

#li_19 input.text {
clear:none !important;
}

#li_24 label.description {
    float: left !important    ;
    width: 42% !important;
}

#li_24 input.text {
clear:none !important;
}

#li_29 label.description {
    float: left !important    ;
    width: 42% !important;
}

#li_29 input.text {
clear:none !important;
}

#li_43 label.description {
    float: left !important    ;
    width: 42% !important;
}

#li_43 input.text {
clear:none !important;
}

#li_38 label.description {
    float: left !important    ;
    width: 42% !important;
}

#li_38 input.text {
clear:none !important;
}

#li_51 label.description {
    float: left !important    ;
    width: 42% !important;
}

#li_51 input.text {
clear:none !important;
}

#li_58 label.description {
    float: left !important    ;
    width: 40% !important;
}

#li_58 input.text {
clear:none !important;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;I have reply your ticket before, if you still having any problem on this, please send us your machform detail login info to :&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;customer.service[at]appnitro.com&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;I will help you to adjust the field directly.
&#60;/p&#62;</description>
</item>
<item>
<title>Lazarix on "Label inline to text field"</title>
<link>https://www.machform.com/forums/topic/label-inline-to-text-field#post-16697</link>
<pubDate>Mon, 31 Dec 2012 21:02:57 +0000</pubDate>
<dc:creator>Lazarix</dc:creator>
<guid isPermaLink="false">16697@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Any ideas would be helpful as i'm really struggling with this now :(
&#60;/p&#62;</description>
</item>
<item>
<title>Lazarix on "Label inline to text field"</title>
<link>https://www.machform.com/forums/topic/label-inline-to-text-field#post-16676</link>
<pubDate>Sat, 22 Dec 2012 18:38:35 +0000</pubDate>
<dc:creator>Lazarix</dc:creator>
<guid isPermaLink="false">16676@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Also, if you set that property, it stops you from lining fields up in the same line. (I.E. column_3)
&#60;/p&#62;</description>
</item>
<item>
<title>Lazarix on "Label inline to text field"</title>
<link>https://www.machform.com/forums/topic/label-inline-to-text-field#post-16675</link>
<pubDate>Sat, 22 Dec 2012 18:37:40 +0000</pubDate>
<dc:creator>Lazarix</dc:creator>
<guid isPermaLink="false">16675@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Won't that do it for all fields in the form though?&#60;br /&#62;
I'd only like to do it for certain fields.
&#60;/p&#62;</description>
</item>
<item>
<title>yuniar on "Label inline to text field"</title>
<link>https://www.machform.com/forums/topic/label-inline-to-text-field#post-16660</link>
<pubDate>Wed, 19 Dec 2012 18:47:46 +0000</pubDate>
<dc:creator>yuniar</dc:creator>
<guid isPermaLink="false">16660@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;You don't need any modification for this. Simply open your form properties tab, click &#34;show more options&#34; and then set the Label Alignment property to &#34;Left Aligned&#34; or &#34;Right Aligned&#34;
&#60;/p&#62;</description>
</item>
<item>
<title>Lazarix on "Label inline to text field"</title>
<link>https://www.machform.com/forums/topic/label-inline-to-text-field#post-16657</link>
<pubDate>Wed, 19 Dec 2012 03:33:47 +0000</pubDate>
<dc:creator>Lazarix</dc:creator>
<guid isPermaLink="false">16657@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Anyone have any ideas on this?
&#60;/p&#62;</description>
</item>
<item>
<title>Lazarix on "Label inline to text field"</title>
<link>https://www.machform.com/forums/topic/label-inline-to-text-field#post-16653</link>
<pubDate>Tue, 18 Dec 2012 15:16:08 +0000</pubDate>
<dc:creator>Lazarix</dc:creator>
<guid isPermaLink="false">16653@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Incidentally, I've also ran firebug but I can't seem to find the right property to modify to make it happen.
&#60;/p&#62;</description>
</item>
<item>
<title>Lazarix on "Label inline to text field"</title>
<link>https://www.machform.com/forums/topic/label-inline-to-text-field#post-16651</link>
<pubDate>Tue, 18 Dec 2012 07:57:41 +0000</pubDate>
<dc:creator>Lazarix</dc:creator>
<guid isPermaLink="false">16651@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Hi guys, I just wanted to say that this is a fantastic product and already i'm making a lot of progress!&#60;br /&#62;
I've read&#60;br /&#62;
&#60;a href=&#34;http://www.appnitro.com/forums/topic/label-038-input-box-on-same-lin?replies=17&#34; rel=&#34;nofollow&#34;&#62;http://www.appnitro.com/forums/topic/label-038-input-box-on-same-lin?replies=17&#60;/a&#62;&#60;br /&#62;
about how to get a text field label to sit to the left of the field, but I just can't seem to make it happen.&#60;br /&#62;
I've modified the label.description in the view.css relating to my form (as opposed to the main view.css) and set:&#60;br /&#62;
	width: 150%;&#60;br /&#62;
	float: left;&#60;br /&#62;
(150% because if i set it shorter, the label text splits into two lines)&#60;br /&#62;
I've also set the textarea.textarea width to 50% as suggested but it still sits on top of the text field.&#60;br /&#62;
Ideas?&#60;br /&#62;
&#60;a href=&#34;http://www.tjwcontracts.co.uk/forms/view.php?id=1&#34; rel=&#34;nofollow&#34;&#62;http://www.tjwcontracts.co.uk/forms/view.php?id=1&#60;/a&#62;&#60;br /&#62;
The embedded form is here and looks a bit better at 100%:&#60;br /&#62;
&#60;a href=&#34;http://www.tjwcontracts.co.uk/Beta/mileage6.php&#34; rel=&#34;nofollow&#34;&#62;http://www.tjwcontracts.co.uk/Beta/mileage6.php&#60;/a&#62;
&#60;/p&#62;</description>
</item>

</channel>
</rss>
