<?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: Enterprise Guide Style Manager Boarder Thickness or Maybe padding. in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/Enterprise-Guide-Style-Manager-Boarder-Thickness-or-Maybe/m-p/572726#M12365</link>
    <description />
    <pubDate>Thu, 11 Jul 2019 13:24:47 GMT</pubDate>
    <dc:creator>DavidPhillips2</dc:creator>
    <dc:date>2019-07-11T13:24:47Z</dc:date>
    <item>
      <title>Enterprise Guide Style Manager Boarder Thickness or Maybe padding.</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Enterprise-Guide-Style-Manager-Boarder-Thickness-or-Maybe/m-p/572725#M12364</link>
      <description>&lt;P&gt;Which option in Enterprise Guide Style manager or .css controls the width of the black boarder.&amp;nbsp; See image how the header and boarder overlap.&amp;nbsp; The display is good on the screen but in ODS pdf it looks odd.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jul 2019 13:23:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Enterprise-Guide-Style-Manager-Boarder-Thickness-or-Maybe/m-p/572725#M12364</guid>
      <dc:creator>DavidPhillips2</dc:creator>
      <dc:date>2019-07-11T13:23:53Z</dc:date>
    </item>
    <item>
      <title>Re: Enterprise Guide Style Manager Boarder Thickness or Maybe padding.</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Enterprise-Guide-Style-Manager-Boarder-Thickness-or-Maybe/m-p/572726#M12365</link>
      <description />
      <pubDate>Thu, 11 Jul 2019 13:24:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Enterprise-Guide-Style-Manager-Boarder-Thickness-or-Maybe/m-p/572726#M12365</guid>
      <dc:creator>DavidPhillips2</dc:creator>
      <dc:date>2019-07-11T13:24:47Z</dc:date>
    </item>
    <item>
      <title>Re: Enterprise Guide Style Manager Boarder Thickness or Maybe padding.</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Enterprise-Guide-Style-Manager-Boarder-Thickness-or-Maybe/m-p/572918#M12386</link>
      <description>&lt;P&gt;Hi:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; I couldn't tell whether that was RTF output or PDF output. Consider what happens when I decrease cellpadding in the output, as shown below:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="cellpadding_border.png" style="width: 556px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/30996i5FA066CD4DB81F8B/image-size/large?v=v2&amp;amp;px=999" role="button" title="cellpadding_border.png" alt="cellpadding_border.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As you can see, some of the letters "touch" the edge of the cell border. This is especially obvious when I go from 1px to 0 in the last 2 examples.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here's the code I used:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods pdf file='c:\temp\testborder.pdf' startpage=no;

proc report data=sashelp.class (obs=1)
     style(report)={borderwidth=5px bordercolor=black}
     style(header)={background=peachpuff color=black};
	 compute before _page_;
	   line 'borderwidth=5px cellpadding=default';
	 endcomp;
run;

proc report data=sashelp.class (obs=1)
     style(report)={borderwidth=2px bordercolor=black}
     style(header)={background=peachpuff color=black};
	 compute before _page_;
	   line 'borderwidth=2px cellpadding=default';
	 endcomp;
run;

proc report data=sashelp.class (obs=1)
     style(report)={borderwidth=2px bordercolor=black cellpadding=1px}
     style(header)={background=peachpuff color=black};
	 compute before _page_;
	   line 'borderwidth=2px cellpadding=1px';
	 endcomp;
run;

proc report data=sashelp.class (obs=1)
     style(report)={borderwidth=2px bordercolor=black cellpadding=0}
     style(header)={background=peachpuff color=black};
	 compute before _page_;
	   line 'borderwidth=2px cellpadding=0';
	 endcomp;
run;
ods pdf close; 

&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Depending on the CSS you're starting from or the style template you're starting from, (and you should be starting from a template designed to work with PDF -- like PDF or PEARL), then you'll find multiple places in the CSS file where border-xxx is specified. Typically, the tabular output is controlled by the OUTPUT or TABLE class selectors in a CSS file and the OUTPUT or TABLE style elements in a style template.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cynthia&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jul 2019 19:49:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Enterprise-Guide-Style-Manager-Boarder-Thickness-or-Maybe/m-p/572918#M12386</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2019-07-11T19:49:29Z</dc:date>
    </item>
  </channel>
</rss>

