Okay
  Public Ticket #1501624
Full width image
Closed

Comments

  • misterkofa started the conversation

    I'm having a hard time figuring out how to make images on each page span the full width (see attached reference).

  •  516
    Nikita replied

    Hi.

    You can make it with custom CSS. This one should work:

    .nk-main .kc_single_image img {
        margin-left: -100px;
        margin-right: -100px;
        width: calc(100% + 200px);
        max-width: calc(100% + 200px);
    }
    @media (max-width: 991px) {
        .nk-main .kc_single_image img {
            margin-left: -50px;
            margin-right: -50px;
            width: calc(100% + 100px);
            max-width: calc(100% + 100px);
        }
    }