How can I get a sticky infobar? position: absolute is not working as expected (bar not 100% width, not enough space to the content).
Okay, done 🙂
.info-bar { background-color: #555; color: #999; padding-bottom: 6px !important; position: fixed; width: 1038px; z-index: 1000; } .hgroup-wrap { padding-top: 35px !important; }
Hi Mirko,
It’s better to put width: 100%; instead of width: 1038px;
width: 100%;
width: 1038px;
Thank you!