Okay
  Print

How do I create a Full width background image without parallax effect

Here are the steps to build a full width page-section without parallax effect

- create the page-section and get the section id. The section is is usually the last part of the page permalink as showed in theme options. You can also inspect the page source and you will see

- set it as default section, make page container full width in page options

- in theme options -> styling options -> custom css add

section#section-id-here{
    background-image:url(URL path of the background image);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}