Column Layers

Is it possible to change which column layers over the other? I'm trying to make a design similar to this but I can't get the purple box to lay over the image to the right.


Best Answer

  • Aj_Cre8
    Aj_Cre8 Member Posts: 630 MVP
    Answer ✓

    You can use z-index in the CSS.

    Edit the HTML/CSS of the left column.

    Click on CSS and add

    z-index: 2 !important;

    Then do the same for the right column but make it

    z-index: 1 !important;

Answers