<?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: Section Break Guidlines - Different Alignment on Same Line</title>
<link>https://www.machform.com/forums/</link>
<description>MachForm Community Forums Topic: Section Break Guidlines - Different Alignment on Same Line</description>
<language>en</language>
<pubDate>Mon, 04 May 2026 02:02:30 +0000</pubDate>

<item>
<title>pcubillos on "Section Break Guidlines - Different Alignment on Same Line"</title>
<link>https://www.machform.com/forums/topic/section-break-guidlines-different-alignment-on-same-line#post-21679</link>
<pubDate>Mon, 01 Sep 2014 02:56:59 +0000</pubDate>
<dc:creator>pcubillos</dc:creator>
<guid isPermaLink="false">21679@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Still looking for help on this please...
&#60;/p&#62;</description>
</item>
<item>
<title>pcubillos on "Section Break Guidlines - Different Alignment on Same Line"</title>
<link>https://www.machform.com/forums/topic/section-break-guidlines-different-alignment-on-same-line#post-21660</link>
<pubDate>Thu, 28 Aug 2014 02:35:25 +0000</pubDate>
<dc:creator>pcubillos</dc:creator>
<guid isPermaLink="false">21660@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Yuniar, At first I thought oh what a noob error! Unfortunately it still has a issue and it does not show the info on the same line. I have typed this in a HTML program...&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;Style&#38;gt;
#textbox { width: 100%; }
.alignleft { float: left; }
.alignright { float: right; }
&#38;lt;/Style&#38;gt;

&#38;lt;body&#38;gt;
&#38;lt;div id=&#38;quot;textbox&#38;quot;&#38;gt;
&#38;lt;p class=&#38;quot;alignleft&#38;quot;&#38;gt;Text on the left.&#38;lt;/p&#38;gt;
&#38;lt;p class=&#38;quot;alignright&#38;quot;&#38;gt;Text on the right.&#38;lt;/p&#38;gt;
&#38;lt;div style=&#38;quot;clear: both;&#38;quot;&#38;gt;&#38;lt;/div&#38;gt;
&#38;lt;/div&#38;gt;
&#38;lt;/body&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;And it works!! But not in machform :-(&#60;/p&#62;
&#60;p&#62;Is there another alternative??
&#60;/p&#62;</description>
</item>
<item>
<title>yuniar on "Section Break Guidlines - Different Alignment on Same Line"</title>
<link>https://www.machform.com/forums/topic/section-break-guidlines-different-alignment-on-same-line#post-21650</link>
<pubDate>Tue, 26 Aug 2014 11:45:19 +0000</pubDate>
<dc:creator>yuniar</dc:creator>
<guid isPermaLink="false">21650@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;I think you simply missing the enclosing &#34;p&#34; tag. It should be like this:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;div id=&#38;quot;textbox&#38;quot;&#38;gt;
&#38;lt;p class=&#38;quot;alignleft&#38;quot;&#38;gt;Text on the left.&#38;lt;/p&#38;gt;
&#38;lt;p class=&#38;quot;alignright&#38;quot;&#38;gt;Text on the right.&#38;lt;/p&#38;gt;
&#38;lt;div style=&#38;quot;clear: both;&#38;quot;&#38;gt;&#38;lt;/div&#38;gt; &#38;lt;/div&#38;gt;&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>pcubillos on "Section Break Guidlines - Different Alignment on Same Line"</title>
<link>https://www.machform.com/forums/topic/section-break-guidlines-different-alignment-on-same-line#post-21641</link>
<pubDate>Sat, 23 Aug 2014 15:17:44 +0000</pubDate>
<dc:creator>pcubillos</dc:creator>
<guid isPermaLink="false">21641@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Any help please...
&#60;/p&#62;</description>
</item>
<item>
<title>pcubillos on "Section Break Guidlines - Different Alignment on Same Line"</title>
<link>https://www.machform.com/forums/topic/section-break-guidlines-different-alignment-on-same-line#post-21632</link>
<pubDate>Fri, 22 Aug 2014 03:02:43 +0000</pubDate>
<dc:creator>pcubillos</dc:creator>
<guid isPermaLink="false">21632@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Hello all,&#60;/p&#62;
&#60;p&#62;I am trying to place some form information at the bottom of the HTML form I created.&#60;/p&#62;
&#60;p&#62;Form Number&#60;br /&#62;
Form Date&#60;/p&#62;
&#60;p&#62;I need to have it on the same line though&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;Form Number         Form Date
Align Left               Align Right&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;I tried inserting this in the Advanced CSS field of the Section Break:&#60;br /&#62;
&#60;code&#62;#textbox {	width: 100%; } .alignleft { float: left; } .alignright { float: right; }&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;And this into the guidelines field:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;/div&#38;gt;
	&#38;lt;div id=&#38;quot;textbox&#38;quot;&#38;gt;
		&#38;lt;p class=&#38;quot;alignleft&#38;quot;&#38;gt;Text on the left.
		&#38;lt;p class=&#38;quot;alignright&#38;quot;&#38;gt;Text on the right.
		&#38;lt;div style=&#38;quot;clear: both;&#38;quot;&#38;gt;&#38;lt;/div&#38;gt;
	&#38;lt;/div&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Unfortunately that did not work. Any help is greatly appreciated.&#60;br /&#62;
Thank you in advance
&#60;/p&#62;</description>
</item>

</channel>
</rss>
