I'm trying to add a smaller version of my site logo to Bootstrap's affixed nav bar when the user scrolls.
Here is my site.
This is what I've been working on so far... I've tried adding to the the nav.affix with the smaller logo but it hasn't worked. Am I on the right path?
#nav.affix {
position: fixed;
top: 0;
width: 100%;
z-index:10;
background: rgb(255, 255, 255) transparent;
background: rgba(255, 255, 255, 0.8);
}
#nav #nav-img {
background-image:url(http://static.tumblr.com/bw1wxme/rOYn2c6na/logo-small.jpg);
}
#nav.affix #nav-img {
display:inline-block;
}
#sidebar.affix-top {
position: static;
}
#sidebar.affix {
position: fixed;
top: 180px;
}
Here is JSfiddle