<?xml version="1.0" encoding="UTF-8"?>    <rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
      <channel>
        <title>Header Bar Separator Issue</title>
        <link>https://interactivetools.com/forum/forum-posts.php?Header-Bar-Separator-Issue-80714</link>
        <description></description>
        <pubDate>Tue, 10 Mar 2026 20:24:37 -0700</pubDate>
        <language>en-us</language>
        <atom:link href="https://interactivetools.com/forum/forum-posts.php?rss=1&amp;Header-Bar-Separator-Issue-80714" rel="self" type="application/rss+xml" />

                <item>
          <title>Header Bar Separator Issue</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2239648#post2239648</link>
          <description><![CDATA[<p>Thanks Dave,</p>
<p>The fix was both Quick and Perfect!</p>
<p>Jerry Kornbluth</p>]]></description>
          <pubDate>Mon, 24 Oct 2016 14:54:57 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2239648#post2239648</guid>
        </item>
                <item>
          <title>Header Bar Separator Issue</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2239647#post2239647</link>
          <description><![CDATA[<p>Hi Jerry, </p>
<p>Ok, got it.  Try this quick fix: </p>
<p>In /lib/menus/database/editTable_functions.php</p>
<p>And replace this block: </p>
<p><code>if (@$field['type'] == 'separator') {<br />  if ( @$field['separatorHeader']) { echo "&lt;div class='text-center' style='line-height: 200%'&gt;&lt;b&gt;--- {$field['separatorHeader']} ---&lt;/b&gt;&lt;/div&gt;\n"; }<br />  else                             { echo "&lt;div class='text-center'&gt;--- {$field['separatorType']} ---&lt;/div&gt;"; }<br />}</code></p>
<p>With this block: </p>
<p><code>if (@$field['type'] == 'separator') {<br />  $htmlAsText = htmlencode(mb_strimwidth(strip_tags($field['separatorHTML']), 0, 50, "..."));<br />  if     ($field['separatorType'] == 'header bar') { echo "&lt;div class='text-center' style='line-height: 200%'&gt;&lt;b&gt;--- {$field['separatorHeader']} ---&lt;/b&gt;&lt;/div&gt;\n"; }<br />  elseif ($field['separatorType'] == 'html')       { echo "&lt;div class='text-center' style='line-height: 200%'&gt;&lt;b&gt;--- $htmlAsText ---&lt;/b&gt;&lt;/div&gt;\n"; }<br />  else                                             { echo "&lt;div class='text-center'&gt;--- {$field['separatorType']} ---&lt;/div&gt;"; }<br />}</code></p>
<p>That will display up to 50 characters of the "text" from the -- html -- fields.  We'll include that in the next release and also enable the "Field Label" field so you can manually specify a field label to be displayed in the field editor as well if desired.</p>
<p>Hope that helps!</p>]]></description>
          <pubDate>Mon, 24 Oct 2016 12:55:29 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2239647#post2239647</guid>
        </item>
                <item>
          <title>Header Bar Separator Issue</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2239639#post2239639</link>
          <description><![CDATA[<p>Hi Dave,</p>
<p>The Header Bars now display with styling as they should.</p>
<p>HTML separators are a totally separate issue that's been nagging for quite a while.<br />It would be nice if even a preset number of characters displayed in the field list for them (preferably styled) instead of just seeing --html--.</p>
<p>It's hard to tell which header needs modification or which one we're dragging without looking into each one, because they all just indicate --html-- in the field list instead of displaying the actual contents as they do for header bars etc.</p>
<p>Sorry for the confusion,</p>
<p>Jerry Kornbluth</p>]]></description>
          <pubDate>Thu, 20 Oct 2016 14:04:25 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2239639#post2239639</guid>
        </item>
                <item>
          <title>Header Bar Separator Issue</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2239638#post2239638</link>
          <description><![CDATA[<p>It should show for "Header Bar" separators, but not HTML ones.  You mean for HTML ones? </p>]]></description>
          <pubDate>Thu, 20 Oct 2016 13:41:28 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2239638#post2239638</guid>
        </item>
                <item>
          <title>Header Bar Separator Issue</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2239632#post2239632</link>
          <description><![CDATA[<p>Thanks Dave,</p>
<p>That made all the difference!</p>
<p>Works perfectly and made it much easier.</p>
<p>Any chance that showing the contents of html separators in the field list is as simple a fix?</p>
<p>Jerry Kornbluth</p>]]></description>
          <pubDate>Wed, 19 Oct 2016 16:06:21 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2239632#post2239632</guid>
        </item>
                <item>
          <title>Header Bar Separator Issue</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2239628#post2239628</link>
          <description><![CDATA[<p>Hi Jerry, </p>
<p>Can you try this patch (we'll have this in the next release):</p>
<p>In /lib/admin_functions.php search for "to display even" and replace this line:</p>
<p><code>$attrs['label'] = $attrs['label'] !== "" ? htmlencode($attrs['label']): '&amp;nbsp;'; // default to &amp;nbsp; to display even with empty string</code></p>
<p>With this line:</p>
<p><code>$attrs['label'] = $attrs['label'] !== "" ? $attrs['label'] : '&amp;nbsp;'; // default to &amp;nbsp; to display even with empty string</code></p>
<p>Let me know if that works for you.</p>]]></description>
          <pubDate>Wed, 19 Oct 2016 14:40:38 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2239628#post2239628</guid>
        </item>
                <item>
          <title>Header Bar Separator Issue</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2239594#post2239594</link>
          <description><![CDATA[<p>Much appreciated,</p>
<p>Jerry</p>]]></description>
          <pubDate>Tue, 11 Oct 2016 11:05:51 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2239594#post2239594</guid>
        </item>
                <item>
          <title>Header Bar Separator Issue</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2239593#post2239593</link>
          <description><![CDATA[<p>Hi Jerry,</p>
<p>Thanks for your inputs, I will discuss it with our senior programmer.</p>
<p>Regards,</p>]]></description>
          <pubDate>Tue, 11 Oct 2016 10:22:54 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2239593#post2239593</guid>
        </item>
                <item>
          <title>Header Bar Separator Issue</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2239587#post2239587</link>
          <description><![CDATA[<p>Hi Daryl,</p>
<p>Thanks for looking at this.<br /><br />It does work, however there are a few serious issues with going this route.<br /><br />1) I and many other developers have multiple sites with many header bars that have been styled.</p>
<p>2) It would be a great deal of work to find and then to restyle all existing header bars.</p>
<p>3) the html separator has never, and does not now display its contents in the section editor. Instead it only displays ---html -- and separator #, which makes them not as useful as they might be.</p>
<p>Based on the above, it would really be beneficial if header bar styling worked as it did prior to V 3.0</p>
<p>Best,</p>
<p>Jerry Kornbluth</p>]]></description>
          <pubDate>Thu, 06 Oct 2016 15:38:09 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2239587#post2239587</guid>
        </item>
                <item>
          <title>Header Bar Separator Issue</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2239586#post2239586</link>
          <description><![CDATA[<p>Hi Jerry,</p>
<p>Can you please try using the HTML separator instead of the header bar and add the following HTML:</p>
<p><code>&lt;div class="separator "&gt;&lt;div&gt;&lt;font color="red"&gt;&lt;b&gt;SHOW IN CURRENT NEWSLETTER OR ON WEB SITE&lt;/b&gt;&lt;/font&gt;&lt;/div&gt;&lt;/div&gt;</code></p>
<p>And please let me know if that works for you.</p>
<p>Thanks,</p>]]></description>
          <pubDate>Thu, 06 Oct 2016 14:40:25 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2239586#post2239586</guid>
        </item>
                <item>
          <title>Header Bar Separator Issue</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2239575#post2239575</link>
          <description><![CDATA[<p>Hi All,<br /><br />In recent versions of CMSB, I’ve noticed that Header Bar separators that have formatting code in them like:<br /><br /></p>
<p><code>&lt;font color="red"&gt;&lt;b&gt;SHOW IN CURRENT NEWSLETTER OR ON WEB SITE&lt;/b&gt;&lt;/font&gt;</code></p>
<p><br />show up correctly as <span style="color:#ff0000;">Red</span> and <strong>Bold</strong> text in the section editor, but when I go to a record in the section, I see the complete code and text without the formatting.  <br /><br />Any suggestions?<br /><br />Thanks,<br /><br />Jerry Kornbluth</p>]]></description>
          <pubDate>Wed, 28 Sep 2016 10:46:51 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2239575#post2239575</guid>
        </item>
              </channel>
    </rss>
  