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
Hey Lin!
Have you tried using a Color Section element? you can set a custom background color there.
Cheers!
Josue
Yes, it didn’t meet my needs. Any way to do the above mentioned?
Thank you!
Can you post a screenshot/mockup of what would you want to achieve (on your website)?
Best regards,
Josue
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:
Thanks for taking the time :)
You should be able to do that with the Color Section element, could you explain why exactly didn’t meet your needs?
Cheers!
Josue
I didn’t realize you could extend the color part until now :)
Thanks!!
Anyways to add this over lapping bit:
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
You can close this :)