Hi William,
Please follow the Debugging Information step here https://metabox.io/support/topic/how-to-create-a-new-topic/ to troubleshoot the issue.
If it still does not work, please share the code that creates the fields. I will help you to check the issue.
Hi,
The theme uses the original dimension of the image and it displays on the left of the screen when your screen larger than the image.
This custom CSS code will help you to fix this problem
.home .frontpage-banner > img {
width: 100%
}
Regards.
Hi,
Please remove your custom CSS code
body.custom-background {
border: 20px solid #fff;
background-attachment: scroll !important;
}
and add this custom CSS code to make the homepage fullwidth
.home .main-wrapper > .container {
padding-left: 0;
padding-right: 0;
}
Let me know how it goes.
-
This reply was modified 6 years, 3 months ago by Long Nguyen.