<?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: SAS Studio on MidTier, howto use custom css in SAS Studio</title>
    <link>https://communities.sas.com/t5/SAS-Studio/SAS-Studio-on-MidTier-howto-use-custom-css/m-p/342778#M2168</link>
    <description>&lt;P&gt;_webout is for stored process&lt;/P&gt;
&lt;P&gt;_htmlout is for results windows when using SAS Studio&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods html5(WEB) file=_HTMLOUT stylesheet=(URL="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.98.0/css/materialize.min.css");
proc print data=sashelp.class style={class="striped"};
id name / style={fontfamily="Roboto" fontsize=16};
var sex age height weight;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Mon, 20 Mar 2017 22:24:59 GMT</pubDate>
    <dc:creator>FriedEgg</dc:creator>
    <dc:date>2017-03-20T22:24:59Z</dc:date>
    <item>
      <title>SAS Studio on MidTier, howto use custom css</title>
      <link>https://communities.sas.com/t5/SAS-Studio/SAS-Studio-on-MidTier-howto-use-custom-css/m-p/342692#M2166</link>
      <description>&lt;P&gt;In a stored process using a custom style is not to difficult:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods html5 body=_webout(no_bottom_matter url=&amp;amp;_replay title= "yet another title") path=&amp;amp;_tmpcat cssStyle="path-to-css-file";&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;This does not work in SAS Studio, research lead me to &lt;A href="http://support.sas.com/documentation/cdl/en/webeditorug/68828/HTML/default/viewer.htm#n0npxqhd54fc7zn1fts08c6oe17z.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/webeditorug/68828/HTML/default/viewer.htm#n0npxqhd54fc7zn1fts08c6oe17z.htm&lt;/A&gt; explaining how to use a custom style. Unfortunately this does not work as expected. Expectation is, that the result tab contains, e.g. proc print, results formated with the information from my css file. The best result I had was an empty result tab and a well formatted html-file in WORK. Acceptable is a download/open link comparable to result tag in Enterprise Guide, when using explicit ods statements.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Any ideas?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Using SAS Studio 3.6&amp;nbsp;@ SAS BI Server.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Mar 2017 17:04:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/SAS-Studio-on-MidTier-howto-use-custom-css/m-p/342692#M2166</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2017-03-20T17:04:28Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Studio on MidTier, howto use custom css</title>
      <link>https://communities.sas.com/t5/SAS-Studio/SAS-Studio-on-MidTier-howto-use-custom-css/m-p/342698#M2167</link>
      <description>&lt;P&gt;Generate a separate output that has the link&amp;nbsp;to the location where you wrote the HMTL file.&lt;/P&gt;
&lt;P&gt;You might need to know how your webservers are configured to know how to coordinate the path used in the SAS code with the path used in the link.&lt;/P&gt;</description>
      <pubDate>Mon, 20 Mar 2017 17:27:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/SAS-Studio-on-MidTier-howto-use-custom-css/m-p/342698#M2167</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2017-03-20T17:27:18Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Studio on MidTier, howto use custom css</title>
      <link>https://communities.sas.com/t5/SAS-Studio/SAS-Studio-on-MidTier-howto-use-custom-css/m-p/342778#M2168</link>
      <description>&lt;P&gt;_webout is for stored process&lt;/P&gt;
&lt;P&gt;_htmlout is for results windows when using SAS Studio&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods html5(WEB) file=_HTMLOUT stylesheet=(URL="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.98.0/css/materialize.min.css");
proc print data=sashelp.class style={class="striped"};
id name / style={fontfamily="Roboto" fontsize=16};
var sex age height weight;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 20 Mar 2017 22:24:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/SAS-Studio-on-MidTier-howto-use-custom-css/m-p/342778#M2168</guid>
      <dc:creator>FriedEgg</dc:creator>
      <dc:date>2017-03-20T22:24:59Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Studio on MidTier, howto use custom css</title>
      <link>https://communities.sas.com/t5/SAS-Studio/SAS-Studio-on-MidTier-howto-use-custom-css/m-p/342979#M2170</link>
      <description>&lt;P&gt;Thanks, wasn't aware of _htmlout &lt;img id="smileyfrustrated" class="emoticon emoticon-smileyfrustrated" src="https://communities.sas.com/i/smilies/16x16_smiley-frustrated.png" alt="Smiley Frustrated" title="Smiley Frustrated" /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Using cssStyle-options works also.&lt;/P&gt;</description>
      <pubDate>Tue, 21 Mar 2017 15:54:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/SAS-Studio-on-MidTier-howto-use-custom-css/m-p/342979#M2170</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2017-03-21T15:54:38Z</dc:date>
    </item>
  </channel>
</rss>

