• Resolved kartus

    (@kartus)


    Hi all,
    i have a strange question.
    My site is https://www.agrohol.com . My background photo is something like cropped when i set it. Is it possible for me to enable scrolling so that if some1 wants to take a look at it just has to spin the wheel. ??
    Best regards.

Viewing 4 replies - 1 through 4 (of 4 total)
  • Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    That’s because your background image is quite large, larger than your browser size.

    You may want to add this CSS;

    body.custom-background {
     background-size: 100%;
     background-position: center;
     background-attachment: scroll;
    }

    Thread Starter kartus

    (@kartus)

    thanks a lot. it wasnt exactly what i needed but it game an other idea :). Do u happen to know how can i make my ahm not sure which word to use… my “white rectangle”shorter? I figured it out how to change the width but not the height.

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    The height isn’t set in a style, it’s instead being created by the content and paddings.
    You can reduce the amount of content or reduce the paddings.
    E.g example of reducing padding;

    #featured {
     padding-bottom: 0;
    }

    Thread Starter kartus

    (@kartus)

    well it didnt help me for the height. but it did help me to remove the widget area. i just added margin-bottom: 0; U helped me for a problem which was bothering me quite for a while . Thanks a lot.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Main page’ is closed to new replies.