This is what is showing in your page source for Custom CSS:
.navbar .navbar-inner {
-webkit-box-shadow: 0px 0px 0px;
-moz-box-shadow: 0px 0px 0px;
box-shadow: 0px 0px 0px;
background:none
}
.navbar .nav {
display: block;
float: right;
left: 0;
margin: 0 10px 0 0;
position: relative;
}
/*make the menu sub-menu items drop down on mouse hover */
ul.nav li.dropdown:hover > ul.dropdown-menu{
display: block;
margin: 0;
}
.page .entry-title {
display: none;
}
/* Adjust colors as needed */
.footer-widgets {
background: none repeat scroll 0 0 #83C0E5;
color: #5A5A5A !important;
padding-top: 0px ;
}
ustomCSS or style.cssCSS
1
2
3
4
5
6
}
/* Make Carousel fade - adapt 2s to required delay */
.carousel-inner > .item {
-webkit-transition: opacity 7s ease-in-out ;
transition: opacity 7s ease-in-out ;
}
.carousel-inner > .next.left,
.carousel-inner > .prev.right {
opacity: 1;
z-index: 1;
left: 0;
}
.carousel-inner > .active.left {
opacity: 0;
z-index: 2;
left: 0;
}
.carousel-inner > .active.right {
opacity: 0;
z-index: 2;
left: 0;
}
/* remove previous/next arrows from home page only */
.home .carousel-control {
display: none ;
}
This:
ustomCSS or style.cssCSS
1
2
3
4
5
6
}
at a guess, looks like either a cut and paste error or some sort of plugin conflict.