SOLVED: "Edit footer" button has z-index problem

Bricks Version: 1.3.7

I’m unable to click the button for “Edit Footer”. See screencast: Dropbox - cant-edit-footer.mov - Simplify your life

Hi Eric,

The button has a z-index of 997, which is pretty high :grinning: Because of its position (50% outside of its container), it interferes with the :before pseudo-element margin indicator. However, if you hit the lower half of the button (more precisely, stay in the footer container), you can still click it.

I can provide you with a simple fix, so the button always stays inside of its container, and you can click it 100 times out of 100. Place it in Bricks > Settings > Custom CSS:

.bricks-wrapper-label.footer {
  transform: translate(-50%, 0);
}

Best regards,
timmse

Thanks…I don’t need the workaround as I can get the the footer template editing the long way for now, but it should be fixed, especially for other users.