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
Wheaton003Wheaton003 

Displaying Identicaly Sized Columns - New to Visualforce!

I'm having trouble forcing these 2 pageBlocks to be the same size. Any suggestions?

I would like 'My Chatter' to take up 50% of the page and 'Whose following who?' to take 50% as well.

 

RAJU_DEEPRAJU_DEEP

Hello,

                      It might be a silly question to ask but i m facing problem when posting any query in the force.com Discussion Boards i unable to stamp the images. In tried many time but i unable, can u tell me the procedure to stamp the images.

I dont know from where it takes images, in the browse field i gave the path of the image located in my system but it doesn't shows....

 

Thanks in advance...

JoeyDJoeyD

I would try throwing: style="width:50%;" into one of your tags.... I'm pretty new to VF too, so I'm not sure which tags support the style attribute. Just a thought!

GaneshDGaneshD

Even I'm not sure with style sheet. But you can achieve 2 columns with exact width using HTML code something like below :

 

 

<table
    <tr>
        <td width="50%">Add Visual Force Panel Code here!</td>
        <td width="50%">Add Visual Force Panel Code here!</td>
    </tr>
    <tr>
        <td width="50%">Add Visual Force Panel Code here!</td>
        </td width="50%">Add Visual Force Panel Code here!</td>
    </tr>
</table>