Forum Replies Created

Viewing 15 posts - 31 through 45 (of 55 total)
  • Posted in:
  • in reply to: Parallax Issues #144934
    wochurch
    Member
    Post count: 55
    This reply has been marked as private.
    in reply to: Exclude media from search #141547
    wochurch
    Member
    Post count: 55

    So that code will exclude all attachments from showing up in the search results? I think that will solve our problem. Where do I put that code?

    in reply to: Exclude media from search #141192
    wochurch
    Member
    Post count: 55

    If you search “Kari Jobe”, you’ll see the page we have up for her, and you’ll also see an MP3 that we hope we could exclude.

    I think it would be a perfect solution if I could exclude all attachments from showing up. Is that possible? I have a plugin that will exclude pages that I think is working well.

    in reply to: Exclude media from search #141169
    wochurch
    Member
    Post count: 55
    This reply has been marked as private.
    in reply to: Altering Blog Aux Options #141030
    wochurch
    Member
    Post count: 55

    Sorry for the confusion, you answered my question perfectly. Thank you Rui.

    in reply to: Lightbox #137313
    wochurch
    Member
    Post count: 55

    Got it. Thanks guys.

    in reply to: Page Title Background Image #137262
    wochurch
    Member
    Post count: 55

    Kyle, you’re brilliant. That fixed it.

    If you have time, I’d love to understand conceptually how that works. Do the CSS changes inserted through the theme options panel go to the Dante style sheet instead of the Dante Child theme style sheet?

    in reply to: Lightbox #136887
    wochurch
    Member
    Post count: 55

    Thanks Rui. I just deactivated all plugins, and I still get the same behavior.

    in reply to: Page Title Background Image #136653
    wochurch
    Member
    Post count: 55

    Hey Kyle. You did solve this, but I think I’ve managed to break it since then. In my child theme I still have this code:

    /* Stretches all ALT backgrounds to full screen width */
    @media only screen and (min-width: 1200px) { 
    .alt-bg {
      margin-left: -680px !important;
      padding-left: 680px;
      padding-right: 680px;
    }
    }

    Which works perfectly to stretch the alt backgrounds to full width on a large screen. But now they’re not stretching again, and when I inspect the element, I’m seeing a style:

    .alt-bg {
    	margin-left: -410px!important;
    	padding-left: 410px;
            padding-right: 410px;
    	}

    being written into the page itself, overriding the child theme style.css. Any ideas what might be writing this in there?

    This is a little long, but it’s the entire style portion written into each page:

    <style type="text/css">
    @media only screen and (min-width: 1200px) {
    				.header-overlay .header-wrap {
    				margin-left: -485px;
    				max-width: 970px;
    				}
    				#header .is-sticky .sticky-header, .boxed-layout #header-section.header-3 #header .is-sticky .sticky-header, .boxed-layout #header-section.header-4 #header .is-sticky .sticky-header, .boxed-layout #header-section.header-5 #header .is-sticky .sticky-header {
    					max-width: 940px;
    				}
    				nav.mega-menu li .mega .sub, nav.mega-menu li .mega .sub > .row {
    					width: 940px!important;
    				}
    				.container {
    				width: 970px;
    				}
    				.span12 {
    				  width: 940px;
    				}
    				.span11 {
    				  width: 860px;
    				}
    				.span10 {
    				  width: 779px;
    				}
    				.span9 {
    				  width: 698px;
    				}
    				.span8 {
    				  width: 617px;
    				}
    				.span7 {
    				  width: 536px;
    				}
    				.span6 {
    				  width: 455px;
    				}
    				.span5 {
    				  width: 374px;
    				}
    				.span4 {
    				  width: 293px;
    				}
    				.span3 {
    				  width: 212px;
    				}
    				.span2 {
    				  width: 131px;
    				}
    				.span1 {
    				  width: 50px;
    				}
    				.span-third {
    					width: 193px;
    				}
    				.span-twothirds {
    					width: 407px;
    				}
    				.span-bs-quarter {
    					width: 100px;
    				}
    				.span-bs-threequarter {
    					width: 340px;
    				}
    				.alt-bg {
    					margin-left: -410px!important;
    					padding-left: 410px;
    					padding-right: 410px;
    				}
    				
    				/* PRODUCTS */
    				body .has-no-sidebar ul.products li.product {
    					width: 220px;
    					float: left;
    				}
    				body .has-one-sidebar ul.products li.product {
    					width: 140px;
    				}
    				body.woocommerce .has-one-sidebar .upsells.products ul.products li.product, body.woocommerce .has-one-sidebar .related.products ul.products li.product  {
    					width: 139px;
    				}
    				body .has-one-sidebar .products-standard.span8 ul.products li.product {
    					width: 193px;
    				}
    				body .has-both-sidebars ul.products li.product {
    					width: 220px;
    				}
    				body .has-no-sidebar .products-mini ul.products li.product {
    					width: 140px;
    				}
    				body .has-one-sidebar .products-mini ul.products li.product {
    					width: 140px;
    				}
    				body .has-both-sidebars .products-mini ul.products li.product {
    					width: 140px;
    				}
    				body.woocommerce .has-no-sidebar ul.products li.product {
    					width: 220px;
    				}
    				body.woocommerce .has-one-sidebar ul.products li.product {
    					width: 219px;
    				}
    				body.woocommerce .has-both-sidebars ul.products li.product {
    					width: 217px;
    				}
    				}
    				body, p, #commentform label, .contact-form label {font-size: 16px;line-height: 24px;}h1 {font-size: 32px;line-height: 34px;}h2 {font-size: 20px;line-height: 30px;}h3, .blog-item .quote-excerpt {font-size: 18px;line-height: 24px;}h4, .body-content.quote, #respond-wrap h3, #respond h3 {font-size: 16px;line-height: 20px;}h5 {font-size: 14px;line-height: 18px;}h6 {font-size: 12px;line-height: 16px;}nav .menu li {font-size: 16px;}::selection, ::-moz-selection {background-color: #1dc6df; color: #fff;}.recent-post figure, span.highlighted, span.dropcap4, .loved-item:hover .loved-count, .flickr-widget li, .portfolio-grid li, input[type="submit"], .wpcf7 input.wpcf7-submit[type="submit"], .gform_wrapper input[type="submit"], .mymail-form input[type="submit"], .woocommerce-page nav.woocommerce-pagination ul li span.current, .woocommerce nav.woocommerce-pagination ul li span.current, figcaption .product-added, .woocommerce .wc-new-badge, .yith-wcwl-wishlistexistsbrowse a, .yith-wcwl-wishlistaddedbrowse a, .woocommerce .widget_layered_nav ul li.chosen > *, .woocommerce .widget_layered_nav_filters ul li a, .sticky-post-icon, .fw-video-close:hover {background-color: #1dc6df!important; color: #ffffff;}a:hover, #sidebar a:hover, .pagination-wrap a:hover, .carousel-nav a:hover, .portfolio-pagination div:hover > i, #footer a:hover, #copyright a, .beam-me-up a:hover span, .portfolio-item .portfolio-item-permalink, .read-more-link, .blog-item .read-more, .blog-item-details a:hover, .author-link, #reply-title small a, #respond .form-submit input:hover, span.dropcap2, .spb_divider.go_to_top a, love-it-wrapper:hover .love-it, .love-it-wrapper:hover span.love-count, .love-it-wrapper .loved, .comments-likes .loved span.love-count, .comments-likes a:hover i, .comments-likes .love-it-wrapper:hover a i, .comments-likes a:hover span, .love-it-wrapper:hover a i, .item-link:hover, #header-translation p a, #swift-slider .flex-caption-large h1 a:hover, .wooslider .slide-title a:hover, .caption-details-inner .details span > a, .caption-details-inner .chart span, .caption-details-inner .chart i, #swift-slider .flex-caption-large .chart i, #breadcrumbs a:hover, .ui-widget-content a:hover, .yith-wcwl-add-button a:hover, #product-img-slider li a.zoom:hover, .woocommerce .star-rating span, .article-body-wrap .share-links a:hover, ul.member-contact li a:hover, .price ins, .bag-product a.remove:hover, .bag-product-title a:hover, #back-to-top:hover,  ul.member-contact li a:hover, .fw-video-link-image:hover i, .ajax-search-results .all-results:hover, .search-result h5 a:hover .ui-state-default a:hover {color: #f2c037;}.carousel-wrap > a:hover, #mobile-menu ul li:hover > a {color: #1dc6df!important;}.comments-likes a:hover span, .comments-likes a:hover i {color: #1dc6df!important;}.read-more i:before, .read-more em:before {color: #1dc6df;}input[type="text"]:focus, input[type="email"]:focus, input[type="tel"]:focus, textarea:focus, .bypostauthor .comment-wrap .comment-avatar,.search-form input:focus, .wpcf7 input:focus, .wpcf7 textarea:focus, .ginput_container input:focus, .ginput_container textarea:focus, .mymail-form input:focus, .mymail-form textarea:focus {border-color: #1dc6df!important;}nav .menu ul li:first-child:after,.navigation a:hover > .nav-text, .returning-customer a:hover {border-bottom-color: #1dc6df;}nav .menu ul ul li:first-child:after {border-right-color: #1dc6df;}.spb_impact_text .spb_call_text {border-left-color: #1dc6df;}.spb_impact_text .spb_button span {color: #fff;}#respond .form-submit input#submit {border-color: #e4e4e4;background-color: #ffffff;}#respond .form-submit input#submit:hover {border-color: #1dc6df;background-color: #1dc6df;color: #ffffff;}.woocommerce .free-badge, .my-account-login-wrap .login-wrap form.login p.form-row input[type="submit"], .woocommerce .my-account-login-wrap form input[type="submit"] {background-color: #6b6b6b; color: #ffffff;}a[rel="tooltip"], ul.member-contact li a, .blog-item-details a, .post-info a, a.text-link, .tags-wrap .tags a, .logged-in-as a, .comment-meta-actions .edit-link, .comment-meta-actions .comment-reply, .read-more {border-color: #1dc6df;}.super-search-go {border-color: #1dc6df!important;}.super-search-go:hover {background: #1dc6df!important;border-color: #1dc6df!important;}body {color: #333333;}.pagination-wrap a, .search-pagination a {color: #333333;}.layout-boxed #header-search, .layout-boxed #super-search, body > .sf-super-search {background-color: #ffffff;}body {background: #ffffff url(http://www.wochurch.org/test/wp-content/themes/dante/images/preset-backgrounds/45degree_fabric.png) repeat center top fixed;}body {background-color: #ffffff;background-size: auto;}#main-container, .tm-toggle-button-wrap a {background-color: #ffffff;}a, .ui-widget-content a {color: #3ab0f4;}.pagination-wrap li a:hover, ul.bar-styling li:not(.selected) > a:hover, ul.bar-styling li > .comments-likes:hover, ul.page-numbers li > a:hover, ul.page-numbers li > span.current {color: #ffffff!important;background: #1dc6df;border-color: #1dc6df;}ul.bar-styling li > .comments-likes:hover * {color: #ffffff!important;}.pagination-wrap li a, .pagination-wrap li span, .pagination-wrap li span.expand, ul.bar-styling li > a, ul.bar-styling li > div, ul.page-numbers li > a, ul.page-numbers li > span, .curved-bar-styling, ul.bar-styling li > form input {border-color: #e4e4e4;}ul.bar-styling li > a, ul.bar-styling li > span, ul.bar-styling li > div, ul.bar-styling li > form input {background-color: #ffffff;}input[type="text"], input[type="password"], input[type="email"], input[type="tel"], textarea, select {border-color: #e4e4e4;background: #f4f4f4;}textarea:focus, input:focus {border-color: #999!important;}.modal-header {background: #f4f4f4;}.recent-post .post-details, .team-member .team-member-position, .portfolio-item h5.portfolio-subtitle, .mini-items .blog-item-details, .standard-post-content .blog-item-details, .masonry-items .blog-item .blog-item-details, .jobs > li .job-date, .search-item-content time, .search-item-content span, .blog-item-details a, .portfolio-details-wrap .date {color: #999999;}ul.bar-styling li.facebook > a:hover {color: #fff!important;background: #3b5998;border-color: #3b5998;}ul.bar-styling li.twitter > a:hover {color: #fff!important;background: #4099FF;border-color: #4099FF;}ul.bar-styling li.google-plus > a:hover {color: #fff!important;background: #d34836;border-color: #d34836;}ul.bar-styling li.pinterest > a:hover {color: #fff!important;background: #cb2027;border-color: #cb2027;}#header-search input, #header-search a, .super-search-close, #header-search i.ss-search {color: #fff;}#header-search a:hover, .super-search-close:hover {color: #1dc6df;}.sf-super-search, .spb_supersearch_widget.alt-bg {background-color: #6b6b6b;}.sf-super-search .search-options .ss-dropdown > span, .sf-super-search .search-options input {color: #1dc6df; border-bottom-color: #1dc6df;}.sf-super-search .search-options .ss-dropdown ul li .fa-check {color: #1dc6df;}.sf-super-search-go:hover, .sf-super-search-close:hover { background-color: #1dc6df; border-color: #1dc6df; color: #ffffff;}#top-bar {background: #54cdf2; color: #ffffff;}#top-bar .tb-welcome {border-color: #f7f7f7;}#top-bar a {color: #ffffff;}#top-bar .menu li {border-left-color: #f7f7f7; border-right-color: #f7f7f7;}#top-bar .menu > li > a, #top-bar .menu > li.parent:after {color: #ffffff;}#top-bar .menu > li > a:hover, #top-bar a:hover {color: #222222;}#top-bar .show-menu {background-color: #f7f7f7;color: #6b6b6b;}#header-languages .current-language {background: #f7f7f7; color: #000000;}#header-section:before, #header .is-sticky .sticky-header, #header-section .is-sticky #main-nav.sticky-header, #header-section.header-6 .is-sticky #header.sticky-header, .ajax-search-wrap {background-color: #ffffff;background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#ffffff), to(#ffffff));background: -webkit-linear-gradient(top, #ffffff, #ffffff);background: -moz-linear-gradient(top, #ffffff, #ffffff);background: -ms-linear-gradient(top, #ffffff, #ffffff);background: -o-linear-gradient(top, #ffffff, #ffffff);}#logo img {padding-top: 0px;padding-bottom: 0px;}#logo {max-height: 42px;}#header-section .header-menu .menu li, #mini-header .header-right nav .menu li {border-left-color: #e4e4e4;}#header-section #main-nav {border-top-color: #e4e4e4;}#top-header {border-bottom-color: #e4e4e4;}#top-header {border-bottom-color: #e4e4e4;}#top-header .th-right > nav .menu li, .ajax-search-wrap:after {border-bottom-color: #e4e4e4;}.ajax-search-wrap, .ajax-search-results, .search-result-pt .search-result {border-color: #e4e4e4;}.page-content {border-bottom-color: #e4e4e4;}.ajax-search-wrap input[type="text"], .search-result-pt h6, .no-search-results h6, .search-result h5 a {color: #252525;}nav#main-navigation .menu > li > a span.nav-line {background-color: #37c4e8;}.show-menu {background-color: #6b6b6b;color: #ffffff;}nav .menu > li:before {background: #37c4e8;}nav .menu .sub-menu .parent > a:after {border-left-color: #37c4e8;}nav .menu ul.sub-menu {background-color: #FFFFFF;}nav .menu ul.sub-menu li {border-bottom-color: #f0f0f0;border-bottom-style: solid;}nav.mega-menu li .mega .sub .sub-menu, nav.mega-menu li .mega .sub .sub-menu li, nav.mega-menu li .sub-container.non-mega li, nav.mega-menu li .sub li.mega-hdr {border-top-color: #f0f0f0;border-top-style: solid;}nav.mega-menu li .sub li.mega-hdr {border-right-color: #f0f0f0;border-right-style: solid;}nav .menu > li.menu-item > a, #menubar-controls a, nav.search-nav .menu>li>a {color: #252525;}nav .menu > li.menu-item:hover > a {color: #37c4e8;}nav .menu ul.sub-menu li.menu-item > a, nav .menu ul.sub-menu li > span, #top-bar nav .menu ul li > a {color: #666666;}nav .menu ul.sub-menu li.menu-item:hover > a {color: #000000!important; background: #f7f7f7;}nav .menu li.parent > a:after, nav .menu li.parent > a:after:hover {color: #aaa;}nav .menu li.current-menu-ancestor > a, nav .menu li.current-menu-item > a, #mobile-menu .menu ul li.current-menu-item > a, nav .menu li.current-scroll-item > a {color: #222222;}nav .menu ul li.current-menu-ancestor > a, nav .menu ul li.current-menu-item > a {color: #000000; background: #f7f7f7;}#main-nav .header-right ul.menu > li, .wishlist-item {border-left-color: #f0f0f0;}#nav-search, #mini-search {background: #54cdf2;}#nav-search a, #mini-search a {color: #ffffff;}.bag-header, .bag-product, .bag-empty, .wishlist-empty {border-color: #f0f0f0;}.bag-buttons a.sf-button.bag-button, .bag-buttons a.sf-button.wishlist-button, .bag-buttons a.sf-button.guest-button {background-color: #e4e4e4; color: #333333!important;}.bag-buttons a.checkout-button, .bag-buttons a.create-account-button, .woocommerce input.button.alt, .woocommerce .alt-button, .woocommerce button.button.alt, .woocommerce #account_details .login form p.form-row input[type="submit"], #login-form .modal-body form.login p.form-row input[type="submit"] {background: #6b6b6b; color: #ffffff;}.woocommerce .button.update-cart-button:hover, .woocommerce #account_details .login form p.form-row input[type="submit"]:hover, #login-form .modal-body form.login p.form-row input[type="submit"]:hover {background: #1dc6df; color: #ffffff;}.woocommerce input.button.alt:hover, .woocommerce .alt-button:hover, .woocommerce button.button.alt:hover {background: #1dc6df; color: #ffffff;}.shopping-bag:before, nav .menu ul.sub-menu li:first-child:before {border-bottom-color: #37c4e8;}#base-promo {background-color: #e4e4e4;}#base-promo > p, #base-promo.footer-promo-text > a, #base-promo.footer-promo-arrow > a {color: #222;}#base-promo.footer-promo-arrow:hover, #base-promo.footer-promo-text:hover {background-color: #1dc6df;color: #ffffff;}#base-promo.footer-promo-arrow:hover > *, #base-promo.footer-promo-text:hover > * {color: #ffffff;}.page-heading {background-color: #f7f7f7;border-bottom-color: #e4e4e4;}.page-heading h1, .page-heading h3 {color: #222222;}#breadcrumbs {color: #333333;}#breadcrumbs a, #breadcrumb i {color: #333333;}body, input[type="text"], input[type="password"], input[type="email"], textarea, select, .ui-state-default a {color: #333333;}h1, h1 a {color: #333333;}h2, h2 a {color: #333333;}h3, h3 a {color: #333333;}h4, h4 a, .carousel-wrap > a {color: #333333;}h5, h5 a {color: #333333;}h6, h6 a {color: #afafaf;}.spb_impact_text .spb_call_text, .impact-text, .impact-text-large {color: #333333;}.read-more i, .read-more em {color: transparent;}.pb-border-bottom, .pb-border-top, .read-more-button {border-color: #e4e4e4;}#swift-slider ul.slides {background: #6b6b6b;}#swift-slider .flex-caption .flex-caption-headline {background: #ffffff;}#swift-slider .flex-caption .flex-caption-details .caption-details-inner {background: #ffffff; border-bottom: #e4e4e4}#swift-slider .flex-caption-large, #swift-slider .flex-caption-large h1 a {color: #ffffff;}#swift-slider .flex-caption h4 i {line-height: 20px;}#swift-slider .flex-caption-large .comment-chart i {color: #ffffff;}#swift-slider .flex-caption-large .loveit-chart span {color: #1dc6df;}#swift-slider .flex-caption-large a {color: #1dc6df;}#swift-slider .flex-caption .comment-chart i, #swift-slider .flex-caption .comment-chart span {color: #6b6b6b;}figure.animated-overlay figcaption {background-color: #1dc6df;}
    figure.animated-overlay figcaption {background-color: rgba(29,198,223, 0.35);}figure.animated-overlay figcaption .thumb-info h4, figure.animated-overlay figcaption .thumb-info h5, figcaption .thumb-info-excerpt p {color: #ffffff;}figure.animated-overlay figcaption .thumb-info i {background: #6b6b6b; color: #ffffff;}figure:hover .overlay {box-shadow: inset 0 0 0 500px #1dc6df;}h4.spb-heading span:before, h4.spb-heading span:after, h3.spb-heading span:before, h3.spb-heading span:after, h4.lined-heading span:before, h4.lined-heading span:after {border-color: #e4e4e4}h4.spb-heading:before, h3.spb-heading:before, h4.lined-heading:before {border-top-color: #e4e4e4}.spb_parallax_asset h4.spb-heading {border-bottom-color: #333333}.testimonials.carousel-items li .testimonial-text {background-color: #f4f4f4;}.sidebar .widget-heading h4 {color: #333333;}.widget ul li, .widget.widget_lip_most_loved_widget li {border-color: #e4e4e4;}.widget.widget_lip_most_loved_widget li {background: #ffffff; border-color: #e4e4e4;}.widget_lip_most_loved_widget .loved-item > span {color: #999999;}.widget_search form input {background: #ffffff;}.widget .wp-tag-cloud li a {background: #f4f4f4; border-color: #e4e4e4;}.widget .tagcloud a:hover, .widget ul.wp-tag-cloud li:hover > a {background-color: #1dc6df; color: #ffffff;}.loved-item .loved-count > i {color: #333333;background: #e4e4e4;}.subscribers-list li > a.social-circle {color: #ffffff;background: #6b6b6b;}.subscribers-list li:hover > a.social-circle {color: #fbfbfb;background: #1dc6df;}.sidebar .widget_categories ul > li a, .sidebar .widget_archive ul > li a, .sidebar .widget_nav_menu ul > li a, .sidebar .widget_meta ul > li a, .sidebar .widget_recent_entries ul > li, .widget_product_categories ul > li a, .widget_layered_nav ul > li a {color: #3ab0f4;}.sidebar .widget_categories ul > li a:hover, .sidebar .widget_archive ul > li a:hover, .sidebar .widget_nav_menu ul > li a:hover, .widget_nav_menu ul > li.current-menu-item a, .sidebar .widget_meta ul > li a:hover, .sidebar .widget_recent_entries ul > li a:hover, .widget_product_categories ul > li a:hover, .widget_layered_nav ul > li a:hover {color: #1dc6df;}#calendar_wrap caption {border-bottom-color: #6b6b6b;}.sidebar .widget_calendar tbody tr > td a {color: #ffffff;background-color: #6b6b6b;}.sidebar .widget_calendar tbody tr > td a:hover {background-color: #1dc6df;}.sidebar .widget_calendar tfoot a {color: #6b6b6b;}.sidebar .widget_calendar tfoot a:hover {color: #1dc6df;}.widget_calendar #calendar_wrap, .widget_calendar th, .widget_calendar tbody tr > td, .widget_calendar tbody tr > td.pad {border-color: #e4e4e4;}.widget_sf_infocus_widget .infocus-item h5 a {color: #6b6b6b;}.widget_sf_infocus_widget .infocus-item h5 a:hover {color: #1dc6df;}.sidebar .widget hr {border-color: #e4e4e4;}.widget ul.flickr_images li a:after, .portfolio-grid li a:after {color: #ffffff;}.slideout-filter .select:after {background: #ffffff;}.slideout-filter ul li a {color: #ffffff;}.slideout-filter ul li a:hover {color: #1dc6df;}.slideout-filter ul li.selected a {color: #ffffff;background: #1dc6df;}ul.portfolio-filter-tabs li.selected a {background: #f4f4f4;}.filter-slide-wrap {background-color: #222;}.portfolio-item {border-bottom-color: #e4e4e4;}.masonry-items .portfolio-item-details {background: #f4f4f4;}.spb_portfolio_carousel_widget .portfolio-item {background: #ffffff;}.spb_portfolio_carousel_widget .portfolio-item h4.portfolio-item-title a > i {line-height: 20px;}.masonry-items .blog-item .blog-details-wrap:before {background-color: #f4f4f4;}.masonry-items .portfolio-item figure {border-color: #e4e4e4;}.portfolio-details-wrap span span {color: #666;}.share-links > a:hover {color: #1dc6df;}.blog-aux-options li.selected a {background: #1dc6df;border-color: #1dc6df;color: #ffffff;}.blog-filter-wrap .aux-list li:hover {border-bottom-color: transparent;}.blog-filter-wrap .aux-list li:hover a {color: #ffffff;background: #1dc6df;}.mini-blog-item-wrap, .mini-items .mini-alt-wrap, .mini-items .mini-alt-wrap .quote-excerpt, .mini-items .mini-alt-wrap .link-excerpt, .masonry-items .blog-item .quote-excerpt, .masonry-items .blog-item .link-excerpt, .standard-post-content .quote-excerpt, .standard-post-content .link-excerpt, .timeline, .post-info, .body-text .link-pages, .page-content .link-pages {border-color: #e4e4e4;}.post-info, .article-body-wrap .share-links .share-text, .article-body-wrap .share-links a {color: #999999;}.standard-post-date {background: #e4e4e4;}.standard-post-content {background: #f4f4f4;}.format-quote .standard-post-content:before, .standard-post-content.no-thumb:before {border-left-color: #f4f4f4;}.search-item-img .img-holder {background: #f4f4f4;border-color:#e4e4e4;}.masonry-items .blog-item .masonry-item-wrap {background: #f4f4f4;}.mini-items .blog-item-details, .share-links, .single-portfolio .share-links, .single .pagination-wrap, ul.portfolio-filter-tabs li a {border-color: #e4e4e4;}.related-item figure {background-color: #6b6b6b; color: #ffffff}.required {color: #ee3c59;}.comments-likes a i, .comments-likes a span, .comments-likes .love-it-wrapper a i, .comments-likes span.love-count, .share-links ul.bar-styling > li > a {color: #999999;}#respond .form-submit input:hover {color: #fff!important;}.recent-post {background: #ffffff;}.recent-post .post-item-details {border-top-color: #e4e4e4;color: #e4e4e4;}.post-item-details span, .post-item-details a, .post-item-details .comments-likes a i, .post-item-details .comments-likes a span {color: #999999;}.sf-button.accent {color: #ffffff; background-color: #1dc6df;}.sf-button.sf-icon-reveal.accent {color: #ffffff!important; background-color: #1dc6df!important;}.sf-button.accent:hover {background-color: #6b6b6b;color: #ffffff;}a.sf-button, a.sf-button:hover, #footer a.sf-button:hover {background-image: none;color: #fff!important;}a.sf-button.gold, a.sf-button.gold:hover, a.sf-button.lightgrey, a.sf-button.lightgrey:hover, a.sf-button.white, a.sf-button.white:hover {color: #222!important;}a.sf-button.transparent-dark {color: #333333!important;}a.sf-button.transparent-light:hover, a.sf-button.transparent-dark:hover {color: #1dc6df!important;} input[type="submit"], .wpcf7 input.wpcf7-submit[type="submit"], .gform_wrapper input[type="submit"], .mymail-form input[type="submit"] {color: #fff;}input[type="submit"]:hover, .wpcf7 input.wpcf7-submit[type="submit"]:hover, .gform_wrapper input[type="submit"]:hover, .mymail-form input[type="submit"]:hover {background-color: #6b6b6b!important;color: #ffffff;}input[type="text"], input[type="email"], input[type="password"], textarea, select, .wpcf7 input[type="text"], .wpcf7 input[type="email"], .wpcf7 textarea, .wpcf7 select, .ginput_container input[type="text"], .ginput_container input[type="email"], .ginput_container textarea, .ginput_container select, .mymail-form input[type="text"], .mymail-form input[type="email"], .mymail-form textarea, .mymail-form select {background: #f4f4f4; border-color: #e4e4e4;}.sf-icon {color: #54cdf2;}.sf-icon-cont {border-color: rgba(84,205,242,0.5);}.sf-icon-cont:hover, .sf-hover .sf-icon-cont, .sf-icon-box[class*="icon-box-boxed-"] .sf-icon-cont, .sf-hover .sf-icon-box-hr {background-color: #54cdf2;}.sf-icon-box[class*="sf-icon-box-boxed-"] .sf-icon-cont:after {border-top-color: #54cdf2;border-left-color: #54cdf2;}.sf-icon-cont:hover .sf-icon, .sf-hover .sf-icon-cont .sf-icon, .sf-icon-box.sf-icon-box-boxed-one .sf-icon, .sf-icon-box.sf-icon-box-boxed-three .sf-icon {color: #ffffff;}.sf-icon-box-animated .front {background: #f4f4f4; border-color: #e4e4e4;}.sf-icon-box-animated .front h3 {color: #333333!important;}.sf-icon-box-animated .back {background: #1dc6df; border-color: #1dc6df;}.sf-icon-box-animated .back, .sf-icon-box-animated .back h3 {color: #ffffff!important;}.sf-icon-accent.sf-icon-cont, .sf-icon-accent > i {color: #1dc6df;}.sf-icon-cont.sf-icon-accent {border-color: #1dc6df;}.sf-icon-cont.sf-icon-accent:hover, .sf-hover .sf-icon-cont.sf-icon-accent, .sf-icon-box[class*="icon-box-boxed-"] .sf-icon-cont.sf-icon-accent, .sf-hover .sf-icon-box-hr.sf-icon-accent {background-color: #1dc6df;}.sf-icon-box[class*="sf-icon-box-boxed-"] .sf-icon-cont.sf-icon-accent:after {border-top-color: #1dc6df;border-left-color: #1dc6df;}.sf-icon-cont.sf-icon-accent:hover .sf-icon, .sf-hover .sf-icon-cont.sf-icon-accent .sf-icon, .sf-icon-box.sf-icon-box-boxed-one.sf-icon-accent .sf-icon, .sf-icon-box.sf-icon-box-boxed-three.sf-icon-accent .sf-icon {color: #ffffff;}.sf-icon-secondary-accent.sf-icon-cont, .sf-icon-secondary-accent > i {color: #6b6b6b;}.sf-icon-cont.sf-icon-secondary-accent {border-color: #6b6b6b;}.sf-icon-cont.sf-icon-secondary-accent:hover, .sf-hover .sf-icon-cont.sf-icon-secondary-accent, .sf-icon-box[class*="icon-box-boxed-"] .sf-icon-cont.sf-icon-secondary-accent, .sf-hover .sf-icon-box-hr.sf-icon-secondary-accent {background-color: #6b6b6b;}.sf-icon-box[class*="sf-icon-box-boxed-"] .sf-icon-cont.sf-icon-secondary-accent:after {border-top-color: #6b6b6b;border-left-color: #6b6b6b;}.sf-icon-cont.sf-icon-secondary-accent:hover .sf-icon, .sf-hover .sf-icon-cont.sf-icon-secondary-accent .sf-icon, .sf-icon-box.sf-icon-box-boxed-one.sf-icon-secondary-accent .sf-icon, .sf-icon-box.sf-icon-box-boxed-three.sf-icon-secondary-accent .sf-icon {color: #ffffff;}.sf-icon-box-animated .back.sf-icon-secondary-accent {background: #6b6b6b; border-color: #6b6b6b;}.sf-icon-box-animated .back.sf-icon-secondary-accent, .sf-icon-box-animated .back.sf-icon-secondary-accent h3 {color: #ffffff!important;}.sf-icon-icon-one.sf-icon-cont, .sf-icon-icon-one > i, i.sf-icon-icon-one {color: #FF9900;}.sf-icon-cont.sf-icon-icon-one {border-color: #FF9900;}.sf-icon-cont.sf-icon-icon-one:hover, .sf-hover .sf-icon-cont.sf-icon-icon-one, .sf-icon-box[class*="icon-box-boxed-"] .sf-icon-cont.sf-icon-icon-one, .sf-hover .sf-icon-box-hr.sf-icon-icon-one {background-color: #FF9900;}.sf-icon-box[class*="sf-icon-box-boxed-"] .sf-icon-cont.sf-icon-icon-one:after {border-top-color: #FF9900;border-left-color: #FF9900;}.sf-icon-cont.sf-icon-icon-one:hover .sf-icon, .sf-hover .sf-icon-cont.sf-icon-icon-one .sf-icon, .sf-icon-box.sf-icon-box-boxed-one.sf-icon-icon-one .sf-icon, .sf-icon-box.sf-icon-box-boxed-three.sf-icon-icon-one .sf-icon {color: #FFFFFF;}.sf-icon-box-animated .back.sf-icon-icon-one {background: #FF9900; border-color: #FF9900;}.sf-icon-box-animated .back.sf-icon-icon-one, .sf-icon-box-animated .back.sf-icon-icon-one h3 {color: #FFFFFF!important;}.sf-icon-icon-two.sf-icon-cont, .sf-icon-icon-two > i, i.sf-icon-icon-two {color: #339933;}.sf-icon-cont.sf-icon-icon-two {border-color: #339933;}.sf-icon-cont.sf-icon-icon-two:hover, .sf-hover .sf-icon-cont.sf-icon-icon-two, .sf-icon-box[class*="icon-box-boxed-"] .sf-icon-cont.sf-icon-icon-two, .sf-hover .sf-icon-box-hr.sf-icon-icon-two {background-color: #339933;}.sf-icon-box[class*="sf-icon-box-boxed-"] .sf-icon-cont.sf-icon-icon-two:after {border-top-color: #339933;border-left-color: #339933;}.sf-icon-cont.sf-icon-icon-two:hover .sf-icon, .sf-hover .sf-icon-cont.sf-icon-icon-two .sf-icon, .sf-icon-box.sf-icon-box-boxed-one.sf-icon-icon-two .sf-icon, .sf-icon-box.sf-icon-box-boxed-three.sf-icon-icon-two .sf-icon {color: #FFFFFF;}.sf-icon-box-animated .back.sf-icon-icon-two {background: #339933; border-color: #339933;}.sf-icon-box-animated .back.sf-icon-icon-two, .sf-icon-box-animated .back.sf-icon-icon-two h3 {color: #FFFFFF!important;}.sf-icon-icon-three.sf-icon-cont, .sf-icon-icon-three > i, i.sf-icon-icon-three {color: #CCCCCC;}.sf-icon-cont.sf-icon-icon-three {border-color: #CCCCCC;}.sf-icon-cont.sf-icon-icon-three:hover, .sf-hover .sf-icon-cont.sf-icon-icon-three, .sf-icon-box[class*="icon-box-boxed-"] .sf-icon-cont.sf-icon-icon-three, .sf-hover .sf-icon-box-hr.sf-icon-icon-three {background-color: #CCCCCC;}.sf-icon-box[class*="sf-icon-box-boxed-"] .sf-icon-cont.sf-icon-icon-three:after {border-top-color: #CCCCCC;border-left-color: #CCCCCC;}.sf-icon-cont.sf-icon-icon-three:hover .sf-icon, .sf-hover .sf-icon-cont.sf-icon-icon-three .sf-icon, .sf-icon-box.sf-icon-box-boxed-one.sf-icon-icon-three .sf-icon, .sf-icon-box.sf-icon-box-boxed-three.sf-icon-icon-three .sf-icon {color: #222222;}.sf-icon-box-animated .back.sf-icon-icon-three {background: #CCCCCC; border-color: #CCCCCC;}.sf-icon-box-animated .back.sf-icon-icon-three, .sf-icon-box-animated .back.sf-icon-icon-three h3 {color: #222222!important;}.sf-icon-icon-four.sf-icon-cont, .sf-icon-icon-four > i, i.sf-icon-icon-four {color: #6633ff;}.sf-icon-cont.sf-icon-icon-four {border-color: #6633ff;}.sf-icon-cont.sf-icon-icon-four:hover, .sf-hover .sf-icon-cont.sf-icon-icon-four, .sf-icon-box[class*="icon-box-boxed-"] .sf-icon-cont.sf-icon-icon-four, .sf-hover .sf-icon-box-hr.sf-icon-icon-four {background-color: #6633ff;}.sf-icon-box[class*="sf-icon-box-boxed-"] .sf-icon-cont.sf-icon-icon-four:after {border-top-color: #6633ff;border-left-color: #6633ff;}.sf-icon-cont.sf-icon-icon-four:hover .sf-icon, .sf-hover .sf-icon-cont.sf-icon-icon-four .sf-icon, .sf-icon-box.sf-icon-box-boxed-one.sf-icon-icon-four .sf-icon, .sf-icon-box.sf-icon-box-boxed-three.sf-icon-icon-four .sf-icon {color: #FFFFFF;}.sf-icon-box-animated .back.sf-icon-icon-four {background: #6633ff; border-color: #6633ff;}.sf-icon-box-animated .back.sf-icon-icon-four, .sf-icon-box-animated .back.sf-icon-icon-four h3 {color: #FFFFFF!important;}span.dropcap3 {background: #000;color: #fff;}span.dropcap4 {color: #fff;}.spb_divider, .spb_divider.go_to_top_icon1, .spb_divider.go_to_top_icon2, .testimonials > li, .jobs > li, .spb_impact_text, .tm-toggle-button-wrap, .tm-toggle-button-wrap a, .portfolio-details-wrap, .spb_divider.go_to_top a, .impact-text-wrap, .widget_search form input, .alt-bg.spb_divider {border-color: #e4e4e4;}.spb_divider.go_to_top_icon1 a, .spb_divider.go_to_top_icon2 a {background: #ffffff;}.spb_tabs .ui-tabs .ui-tabs-panel, .spb_content_element .ui-tabs .ui-tabs-nav, .ui-tabs .ui-tabs-nav li {border-color: #e4e4e4;}.spb_tabs .ui-tabs .ui-tabs-panel, .ui-tabs .ui-tabs-nav li.ui-tabs-active a {background: #ffffff!important;}.spb_tabs .nav-tabs li a, .nav-tabs>li.active>a, .nav-tabs>li.active>a:hover, .nav-tabs>li.active>a:focus, .spb_accordion .spb_accordion_section, .spb_tour .nav-tabs li a {border-color: #e4e4e4;}.spb_tabs .nav-tabs li.active a, .spb_tour .nav-tabs li.active a, .spb_accordion .spb_accordion_section > h3.ui-state-active a {background-color: #f4f4f4;}.spb_tour .ui-tabs .ui-tabs-nav li a {border-color: #e4e4e4;}.spb_tour.span3 .ui-tabs .ui-tabs-nav li {border-color: #e4e4e4!important;}.toggle-wrap .spb_toggle, .spb_toggle_content {border-color: #e4e4e4;}.toggle-wrap .spb_toggle:hover {color: #1dc6df;}.ui-accordion h3.ui-accordion-header .ui-icon {color: #333333;}.ui-accordion h3.ui-accordion-header.ui-state-active:hover a, .ui-accordion h3.ui-accordion-header:hover .ui-icon {color: #1dc6df;}blockquote.pullquote {border-color: #1dc6df;}.borderframe img {border-color: #eeeeee;}.labelled-pricing-table .column-highlight {background-color: #fff;}.labelled-pricing-table .pricing-table-label-row, .labelled-pricing-table .pricing-table-row {background: #f7f7f7;}.labelled-pricing-table .alt-row {background: #fff;}.labelled-pricing-table .pricing-table-price {background: #e4e4e4;}.labelled-pricing-table .pricing-table-package {background: #f7f7f7;}.labelled-pricing-table .lpt-button-wrap {background: #e4e4e4;}.labelled-pricing-table .lpt-button-wrap a.accent {background: #222!important;}.labelled-pricing-table .column-highlight .lpt-button-wrap {background: transparent!important;}.labelled-pricing-table .column-highlight .lpt-button-wrap a.accent {background: #1dc6df!important;}.column-highlight .pricing-table-price {color: #fff;background: #54cdf2;border-bottom-color: #54cdf2;}.column-highlight .pricing-table-package {background: #B4E5F8;}.column-highlight .pricing-table-details {background: #E1F3FA;}.spb_box_text.coloured .box-content-wrap {background: #fb3c2d;color: #fff;}.spb_box_text.whitestroke .box-content-wrap {background-color: #fff;border-color: #e4e4e4;}.client-item figure {border-color: #e4e4e4;}.client-item figure:hover {border-color: #333;}ul.member-contact li a:hover {color: #333;}.testimonials.carousel-items li .testimonial-text {border-color: #e4e4e4;}.testimonials.carousel-items li .testimonial-text:after {border-left-color: #e4e4e4;border-top-color: #e4e4e4;}.team-member figure figcaption {background: #f4f4f4;}.horizontal-break {background-color: #e4e4e4;}.progress .bar {background-color: #1dc6df;}.progress.standard .bar {background: #1dc6df;}.progress-bar-wrap .progress-value {color: #1dc6df;}.alt-bg-detail {background:#ffffff;border-color:#e4e4e4;}#footer {background: #595959;}#footer, #footer p {color: #cccccc;}#footer h6 {color: #cccccc;}#footer a {color: #cccccc;}#footer .widget ul li, #footer .widget_categories ul, #footer .widget_archive ul, #footer .widget_nav_menu ul, #footer .widget_recent_comments ul, #footer .widget_meta ul, #footer .widget_recent_entries ul, #footer .widget_product_categories ul {border-color: #6d6d6d;}#copyright {background-color: #303030;border-top-color: #6d6d6d;}#copyright p {color: #999999;}#copyright a {color: #ffffff;}#copyright a:hover {color: #e4e4e4;}#copyright nav .menu li {border-left-color: #6d6d6d;}#footer .widget_calendar #calendar_wrap, #footer .widget_calendar th, #footer .widget_calendar tbody tr > td, #footer .widget_calendar tbody tr > td.pad {border-color: #6d6d6d;}.widget input[type="email"] {background: #f7f7f7; color: #999}#footer .widget hr {border-color: #6d6d6d;}.woocommerce nav.woocommerce-pagination ul li a, .woocommerce nav.woocommerce-pagination ul li span, .modal-body .comment-form-rating, .woocommerce form .form-row input.input-text, ul.checkout-process, #billing .proceed, ul.my-account-nav > li, .woocommerce #payment, .woocommerce-checkout p.thank-you, .woocommerce .order_details, .woocommerce-page .order_details, .woocommerce ul.products li.product figure figcaption .yith-wcwl-add-to-wishlist, #product-accordion .panel, .review-order-wrap { border-color: #e4e4e4 ;}nav.woocommerce-pagination ul li span.current, nav.woocommerce-pagination ul li a:hover {background:#1dc6df!important;border-color:#1dc6df;color: #ffffff!important;}.woocommerce-account p.myaccount_address, .woocommerce-account .page-content h2, p.no-items, #order_review table.shop_table, #payment_heading, .returning-customer a {border-bottom-color: #e4e4e4;}.woocommerce .products ul, .woocommerce ul.products, .woocommerce-page .products ul, .woocommerce-page ul.products, p.no-items {border-top-color: #e4e4e4;}.woocommerce-ordering .woo-select, .variations_form .woo-select, .add_review a, .woocommerce .quantity, .woocommerce-page .quantity, .woocommerce .coupon input.apply-coupon, .woocommerce table.shop_table tr td.product-remove .remove, .woocommerce .button.update-cart-button, .shipping-calculator-form .woo-select, .woocommerce .shipping-calculator-form .update-totals-button button, .woocommerce #billing_country_field .woo-select, .woocommerce #shipping_country_field .woo-select, .woocommerce #review_form #respond .form-submit input, .woocommerce form .form-row input.input-text, .woocommerce table.my_account_orders .order-actions .button, .woocommerce #payment div.payment_box, .woocommerce .widget_price_filter .price_slider_amount .button, .woocommerce.widget .buttons a, .load-more-btn {background: #f4f4f4; color: #6b6b6b}.woocommerce-page nav.woocommerce-pagination ul li span.current, .woocommerce nav.woocommerce-pagination ul li span.current { color: #ffffff;}li.product figcaption a.product-added {color: #ffffff;}.woocommerce ul.products li.product figure figcaption, .yith-wcwl-add-button a, ul.products li.product a.quick-view-button, .yith-wcwl-add-to-wishlist, .woocommerce form.cart button.single_add_to_cart_button, .woocommerce p.cart a.single_add_to_cart_button, .lost_reset_password p.form-row input[type="submit"], .track_order p.form-row input[type="submit"], .change_password_form p input[type="submit"], .woocommerce form.register input[type="submit"], .woocommerce .wishlist_table tr td.product-add-to-cart a, .woocommerce input.button[name="save_address"], .woocommerce .woocommerce-message a.button {background: #f4f4f4;}.woocommerce ul.products li.product figure figcaption .shop-actions > a, .woocommerce .wishlist_table tr td.product-add-to-cart a {color: #333333;}.woocommerce ul.products li.product figure figcaption .shop-actions > a.product-added, .woocommerce ul.products li.product figure figcaption .shop-actions > a.product-added:hover {color: #ffffff;}ul.products li.product .product-details .posted_in a {color: #999999;}.woocommerce ul.products li.product figure figcaption .shop-actions > a:hover, ul.products li.product .product-details .posted_in a:hover {color: #1dc6df;}.woocommerce form.cart button.single_add_to_cart_button, .woocommerce p.cart a.single_add_to_cart_button, .woocommerce input[name="save_account_details"] { background: #f4f4f4!important; color: #333333 ;}
    .woocommerce form.cart button.single_add_to_cart_button:hover{ background: #1dc6df!important; color: #ffffff ;}
    .woocommerce p.cart a.single_add_to_cart_button:hover {background: #6b6b6b; color: #1dc6df ;}.woocommerce table.shop_table tr td.product-remove .remove:hover, .woocommerce .coupon input.apply-coupon:hover, .woocommerce .shipping-calculator-form .update-totals-button button:hover, .woocommerce .quantity .plus:hover, .woocommerce .quantity .minus:hover, .add_review a:hover, .woocommerce #review_form #respond .form-submit input:hover, .lost_reset_password p.form-row input[type="submit"]:hover, .track_order p.form-row input[type="submit"]:hover, .change_password_form p input[type="submit"]:hover, .woocommerce table.my_account_orders .order-actions .button:hover, .woocommerce .widget_price_filter .price_slider_amount .button:hover, .woocommerce.widget .buttons a:hover, .woocommerce .wishlist_table tr td.product-add-to-cart a:hover, .woocommerce input.button[name="save_address"]:hover, .woocommerce input[name="apply_coupon"]:hover, .woocommerce form.register input[type="submit"]:hover, .woocommerce form.cart button.single_add_to_cart_button:hover, .woocommerce form.cart .yith-wcwl-add-to-wishlist a:hover, .load-more-btn:hover, .woocommerce-account input[name="change_password"]:hover {background: #1dc6df; color: #ffffff;}.woocommerce #account_details .login, .woocommerce #account_details .login h4.lined-heading span, .my-account-login-wrap .login-wrap, .my-account-login-wrap .login-wrap h4.lined-heading span, .woocommerce div.product form.cart table div.quantity {background: #f4f4f4;}.woocommerce .help-bar ul li a:hover, .woocommerce .continue-shopping:hover, .woocommerce .address .edit-address:hover, .my_account_orders td.order-number a:hover, .product_meta a.inline:hover { border-bottom-color: #1dc6df;}.woocommerce .order-info, .woocommerce .order-info mark {background: #1dc6df; color: #ffffff;}.woocommerce #payment div.payment_box:after {border-bottom-color: #f4f4f4;}.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content {background: #e4e4e4;}.woocommerce .widget_price_filter .ui-slider-horizontal .ui-slider-range {background: #f4f4f4;}.yith-wcwl-wishlistexistsbrowse a:hover, .yith-wcwl-wishlistaddedbrowse a:hover {color: #ffffff;}.woocommerce ul.products li.product .price, .woocommerce div.product p.price {color: #333333;}.woocommerce ul.products li.product-category .product-cat-info {background: #e4e4e4;}.woocommerce ul.products li.product-category .product-cat-info:before {border-bottom-color:#e4e4e4;}.woocommerce ul.products li.product-category a:hover .product-cat-info {background: #1dc6df; color: #ffffff;}.woocommerce ul.products li.product-category a:hover .product-cat-info h3 {color: #ffffff!important;}.woocommerce ul.products li.product-category a:hover .product-cat-info:before {border-bottom-color:#1dc6df;}.woocommerce input[name="apply_coupon"], .woocommerce-account input[name="change_password"] {background: #f4f4f4!important; color: #6b6b6b!important}.woocommerce input[name="apply_coupon"]:hover, .woocommerce-account input[name="change_password"]:hover, .woocommerce input[name="save_account_details"]:hover {background: #1dc6df!important; color: #ffffff!important;}#buddypress .activity-meta a, #buddypress .acomment-options a, #buddypress #member-group-links li a {border-color: #e4e4e4;}#buddypress .activity-meta a:hover, #buddypress .acomment-options a:hover, #buddypress #member-group-links li a:hover {border-color: #1dc6df;}#buddypress .activity-header a, #buddypress .activity-read-more a {border-color: #1dc6df;}#buddypress #members-list .item-meta .activity, #buddypress .activity-header p {color: #999999;}#buddypress .pagination-links span, #buddypress .load-more.loading a {background-color: #1dc6df;color: #ffffff;border-color: #1dc6df;}span.bbp-admin-links a, li.bbp-forum-info .bbp-forum-content {color: #999999;}span.bbp-admin-links a:hover {color: #1dc6df;}.bbp-topic-action #favorite-toggle a, .bbp-topic-action #subscription-toggle a, .bbp-single-topic-meta a, .bbp-topic-tags a, #bbpress-forums li.bbp-body ul.forum, #bbpress-forums li.bbp-body ul.topic, #bbpress-forums li.bbp-header, #bbpress-forums li.bbp-footer, #bbp-user-navigation ul li a, .bbp-pagination-links a, #bbp-your-profile fieldset input, #bbp-your-profile fieldset textarea, #bbp-your-profile, #bbp-your-profile fieldset {border-color: #e4e4e4;}.bbp-topic-action #favorite-toggle a:hover, .bbp-topic-action #subscription-toggle a:hover, .bbp-single-topic-meta a:hover, .bbp-topic-tags a:hover, #bbp-user-navigation ul li a:hover, .bbp-pagination-links a:hover {border-color: #1dc6df;}#bbp-user-navigation ul li.current a, .bbp-pagination-links span.current {border-color: #1dc6df;background: #1dc6df; color: #ffffff;}#bbpress-forums fieldset.bbp-form button[type="submit"], #bbp_user_edit_submit {background: #f4f4f4; color: #6b6b6b}#bbpress-forums fieldset.bbp-form button[type="submit"]:hover, #bbp_user_edit_submit:hover {background: #1dc6df; color: #ffffff;}.alt-bg {border-color: #e4e4e4;}.alt-bg.alt-one {background-color: #FFFFFF;}.alt-bg.alt-one {background-image: url(//www.wochurch.org/test/wp-content/uploads/2014/12/Texture-3.jpg); background-repeat: no-repeat; background-position: center center; background-size:cover;}.alt-bg.alt-one, .alt-bg.alt-one h1, .alt-bg.alt-one h2, .alt-bg.alt-one h3, .alt-bg.alt-one h3, .alt-bg.alt-one h4, .alt-bg.alt-one h5, .alt-bg.alt-one h6, .alt-one .carousel-wrap > a {color: #ffffff;}.alt-bg.alt-one h4.spb-center-heading span:before, .alt-bg.alt-one h4.spb-center-heading span:after {border-color: #ffffff;}.alt-one.full-width-text:after {border-top-color:#FFFFFF;}.alt-one h4.spb-text-heading, .alt-one h4.spb-heading {border-bottom-color:#ffffff;}.alt-bg.alt-two {background-color: #FFFFFF;}.alt-bg.alt-two {background-image: url(//www.wochurch.org/test/wp-content/uploads/2014/12/45degree_fabric.png); background-repeat: repeat; background-position: center top; background-size:auto;}.alt-bg.alt-two, .alt-bg.alt-two h1, .alt-bg.alt-two h2, .alt-bg.alt-two h3, .alt-bg.alt-two h3, .alt-bg.alt-two h4, .alt-bg.alt-two h5, .alt-bg.alt-two h6, .alt-two .carousel-wrap > a {color: #ffffff;}.alt-bg.alt-two h4.spb-center-heading span:before, .alt-bg.alt-two h4.spb-center-heading span:after {border-color: #ffffff;}.alt-two.full-width-text:after {border-top-color:#FFFFFF;}.alt-two h4.spb-text-heading, .alt-two h4.spb-heading {border-bottom-color:#ffffff;}.alt-bg.alt-three {background-color: #FFFFFF;}.alt-bg.alt-three {background-image: url(//www.wochurch.org/test/wp-content/uploads/2014/12/Texture-8.jpg); background-repeat: no-repeat; background-position: center center; background-size:cover;}.alt-bg.alt-three, .alt-bg.alt-three h1, .alt-bg.alt-three h2, .alt-bg.alt-three h3, .alt-bg.alt-three h3, .alt-bg.alt-three h4, .alt-bg.alt-three h5, .alt-bg.alt-three h6, .alt-three .carousel-wrap > a {color: #ffffff;}.alt-bg.alt-three h4.spb-center-heading span:before, .alt-bg.alt-three h4.spb-center-heading span:after {border-color: #ffffff;}.alt-three.full-width-text:after {border-top-color:#FFFFFF;}.alt-three h4.spb-text-heading, .alt-three h4.spb-heading {border-bottom-color:#ffffff;}.alt-bg.alt-four {background-color: #FFFFFF;}.alt-bg.alt-four {background-image: url(//www.wochurch.org/test/wp-content/uploads/2014/12/church.jpg); background-repeat: no-repeat; background-position: center center; background-size:cover;}.alt-bg.alt-four, .alt-bg.alt-four h1, .alt-bg.alt-four h2, .alt-bg.alt-four h3, .alt-bg.alt-four h3, .alt-bg.alt-four h4, .alt-bg.alt-four h5, .alt-bg.alt-four h6, .alt-four .carousel-wrap > a {color: #ffffff;}.alt-bg.alt-four h4.spb-center-heading span:before, .alt-bg.alt-four h4.spb-center-heading span:after {border-color: #ffffff;}.alt-four.full-width-text:after {border-top-color:#FFFFFF;}.alt-four h4.spb-text-heading, .alt-four h4.spb-heading {border-bottom-color:#ffffff;}.alt-bg.alt-five {background-color: #FFFFFF;}.alt-bg.alt-five {background-image: url(//www.wochurch.org/test/wp-content/uploads/2014/06/header_videos.jpg); background-repeat: no-repeat; background-position: center center; background-size:cover;}.alt-bg.alt-five, .alt-bg.alt-five h1, .alt-bg.alt-five h2, .alt-bg.alt-five h3, .alt-bg.alt-five h3, .alt-bg.alt-five h4, .alt-bg.alt-five h5, .alt-bg.alt-five h6, .alt-five .carousel-wrap > a {color: #ffffff;}.alt-bg.alt-five h4.spb-center-heading span:before, .alt-bg.alt-five h4.spb-center-heading span:after {border-color: #ffffff;}.alt-five.full-width-text:after {border-top-color:#FFFFFF;}.alt-five h4.spb-text-heading, .alt-five h4.spb-heading {border-bottom-color:#ffffff;}.alt-bg.alt-six {background-color: #FFFFFF;}.alt-bg.alt-six {background-image: url(//www.wochurch.org/test/wp-content/uploads/2013/10/header_learn.jpg); background-repeat: no-repeat; background-position: center center; background-size:cover;}.alt-bg.alt-six, .alt-bg.alt-six h1, .alt-bg.alt-six h2, .alt-bg.alt-six h3, .alt-bg.alt-six h3, .alt-bg.alt-six h4, .alt-bg.alt-six h5, .alt-bg.alt-six h6, .alt-six .carousel-wrap > a {color: #ffffff;}.alt-bg.alt-six h4.spb-center-heading span:before, .alt-bg.alt-six h4.spb-center-heading span:after {border-color: #ffffff;}.alt-six.full-width-text:after {border-top-color:#FFFFFF;}.alt-six h4.spb-text-heading, .alt-six h4.spb-heading {border-bottom-color:#ffffff;}.alt-bg.alt-seven {background-color: #FFFFFF;}.alt-bg.alt-seven {background-image: url(//www.wochurch.org/test/wp-content/uploads/2013/10/header_believe.jpg); background-repeat: no-repeat; background-position: center center; background-size:cover;}.alt-bg.alt-seven, .alt-bg.alt-seven h1, .alt-bg.alt-seven h2, .alt-bg.alt-seven h3, .alt-bg.alt-seven h3, .alt-bg.alt-seven h4, .alt-bg.alt-seven h5, .alt-bg.alt-seven h6, .alt-seven .carousel-wrap > a {color: #ffffff;}.alt-bg.alt-seven h4.spb-center-heading span:before, .alt-bg.alt-seven h4.spb-center-heading span:after {border-color: #ffffff;}.alt-seven.full-width-text:after {border-top-color:#FFFFFF;}.alt-seven h4.spb-text-heading, .alt-seven h4.spb-heading {border-bottom-color:#ffffff;}.alt-bg.alt-eight {background-color: #FFFFFF;}.alt-bg.alt-eight {background-image: url(//www.wochurch.org/test/wp-content/uploads/2014/10/twitter1.jpg); background-repeat: no-repeat; background-position: center center; background-size:cover;}.alt-bg.alt-eight, .alt-bg.alt-eight h1, .alt-bg.alt-eight h2, .alt-bg.alt-eight h3, .alt-bg.alt-eight h3, .alt-bg.alt-eight h4, .alt-bg.alt-eight h5, .alt-bg.alt-eight h6, .alt-eight .carousel-wrap > a {color: #ffffff;}.alt-bg.alt-eight h4.spb-center-heading span:before, .alt-bg.alt-eight h4.spb-center-heading span:after {border-color: #ffffff;}.alt-eight.full-width-text:after {border-top-color:#FFFFFF;}.alt-eight h4.spb-text-heading, .alt-eight h4.spb-heading {border-bottom-color:#ffffff;}.alt-bg.alt-nine {background-color: #FFFFFF;}.alt-bg.alt-nine, .alt-bg.alt-nine h1, .alt-bg.alt-nine h2, .alt-bg.alt-nine h3, .alt-bg.alt-nine h3, .alt-bg.alt-nine h4, .alt-bg.alt-nine h5, .alt-bg.alt-nine h6, .alt-nine .carousel-wrap > a {color: #222222;}.alt-bg.alt-nine h4.spb-center-heading span:before, .alt-bg.alt-nine h4.spb-center-heading span:after {border-color: #222222;}.alt-nine.full-width-text:after {border-top-color:#FFFFFF;}.alt-nine h4.spb-text-heading, .alt-nine h4.spb-heading {border-bottom-color:#222222;}.alt-bg.alt-ten {background-color: #FFFFFF;}.alt-bg.alt-ten, .alt-bg.alt-ten h1, .alt-bg.alt-ten h2, .alt-bg.alt-ten h3, .alt-bg.alt-ten h3, .alt-bg.alt-ten h4, .alt-bg.alt-ten h5, .alt-bg.alt-ten h6, .alt-ten .carousel-wrap > a {color: #222222;}.alt-bg.alt-ten h4.spb-center-heading span:before, .alt-bg.alt-ten h4.spb-center-heading span:after {border-color: #222222;}.alt-ten.full-width-text:after {border-top-color:#FFFFFF;}.alt-ten h4.spb-text-heading, .alt-ten h4.spb-heading {border-bottom-color:#222222;}.alt-bg.light-style, .alt-bg.light-style h1, .alt-bg.light-style h2, .alt-bg.light-style h3, .alt-bg.light-style h3, .alt-bg.light-style h4, .alt-bg.light-style h5, .alt-bg.light-style h6 {color: #fff!important;}.alt-bg.dark-style, .alt-bg.dark-style h1, .alt-bg.dark-style h2, .alt-bg.dark-style h3, .alt-bg.dark-style h3, .alt-bg.dark-style h4, .alt-bg.dark-style h5, .alt-bg.dark-style h6 {color: #222!important;}h1, h2, h3, h4, h5, .heading-font, .custom-caption p, span.dropcap1, span.dropcap2, span.dropcap3, span.dropcap4, .spb_call_text, .impact-text, .impact-text-large, .testimonial-text, .header-advert, .spb_call_text, .impact-text, .sf-count-asset .count-number, #base-promo, .sf-countdown, .fancy-heading h1, .sf-icon-character {font-family: "Roboto Slab", sans-serif;font-weight: 700;font-style: normal;}nav .menu li {font-family: "Roboto Slab", sans-serif;font-weight: 400;font-style: normal;}@media only screen and (max-width: 767px) {#top-bar nav .menu > li {border-top-color: #f7f7f7;}nav .menu > li {border-top-color: #e4e4e4;}}</style>
    in reply to: Swift Builder – Trouble Moving Elements #135899
    wochurch
    Member
    Post count: 55
    This reply has been marked as private.
    in reply to: Link Tracking #124809
    wochurch
    Member
    Post count: 55

    Unfortunately, I haven’t been able to make this work.

    Here’s their guide to tracking links. This will do a better job than I have at explaining what needs to happen. I will ultimately need to be able to do both ASYNCHRONOUS EVENT TRACKING and LINK TRACKING.

    http://www.visistat.com/tracking/help.php?hs=event%20and%20link%20tracking

    On this last go, I put this in the custom JS:

    <script>
    jQuery( document ).ready(function($) {
    $( "a.trackMe" ).click(function() {
    VSCapture($(this).attr('href')); return true;
    });
    
    });
    </script>

    and in the extra class name at the bottom of the text box I put trackMe (I also tried putting it inline:

    in reply to: Link Tracking #124763
    wochurch
    Member
    Post count: 55

    Okay, so I’ll put this line in the custom JS field:

    <script>
    jQuery( document ).ready(function($) {
    $( "a.trackMe" ).click(function() {
    VSCapture($(this).attr('href')); return true;
    });
    
    });
    </script>

    And I’ll put trackMe in the extra class field when I’m editing the content and link.

    How do I change the variable for each link? For example, in the old cold:

    ONCLICK=”VSCapture(‘link1’)” TARGET=”new”
    ONCLICK=”VSCapture(‘link2’)” TARGET=”new”
    ONCLICK=”VSCapture(‘link3’)” TARGET=”new”

    Would render on the backend:
    link1 = 31 clicks
    link2 = 100 clicks
    link3 = 57 clicks

    in reply to: Link Tracking #124748
    wochurch
    Member
    Post count: 55

    href is my variable?

    in reply to: Link Tracking #124746
    wochurch
    Member
    Post count: 55

    Ah, okay. I apologize for not explaining my question very well and I appreciate your patience.

    page-name-here is the name of the individual href I’m tracking. So I could have 50 of these on one page, and I’ll need to be able to sort them out on the backend later by the name I give them.

    in reply to: Link Tracking #124740
    wochurch
    Member
    Post count: 55

    You guys are brilliant. Okay, so where do I pass the name variable?

    `ONCLICK=”VSCapture(‘page-name-here’)” TARGET=”new”

    page-name-here is user defined to help organize the links on the backend.

Viewing 15 posts - 31 through 45 (of 55 total)