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
Mathew Andresen 5Mathew Andresen 5 

pdf as landscape

I am trying to get my visualforce pdf page to open in landscape but having some problems.  I have the following
 
<apex:page standardController="Opportunity" showHeader="false"  extensions="savePDF" renderAs="pdf">
<head>
    <style type="text/css">
@page {
    size: landscape;
}
</style>
    </head>
   
 <apex:form >

But still no luck.  Any ideas?