Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #754623

    Hi,
    I’m messing around with an idea that I wonder if it’s possible.

    You can see from the attached link that I’ve sort of started it, but I want the top of the image to be included somehow.
    Is this possible, I’ve tried making the colour transparent, I wondered if it was possible to make a diagonal top border or something.

    As always, help appreciated.

    Cheers!

    #756426

    I guess you guys are busy fighting fires with the new update. No rush, whenever you have time I’d like to know if this is possible. Cheers.

    #757044

    Hi,

    Sorry for the late reply and thanks for your understanding :)
    You can edit your color section element on top of your image and give it a unique ID – http://kriesi.at/documentation/enfold/wp-content/uploads/sites/2/2013/12/color-section-ID.png and then add following code to Quick CSS

    #your-unique-id {
        -ms-transform: rotate(-2deg);
        -webkit-transform: rotate(-2deg);
        transform: rotate(-2deg);
        top: 24px;
        position: relative;
    }

    You might need to adjust the values :)

    Best regards,
    Yigit

    #757152

    Thanks very much Yigit.
    I’ve done that on the attached link, it just needs that to be a bit wider. You can see on the link that there’s a wedge of image showing through on the left side.
    Any ideas?

    Cheers
    John

    #757238

    Hi,

    Please change your code to following one

    .diag {
        -ms-transform: rotate(-5deg);
        -webkit-transform: rotate(-5deg);
        border-left: 45px solid #ffdd00;
        transform: rotate(-5deg);
        top: 80px;
        position: relative;
        width: 102%;
        left: -2%;
    }

    Best regards,
    Yigit

Viewing 5 posts - 1 through 5 (of 5 total)
  • You must be logged in to reply to this topic.