Viewing 1 replies (of 1 total)
  • Hi @kamilanr,

    The large custom header you’ve added acts as a background, and also adapts based on the size of the screen it’s being viewed on. Images that will work best in the custom header are more flexible, decorative or abstract, that can handle this sort of cropping.

    The CSS that’s currently defining the way that the background image is positioned is as follows:

    section.adamrob_parallax {
        background-position: 50% 0%;
        background-repeat: no-repeat;
        background-attachment: fixed;
        background-size: cover;
        background-size: 500px;
    }

    If you’d like, you could experiment with different values for each of those CSS properties. You can find more information on background sizing with CSS, including the arguments for using background-size: cover; here:

    https://davidwalsh.name/background-size

    Let me know if extra questions come up.

Viewing 1 replies (of 1 total)

The topic ‘Fullwidth Images (portfolio)’ is closed to new replies.