Embedding the Help Center will automatically give you a fixed width and background color which you can customize through these codes.
Change the width
Copy the following code in your Shopify theme.liquid file.
<style>
div[data-gorgias-help-center-uid] {
width: 1200px;
}
</style>Instead of 1200, enter the value that suits your design.
Change the background color
Navigate to Settings -> Channels -> Help Center -> Customization and copy the following code in your Extra HTML section.
<style>
.ghc-main-wrapper {
background-color: transparent !important;
}
</style>
Remove the page titles
Removing the header of the page can be easily done in your Shopify store by going to Online Store -> Theme -> Edit code, finding Asset, and going to the /base.css file. There paste the code below.
.main-page-title {
display: none !important;
}