• enf

    (@enf)


    hello!

    trying to change the background of the BottomButton Ribbon to image… fail..
    need it to be 100% and responsive (fit scaled) for the mobile devices…

Viewing 6 replies - 1 through 6 (of 6 total)
  • mrtom414

    (@mrtom414)

    What is the url for your site?

    Thread Starter enf

    (@enf)

    mrtom414

    (@mrtom414)

    are you talking about the footer ?

    footer#footer {
        background: url(image);
    }

    mrtom414

    (@mrtom414)

    footer#footer {
        background: url(image);
        background-size:cover;
    }
    Thread Starter enf

    (@enf)

    no, about the BottomButton Ribbon area
    now there is the background image with button
    but i cant make it fit (resize) the mobile version…

    mrtom414

    (@mrtom414)

    this appears in several media queries

    @media (max-width: 767px)
    .copyright {
    width: 100%;
    padding-top: 33px;
    padding-bottom: 33px;
    }
    @media (max-width: 992px)
    .copyright {
    width: 50%;
    padding-top: 33px;
    padding-bottom: 33px;
    }
    .copyright {
    padding-top: 68px;
    padding-bottom: 68px;
    background: #171717;
    }

    you would have to adjust the width for each of them to your desired width

Viewing 6 replies - 1 through 6 (of 6 total)

The topic ‘BottomButton Ribbon image background’ is closed to new replies.