You need to sign in to do that
Don't have an account?

Position of VF page in SF1
Hello!
Is it possible to align text in the middle of VF page frame in SF1? If my frame is to narrow i get result like on the screen (green stripe)
Is it possible to align it on top of the frame?

Is it possible to align text in the middle of VF page frame in SF1? If my frame is to narrow i get result like on the screen (green stripe)
Is it possible to align it on top of the frame?
<apex:page standardController="CTPHARMA__Activity__c" id="page" docType="html-5.0"> <style> .good{ text-align:center; background-color: MediumSeaGreen; font-weight: bold; color: white; } .bad{ text-align:center; background-color: Tomato; font-weight: bold; color: white; } .ugly{ text-align:center; background-color: LightGray; } </style> <apex:form styleClass="{!if(CTPHARMA__Activity__c.SF1_Status__c == 'Подтвержден территориально','good',if(CTPHARMA__Activity__c.SF1_Status__c == 'Не подтвержден территориально','bad','ugly'))} "> <apex:outputText value="{!CTPHARMA__Activity__c.SF1_Status__c}" /> </apex:form> </apex:page>