• Stéphanie Park
  • NEWBIE
  • 25 Points
  • Member since 2010

  • Chatter
    Feed
  • 0
    Best Answers
  • 2
    Likes Received
  • 0
    Likes Given
  • 4
    Questions
  • 3
    Replies
We have a VisualForce page that needs to be displayed on our website through an iframe. The problem is that both Mozilla and Chrome are displaying error message, saying that the connection is not secured. 

"Your connection is not secure
The owner of xyz.force.com has configured their website improperly. To protect your information from being stolen, Firefox has not connected to this website."

I checked the configuration of our site in Salesforce. It looks like HTTPS is enabled. We have a self-signed certificate, but that's it. 

We're using Salesforce Classic and for the moment there's no project to use tools like Canvas or Lightning out...  
Any suggestions? 
Thanks.  
We have a VF page on our website that contains the following forms. We'd like to include the labels inside each field instead of having them above. Any solution? 
 
<apex:form id="mainForm">
       <apex:pageBlock >
       <apex:messages /><br/>
       {!$Label.FirstName}<br/>
       <apex:inputField value="{!lead.FirstName}" label="First Name" style="width:40%"/><br/>
       {!$Label.LastName}<br/>
       <apex:inputField value="{!lead.LastName}" required="false" style="width:40%"/><br/>
       {!$Label.Email} <br/>
       <apex:inputText value="{!lead.Private_Email__c}" style="width:40%"/>   <br/> 
      <apex:commandButton value="{!$Label.ConfirmRegistration}" action="{!confirmRegistration}"/><br/>

 
Hello,
I am a Salesforce admin with no development knowledge.

I would need some help with the following:

I am trying to update a multipicklist on lead/contact object after they become members of a campaign (of a certain record type). The campaign has a multipicklist with certains values and I want to add these values to the multipicklist of the lead/contact without deleting the values that were already stored in the field previously.

I'm not sure if that's clear... Any help would be greatly appreciated.
Many thanks.