<?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: Is there a way to set different widths to columns?</title>
<link>https://www.machform.com/forums/</link>
<description>MachForm Community Forums Topic: Is there a way to set different widths to columns?</description>
<language>en</language>
<pubDate>Sat, 06 Jun 2026 03:19:19 +0000</pubDate>

<item>
<title>williamansley on "Is there a way to set different widths to columns?"</title>
<link>https://www.machform.com/forums/topic/is-there-a-way-to-set-different-widths-to-columns#post-24686</link>
<pubDate>Wed, 13 Jan 2016 03:50:31 +0000</pubDate>
<dc:creator>williamansley</dc:creator>
<guid isPermaLink="false">24686@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;You need to use the &#60;em&#62;exact same text&#60;/em&#62; as is shown in the id value in the source code for your custom CSS.  Based on what you say in in your form's web page source code, your CSS should be:&#60;/p&#62;
&#60;p&#62;#id_11 {max-width: 100px;}&#60;br /&#62;
#id_12 {max-width: 100px;}&#60;br /&#62;
#id_13 {max-width: 300px;}&#60;br /&#62;
#id_14 {max-width: 100px;}&#60;br /&#62;
#id_15 {max-width: 100px;}&#60;br /&#62;
#id_16 {max-width: 100px;}
&#60;/p&#62;</description>
</item>
<item>
<title>uwtsd on "Is there a way to set different widths to columns?"</title>
<link>https://www.machform.com/forums/topic/is-there-a-way-to-set-different-widths-to-columns#post-24684</link>
<pubDate>Wed, 13 Jan 2016 00:16:29 +0000</pubDate>
<dc:creator>uwtsd</dc:creator>
<guid isPermaLink="false">24684@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Thanks for the detailed response Mark.&#60;/p&#62;
&#60;p&#62;I copied the theme and added the following to advances CSS&#60;/p&#62;
&#60;p&#62;#element_11 {max-width: 100px;}&#60;br /&#62;
#element_12 {max-width: 100px;}&#60;br /&#62;
#element_13 {max-width: 300px;}&#60;br /&#62;
#element_14 {max-width: 100px;}&#60;br /&#62;
#element_15 {max-width: 100px;}&#60;br /&#62;
#element_16 {max-width: 100px;}&#60;/p&#62;
&#60;p&#62;Nothing changes though, I have cleared cookies and opened in Chrome and Firefox but no change.&#60;br /&#62;
If I inspect the form it shows the following.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;li id=&#38;quot;li_11&#38;quot; class=&#38;quot;column_6&#38;quot;&#38;gt;&#38;lt;/li&#38;gt;
&#38;lt;li id=&#38;quot;li_12&#38;quot; class=&#38;quot;column_6&#38;quot;&#38;gt;&#38;lt;/li&#38;gt;
&#38;lt;li id=&#38;quot;li_13&#38;quot; class=&#38;quot;column_6&#38;quot;&#38;gt;&#38;lt;/li&#38;gt;
&#38;lt;li id=&#38;quot;li_14&#38;quot; class=&#38;quot;column_6&#38;quot;&#38;gt;&#38;lt;/li&#38;gt;
&#38;lt;li id=&#38;quot;li_15&#38;quot; class=&#38;quot;column_6&#38;quot;&#38;gt;&#38;lt;/li&#38;gt;
&#38;lt;li id=&#38;quot;li_16&#38;quot; class=&#38;quot;column_6&#38;quot;&#38;gt;&#38;lt;/li&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;The advanced CSS doesn't seem to do anything, any suggestions.
&#60;/p&#62;</description>
</item>
<item>
<title>Markstein on "Is there a way to set different widths to columns?"</title>
<link>https://www.machform.com/forums/topic/is-there-a-way-to-set-different-widths-to-columns#post-24611</link>
<pubDate>Fri, 25 Dec 2015 06:50:03 +0000</pubDate>
<dc:creator>Markstein</dc:creator>
<guid isPermaLink="false">24611@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;You should be able to adjust each field using CSS in the &#34;Advanced CSS&#34; section of your theme. Use your browsers dev tools to inspect the element you want to change the width for.&#60;/p&#62;
&#60;p&#62;For example,&#60;/p&#62;
&#60;p&#62;Let's say you have a form with 2 single line text fields. The text fields widths are set to Medium in the options of machform. You can override this setting using CSS.&#60;/p&#62;
&#60;p&#62;Using the browsers dev tools you inspect the first text field. You see it is in the following code:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;div&#38;gt;
			&#38;lt;input id=&#38;quot;element_5&#38;quot; name=&#38;quot;element_5&#38;quot; class=&#38;quot;element text medium&#38;quot; type=&#38;quot;text&#38;quot; value=&#38;quot;&#38;quot;&#38;gt; 

		&#38;lt;/div&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;The ID is what we are after (your ID will be different). So for this text field it's id=&#34;element_5&#34;. Now in your advanced CSS you can add the following code:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;#element_5 {max-width: 100px;}&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Now the field will not have a width greater than 100px. Let's do the same for the other field. Inspect the field and you see this code:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;div&#38;gt;
			&#38;lt;input id=&#38;quot;element_6&#38;quot; name=&#38;quot;element_6&#38;quot; class=&#38;quot;element text medium&#38;quot; type=&#38;quot;text&#38;quot; value=&#38;quot;&#38;quot;&#38;gt; 

		&#38;lt;/div&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;So in your Advanced CSS you would enter:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;#element_6 {max-width: 175px;}&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Remember that this will effect &#34;all&#34; of your forms if you use the same theme on all forms. You can always copy your theme, take out the Advanced CSS you've entered and assign it to your other forms.
&#60;/p&#62;</description>
</item>
<item>
<title>uwtsd on "Is there a way to set different widths to columns?"</title>
<link>https://www.machform.com/forums/topic/is-there-a-way-to-set-different-widths-to-columns#post-24608</link>
<pubDate>Wed, 23 Dec 2015 19:02:49 +0000</pubDate>
<dc:creator>uwtsd</dc:creator>
<guid isPermaLink="false">24608@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;I have 6 fields and assigned column_6 to each one.&#60;br /&#62;
I want the columns to be different widths instead of equal width.&#60;/p&#62;
&#60;p&#62;I have set the field size to small, medium and large but that just leaves empty spaces between the columns.&#60;/p&#62;
&#60;p&#62;I have tried adding some css to the theme, I have added:&#60;/p&#62;
&#60;p&#62;.md_period{&#60;br /&#62;
	width: 10%;&#60;br /&#62;
}&#60;br /&#62;
.md_code{&#60;br /&#62;
	width: 20%;&#60;br /&#62;
}&#60;br /&#62;
.md_title{&#60;br /&#62;
	width: 30%;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;And assiged md_period, md_code, md_title as the custom CSS class but nothing changes.&#60;br /&#62;
Do I need to add anything else to the CSS?
&#60;/p&#62;</description>
</item>

</channel>
</rss>
