My website is:
Summary
I used this following code to make the navbar transparent, and then it turns white when i scroll -
CSS
.x-navbar {
background-color: transparent;
transition: background .5s ease-in-out;
}
.x-navbar.x-navbar-fixed-top {
background-color: rgba(2555,255,255, 0.90);
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 3px 10px 0 rgba(0, 0, 0, 0.19);
}
JS
jQuery(document).ready(function($) {
$(window).scroll(function() {
if ($(this).scrollTop() <= 0) {
$('.x-navbar').removeClass('x-navbar-fixed-top');
}
});
});
A few things:
- When the navbar color comes in, i’d also like to change the color of the links
- Is it possible to get rid of the little lines between each link? Also, if you hover over ‘Party Plus’ the dropdown is not below - how would i fix this?
Thanks!


