DigitalRefresh
8/8/2018 - 3:32 PM

Bellows Accordion Menu Custom Theme #plugin #css

Bellows Accordion Menu Source: sevenspark.com/docs/bellows/customize/custom-stylesheet

/* Skin */
.bellows.bellows-skin-fh-skin {
  background: none;
  box-shadow: none;
}
.bellows.bellows-skin-fh-skin .bellows-nav .bellows-target,
.bellows.bellows-skin-fh-skin .bellows-nav .bellows-custom-content {
  color: #363636;
  font-weight: 600;
}
.bellows.bellows-skin-fh-skin .bellows-nav .bellows-item-level-0 > .bellows-target,
.bellows.bellows-skin-fh-skin .bellows-nav .bellows-item-level-0 > .bellows-custom-content {
  border-bottom: none;
}
.bellows.bellows-skin-fh-skin .bellows-nav .bellows-item-level-0.bellows-has-custom-content > .bellows-target {
  border-bottom: none;
}
.bellows.bellows-skin-fh-skin .bellows-nav .bellows-item-level-0 > .bellows-target:hover {
  background: none;
  color: #60bb46;
}
.bellows.bellows-skin-fh-skin .bellows-nav .bellows-item-level-0.bellows-active > .bellows-target {
  background: none;
}
.bellows.bellows-skin-fh-skin .bellows-nav .bellows-item-level-0.bellows-current-menu-item > .bellows-target,
.bellows.bellows-skin-fh-skin .bellows-nav .bellows-item-level-0.bellows-current-menu-ancestor > .bellows-target {
  background: none;
  color: #60bb46;
}
.bellows.bellows-skin-fh-skin .bellows-nav .bellows-item-level-0 > .bellows-target .bellows-subtoggle {
  background: none;
  visibility: hidden;
}
.bellows.bellows-skin-fh-skin .bellows-nav .bellows-submenu {
  background: #fff;
}
.bellows.bellows-skin-fh-skin .bellows-nav .bellows-submenu .bellows-target,
.bellows.bellows-skin-fh-skin .bellows-nav .bellows-submenu .bellows-custom-content,
.bellows.bellows-skin-fh-skin .bellows-nav .bellows-submenu .bellows-widget .textwidget {
  padding:10px 0px 10px 25px;
  color: #666666;
}
.bellows.bellows-skin-fh-skin .bellows-nav .bellows-submenu .bellows-has-custom-content > .bellows-target {
  border-bottom: none;
}
.bellows.bellows-skin-fh-skin .bellows-nav .bellows-submenu .bellows-target:hover {
  background: none;
  color: #60bb46;
}
.bellows.bellows-skin-fh-skin .bellows-nav .bellows-submenu .bellows-current-menu-item > .bellows-target,
.bellows.bellows-skin-fh-skin .bellows-nav .bellows-submenu .bellows-current-menu-ancestor > .bellows-target {
  background: none;
  color: #60bb46;
}

.bellows .bellows-nav .bellows-custom-content.bellows-custom-content-padded, 
.bellows .bellows-nav .bellows-target, 
.bellows .bellows-nav .bellows-target.bellows-target-w-image>.bellows-image.bellows-image-padded, 
.bellows .bellows-nav .bellows-target.bellows-target-w-image>.bellows-target-text{
   padding: 10px 0px 10px 0px;
}
function custom_bellows_style() {
\!h    $stylesheet_url = get_stylesheet_directory_uri() . '__/css/bellows-custom.css__'; // Make sure this matches your stylesheet's URL
    wp_enqueue_style( 'custom-bellows-css', $stylesheet_url, array( 'bellows' ), '1.0' );
}
add_action( 'wp_enqueue_scripts', 'custom_bellows_style' );