• ranjan 007
  • NEWBIE
  • 5 Points
  • Member since 2015

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 0
    Questions
  • 2
    Replies
Hi,

Wanted to know if we will have to create the users again after migration .

Regards,
Pallavi
  • August 04, 2016
  • Like
  • 0
Hi, I am new to visualforce development and have been trying to align a text field and button together. My visualforce pge looks like:
<apex:page showHeader="false" standardController="Account">
<apex:form >
    <apex:pageBlock>
        <apex:pageBlockSection >
            <apex:InputText label="Account Name" value="{!Account.Name}"/>
            <apex:commandButton id="Update" value="Update" action="{!Save}"/>
        </apex:pageBlockSection>
    </apex:pageBlock>
</apex:form>
</apex:page>
Its showing the fields way apart:
This is how my page is showing

I am need to align these together in the center, something like below snapshot:
User-added image
Any help will be really appreciated.