Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #276102

    Any way to add color separation in a page?
    If you look here yo can see part of the page is one color, while the other part of the page is a different color:

    http://my.jetscreenshot.com/16750/20140607-xxdo-29kb

    Thank you,
    Lin

    #276116

    Hey Lin!

    Have you tried using a Color Section element? you can set a custom background color there.

    Cheers!
    Josue

    #276132

    Yes, it didn’t meet my needs. Any way to do the above mentioned?

    Thank you!

    #276135

    Can you post a screenshot/mockup of what would you want to achieve (on your website)?

    Best regards,
    Josue

    #276137

    Sure, although it will take some time. It may take a few weeks actually as I’m awaiting some content. In the meantime, I can refer you to a site that I’d like to replicate re: the different colors at different places on the page:

    https://www.23andme.com/

    Thanks for taking the time :)

    #276139

    You should be able to do that with the Color Section element, could you explain why exactly didn’t meet your needs?

    Cheers!
    Josue

    #276145

    I didn’t realize you could extend the color part until now :)

    Thanks!!

    #276146

    Anyways to add this over lapping bit:

    http://www.jetScreenshot.com/demo/20140607-80e-6kb.jpg

    #276150

    That’s possible, you’d need to set an ID to that color section and then use CSS to create the arrow, something like this will do the trick (Quick CSS):

    #colorsection:after {
        content: "";
        width: 0; 
        height: 0; 
        border-style: solid; 
        border-width: 50px 50px 0 50px; 
        border-color: #b2b2b2 transparent transparent transparent;
        position: absolute;
        display: block;
        z-index: 10;
        right: 5%;
    }

    Adjust as needed (border-width, border-color, right, etc).

    Best regards,
    Josue

    #637149

    You can close this :)

Viewing 10 posts - 1 through 10 (of 10 total)
  • The topic ‘Any way to add color separation in a page?’ is closed to new replies.