<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Border Box background color not showing when save as HTML in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Border-Box-background-color-not-showing-when-save-as-HTML/m-p/507046#M73672</link>
    <description>&lt;P&gt;Was able to bypass the issue by changing from lineup/border/text boxes to text/col/table boxes combination. Now the colors show when save to html.&lt;/P&gt;&lt;P&gt;Many thanks again.&lt;/P&gt;</description>
    <pubDate>Sun, 12 Jun 2022 12:57:11 GMT</pubDate>
    <dc:creator>RonB</dc:creator>
    <dc:date>2022-06-12T12:57:11Z</dc:date>
    <item>
      <title>Border Box background color not showing when save as HTML</title>
      <link>https://community.jmp.com/t5/Discussions/Border-Box-background-color-not-showing-when-save-as-HTML/m-p/504345#M73628</link>
      <description>&lt;P&gt;The attached sample code creates an output window with border box/text box with background colors. When the output is saved as interactive HTML background colors and font type (bold, size) aren't showing. See attached image.&lt;/P&gt;&lt;P&gt;Many thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="6-9-2022 6-55-39 PM.jpg" style="width: 444px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/43117iD3978547C32CC2ED/image-size/large?v=v2&amp;amp;px=999" role="button" title="6-9-2022 6-55-39 PM.jpg" alt="6-9-2022 6-55-39 PM.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;lu = lineup box(n col(2), spacing( 25 ));
vlb = V List Box(
	Text box("LINE1"),
	Text box("LINE2"),
	Text box("LINE3")
);
bb = Border Box(Sides(30), Left( 20 ), Right( 20 ), Top( 20 ), Bottom( 20 ), &amp;lt;&amp;lt; Set Background Color("RED"), vlb);
lu &amp;lt;&amp;lt; append(bb);
bb = Border Box(Sides(30), Left( 20 ), Right( 20 ), Top( 20 ), Bottom( 20 ), &amp;lt;&amp;lt; Set Background Color("GREEN"), vlb);
lu &amp;lt;&amp;lt; append(bb);
bb = Border Box(Sides(30), Left( 20 ), Right( 20 ), Top( 20 ), Bottom( 20 ), &amp;lt;&amp;lt; Set Background Color("YELLOW"), vlb);
lu &amp;lt;&amp;lt; append(bb);
bb = Border Box(Sides(30), Left( 20 ), Right( 20 ), Top( 20 ), Bottom( 20 ), &amp;lt;&amp;lt; Set Background Color("GRAY"), vlb);
lu &amp;lt;&amp;lt; append(bb);

win = New Window("Example",
	container = v list box();
);
container &amp;lt;&amp;lt; append(lu);&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 11 Jun 2023 11:24:49 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Border-Box-background-color-not-showing-when-save-as-HTML/m-p/504345#M73628</guid>
      <dc:creator>RonB</dc:creator>
      <dc:date>2023-06-11T11:24:49Z</dc:date>
    </item>
    <item>
      <title>Re: Border Box background color not showing when save as HTML</title>
      <link>https://community.jmp.com/t5/Discussions/Border-Box-background-color-not-showing-when-save-as-HTML/m-p/504368#M73629</link>
      <description>&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/2557"&gt;@John_Powell_JMP&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Do you need to be able to select the text? You could possibly save the V List Box as image&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);

lu = Lineup Box(N Col(2), spacing(25));
vlb = V List Box(Text Box("LINE1"), Text Box("LINE2"), Text Box("LINE3"));
bb = Border Box(Sides(30), Left(20), Right(20), Top(20), Bottom(20), &amp;lt;&amp;lt;Set Background Color("RED"), vlb);
lu &amp;lt;&amp;lt; append(bb);
bb = Border Box(Sides(30), Left(20), Right(20), Top(20), Bottom(20), &amp;lt;&amp;lt;Set Background Color("GREEN"), vlb);
lu &amp;lt;&amp;lt; append(bb);
bb = Border Box(Sides(30), Left(20), Right(20), Top(20), Bottom(20), &amp;lt;&amp;lt;Set Background Color("YELLOW"), vlb);
lu &amp;lt;&amp;lt; append(bb);
bb = Border Box(Sides(30), Left(20), Right(20), Top(20), Bottom(20), &amp;lt;&amp;lt;Set Background Color("GRAY"), vlb);
lu &amp;lt;&amp;lt; append(bb);
container = V List Box(lu);

