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
ThomasmThomasm 

mutliple static resources

I have a page the pulls in to static resouces one is an html head and the other is a pdf.  Both are showing up but there is a huge gap inbetween them.

Please look at what i have and make a suggestions

 

<apex:page sidebar="false" showheader="false">
<apex:form >

<apex:iframe src="{!URLFOR($Resource.KCLoudonMenu)}"/>
<br/>
<apex:iframe src="{!URLFOR($Resource.mypdfpage)}"/>
 
  </apex:form>
</apex:page>

Sonam_SFDCSonam_SFDC
Did you try altering the height of the iframe using the apex:iframe height attribute?

Check if the space between them is because of the <br/> or the iframe height..