Hi!
How can I separate the Top Bar & the header from the rest of the page, to have a fixed top-bar and header, so it doesn’t move along when scrolled?
Like this 😉

This is some custom-css I tried, but it doesn’t work quite well. 🙁
#header-menu-wrap {
margin-top: 249px !important;
width: 960px;
position: fixed !important;
}
#container {
margin-top: 50px;
}
#top-bar {
margin-top: 1px;
height: 54px;
width: 960px;
position: fixed !important;
}
#header {
margin-top: 50px;
height: 198px;
width: 960px;
position: fixed !important;
overflow: hidden;
}
Any advice or is this to complicated to do?