function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
SL TanSL Tan 

Print Anything - Font Size Question


I have a question regarding Print Anything. How do we change the font size for the reports generated from Print Anything Templates? This may be a very basic question but I don't seem to be able to resolve this successfully.
We are using the following coding for the stylesheet
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<link href="/dCSS/Theme2/default/common.css" type="text/css"
media="handheld,print,projection,screen,tty,tv" rel="stylesheet" >
<link href="/dCSS/Theme2/default/custom.css" type="text/css"
media="handheld,print,projection,screen,tty,tv" rel="stylesheet" >
<style type="text/css" media="print">

@page port {size: portrait;}
@page land {size: landscape;}
.portrait {page: port;}

.landscape {page: land;} 

 Any pointers will be highly appreciated
Thanks in advance
SL