Loading...
「ツール」は右上に移動しました。
利用したサーバー: wtserver1
18いいね 1,155 views回再生

Bricks Builder - Create a transparent overlay header with ACSS and Frames

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%);
}

コメント