# Positioning As of version 2.2.0, the Meeting SDK for web component view has positioning capabilities. Each component can be placed in a specific area on your page. You can also disable dragging a component. ## Positioning components In the `client.init()` function's `customize` property, configure positioning and dragging for the components.  For example, if you'd like the video component positioned on the left and the chat component on the right, and dragging disabled for both, use the following approach. ```js let meetingSDKElement = document.getElementById("meetingSDKElement"); let meetingSDKChatElement = document.getElementById("meetingSDKChatElement"); client.init({ zoomAppRoot: meetingSDKElement, language: "en-US", customize: { video: { popper: { disableDraggable: true, }, }, chat: { popper: { disableDraggable: true, anchorElement: meetingSDKChatElement, placement: "top", }, }, }, }); ``` ```html
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.