Make top bar fixed

it is possible to, when scrolling through the first page, have the phone number and email address remain visible?

Hello @VelocityWeb,

Thanks for asking. :slight_smile:

You can add following CSS under Pro > Theme Options > CSS:

.x-topbar {
    position: fixed;
    z-index: 99999;
    left: 0;
    right: 0;
    top: 0;
}
.x-navbar-wrap {
    margin-top: 52px; /*Height of the top bar. Adjust accordingly*/
}

1- I have found the proper CSS code selector using the Chrome browser Developer Toolbar: https://www.youtube.com/watch?v=wcFnnxfA70g

2- For the CSS code itself, I suggest that you get started with this tutorial: https://www.youtube.com/watch?v=yfoY53QXEnI

Thanks.

Thanks - So far it works great!

On behalf of my colleague, youโ€™re welcome. Cheers! :slight_smile:

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.