1
votes

As you can see in the image below, when the InfoPath web part is placed on the SharePoint page (SharePoint 2013), it moves the page content area of the center.

This has happened on multiple pages. I can't seem to find any information about why this is happening.

Any help would be appreciated.

Annotated screenshot

2
Try centering Feebback and suggestions container div using css.Vaibhav

2 Answers

0
votes

Paste this code in a script editor web part. Where it says WPQ2 change the 2 to the number of that webpart. You can find that by using Google Chrome inspect element. Modify the margins css to your liking.

<style type="text/css">
#MSOZoneCell_WebPartWPQ2 { 
margin-left:-200px;
margin-top:-150px; }
</style>
0
votes

This is somehow a bug in SharePoint 2013 (check here). A quick resolution would be to add the following CSS to the page (in a hidden Content Editor WebPart or a Script Editor WebPart):

#sideNavBox { 
    display: none; 
}