A quick video on how to create a static transparent overlay header in Bricks using ACSS and Frames.
ACSS is really handy to adjust for the offset needed for overlay headers.
One thing I forgot to mention - The header needs to be centered with CSS as well. Here is the code that you can copy and paste in:
/* Create transparent header and position at top, centered */
%root%{
position: absolute;
top: 0;
z-index: 10;
left: 50%;
transform: translateX(-50%);
}
コメント