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
Rakesh SRakesh S 

place some fields right side of the page

Hi All,

i am creating a input VF page in which i want to place some fields right side of the page. how can i acheave this problem?
i tried many ways but not properly getting.

like this, User-added image

Thank you
Rakesh.
Ajay K DubediAjay K Dubedi
 Hey Rakesh,
         You should try the style property "float:right" and for further help see this sample code this is for buttons alignment  :
          
<apex:page showHeader="false" controller="Sample" >
 <apex:form >
    <apex:panelGrid columns="1" style="float:right;">
        <apex:commandButton value="One"/>
        <apex:commandButton value="Two"/>
        <apex:commandButton value="Three"/>
        <apex:commandButton value="Four"/>
        <apex:commandButton value="Five"/>
    </apex:panelGrid>
</apex:form>     
</apex:page>


And let me know if it helps.
Rakesh SRakesh S
Hi All,
this code is working. i used it.
<br></br>
             <apex:pageblocksectionItem >
                  <apex:outputPanel id="op1" style="float:right;">
                          <apex:outputLabel value="Port Level5" for="pl5"/>
                  </apex:outputPanel> 
                  <apex:outputPanel id="ip1">  
                           <apex:inputField value="{!Product_Selection__c.Port_Level5__c}" id="pl5"/>
                  </apex:outputPanel>
           </apex:pageblocksectionItem>

Note: if it works for you then please mark as best answer. it may help others.


Thank you.
Rakesh.