win = New Window("Example", CONTAINER &amp;lt;&amp;lt; Get Picture);

win &amp;lt;&amp;lt; Save Interactive HTML("$temp/DELETEME.html");
Web("$temp/DELETEME.html");&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 09 Jun 2022 16:13:23 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Border-Box-background-color-not-showing-when-save-as-HTML/m-p/504368#M73629</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2022-06-09T16:13:23Z</dc:date>
    </item>
    <item>
      <title>Re: Border Box background color not showing when save as HTML</title>
      <link>https://community.jmp.com/t5/Discussions/Border-Box-background-color-not-showing-when-save-as-HTML/m-p/504677#M73639</link>
      <description>&lt;P&gt;Hi Jarmo and&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/12234"&gt;@RonB&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Thank you for your question.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;BorderBox attributes are not yet supported in Interactive HTML.&lt;/P&gt;
&lt;P&gt;As for the text, In JMP 17 we are going to support customized font size wherever JMP allows it, and in some cases, customized text color, but not font family or font styles.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If these features are important to you please consider adding requests in the &lt;A title="JMP Wish List" href="https://community.jmp.com/t5/JMP-Wish-List/idb-p/jmp-wish-list" target="_blank" rel="noopener"&gt;JMP Wish List&lt;/A&gt; so others can vote on them and we can use the information to prioritize the implementation relative to other items we are considering for future development.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;~John&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jun 2022 21:27:04 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Border-Box-background-color-not-showing-when-save-as-HTML/m-p/504677#M73639</guid>
      <dc:creator>John_Powell_JMP</dc:creator>
      <dc:date>2022-06-09T21:27:04Z</dc:date>
    </item>
    <item>
      <title>Re: Border Box background color not showing when save as HTML</title>
      <link>https://community.jmp.com/t5/Discussions/Border-Box-background-color-not-showing-when-save-as-HTML/m-p/506959#M73669</link>
      <description>&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="6-12-2022 10-34-38 AM.jpg" style="width: 241px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/43182i2BC11A01B20469C1/image-size/large?v=v2&amp;amp;px=999" role="button" title="6-12-2022 10-34-38 AM.jpg" alt="6-12-2022 10-34-38 AM.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Is there an alternative in jmp16 to publish color boxes to html?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Strangely, a text box appended to col box can accept background color which is preserved when published as html. See attached example.&lt;/P&gt;</description>
      <pubDate>Sun, 12 Jun 2022 07:40:51 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Border-Box-background-color-not-showing-when-save-as-HTML/m-p/506959#M73669</guid>
      <dc:creator>RonB</dc:creator>
      <dc:date>2022-06-12T07:40:51Z</dc:date>
    </item>
    <item>
      <title>Re: Border Box background color not showing when save as HTML</title>
      <link>https://community.jmp.com/t5/Discussions/Border-Box-background-color-not-showing-when-save-as-HTML/m-p/507046#M73672</link>
      <description>&lt;P&gt;Was able to bypass the issue by changing from lineup/border/text boxes to text/col/table boxes combination. Now the colors show when save to html.&lt;/P&gt;&lt;P&gt;Many thanks again.&lt;/P&gt;</description>
      <pubDate>Sun, 12 Jun 2022 12:57:11 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Border-Box-background-color-not-showing-when-save-as-HTML/m-p/507046#M73672</guid>
      <dc:creator>RonB</dc:creator>
      <dc:date>2022-06-12T12:57:11Z</dc:date>
    </item>
    <item>
      <title>Re: Border Box background color not showing when save as HTML</title>
      <link>https://community.jmp.com/t5/Discussions/Border-Box-background-color-not-showing-when-save-as-HTML/m-p/507472#M73688</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/12234"&gt;@RonB&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm glad you found a solution.&lt;/P&gt;
&lt;P&gt;Thanks for sharing it.&lt;/P&gt;
&lt;P&gt;~John&lt;/P&gt;</description>
      <pubDate>Mon, 13 Jun 2022 12:38:30 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Border-Box-background-color-not-showing-when-save-as-HTML/m-p/507472#M73688</guid>
      <dc:creator>John_Powell_JMP</dc:creator>
      <dc:date>2022-06-13T12:38:30Z</dc:date>
    </item>
  </channel>
</rss>

