Viewing 30 results - 91 through 120 (of 276 total)
  • Author
    Search Results
  • #948204

    SOLVED
    Ok it seems the problem was that I did not have my WP “Site Address” and “WordPress Address” matching as they should have been (I misunderstood my configuration) … and so I guess the htacces file was modified incorrectly. Once I replaced it with the generic content that it should have had, the Enfold icons showed up and all pages worked normally.

    Still don’t understand why the htaccess file wasn’t rewritten correctly by WP when I fixed my address.

    I feel a little silly but hopefully this post and the tags I’ve added can help someone else!

    BTW – I used to use another uber-popular WP theme from ThemeForest (few years ago) but Enfold has been downright dreamy :D … will be using it for everything going forward … thanx!

    #942852
    arnacampbell
    Participant

    Hi Guys,
    I have a few issues with my website. I have moved from a custom CMS to this theme and tried to copy the site as closely as possible but there are some things I can’t figure out. New site is https://campbel3.mywhc.ca and the old website is https://www.campbellhillsguestranch.com/
    I will list them and see how we go!
    HEADER:
    – I’d like the phone number in the header with the social icons.
    – I’d like a button on the left, just like https://www.campbellhillsguestranch.com
    – Can the drop down menu have the same background as the header? With white text?
    – Rope separator with drop shadow (same as https://www.campbellhillsguestranch.com). At the moment, I’ve just attached the rope to the background header image but it leaves a space. I’d like it to overlap.
    FOOTER:
    – Rope separator with drop shadow, same as header and https://www.campbellhillsguestranch.com.
    – Can the social icons be in the footer, like https://www.campbellhillsguestranch.com?
    – Can I add a button into the footer?
    BODY:
    – How can I make the title appear below the slider? eg. https://campbel3.mywhc.ca/activities/. Though I will most likely be using Layerslider WP, not the Slider as per this page.
    – Slider – I’d also like the rope to appear at the bottom of the slider (overlapping) like https://www.campbellhillsguestranch.com/site/activities/children-and-horses.html
    – There is a huge space between the title and the first elements. How can that be reduced?
    – Bullet points – can I make a custom bullet point? like https://www.campbellhillsguestranch.com/site/guest-ranch-vacations/packing-list.html
    – Gallery – I want to remove the white border. I also want to remove the hover captions.
    – Masonry Gallery – I want a transparent background. Just like https://www.campbellhillsguestranch.com/site/activities/children-and-horses.html. It is currently https://campbel3.mywhc.ca/activities/children-and-horses/.
    – Masonry Gallery – Is there an option for a more stylish setup? like two at the top and three at the bottom?
    – Grid – Can I customize the grid colours/background? Like https://www.campbellhillsguestranch.com/site/guest-ranch-vacations/rates-and-availability.html
    BUTTONS:
    – Can I customize the buttons to have a particular background image (not just colour)? They can all be the same, but Id like to use an image, like https://www.campbellhillsguestranch.com/.
    FORM:
    – Can I customize the size of the words and spacing between form elements?
    Thanks!
    Arna

    • This topic was modified 7 years, 11 months ago by arnacampbell.
    #938643

    Topic: Add Fontello Icons

    in forum Enfold
    june
    Participant

    Hi
    I’ve just tried to add a few icons from Fontello to my Enfold theme. I chose the ones I wanted and then downloaded them. I then went to Import/Export and uploaded the zip file in the Fontello Font section. The error message I get is please insert a valid zip file, you can create the file on Fontello.

    Could you check and see what the issue is please?
    Thanks
    June

    #932516

    Hi,

    The easiest way to change the footer link is to add HTML links or custom text can be added in the copyright field as shown below. If you like to display a button here a button shortcode can also be added in place of Html tag.

    Copyright – MyService

    The second issue in the footer is related to social icons.

    Please check Enfold > Social profiles

    Best regards,
    Vinay

    • This reply was modified 8 years ago by Vinay.
    pennapowers
    Participant

    Hello –

    We are attempting to add ADA / 508 functionality to some of our Enfold sites and we’ve had some success but I’ve hit a roadblock when it comes to the mobile menu and the frontend_icon method inside font-manager.class.php. From what I understand after looking at the template files, the mobile menu icon is output as follows –

    Around lines 18-21 of helper-main-menu.php there’s an echo statement which outputs the result of method av_icon_string:

    if($responsive)
    {
    echo ‘‘;
    echo ‘‘;
    }

    I found that method located inside font-manager.class.php (lines ~ 691-697):

    //pass a string that matches one of the key of the global font_icons array to get the whole string
    function av_icon_string($char)
    {
    global $avia_config;

    if(!isset($avia_config[‘font_icons’][$char][‘icon’])) $char = ‘standard’;

    return avia_font_manager::frontend_icon($avia_config[‘font_icons’][$char][‘icon’], $avia_config[‘font_icons’][$char][‘font’]);
    }

    Which basically calls a static method inside the class:

    // helper function that displays the icon symbol string in the frontend
    static function frontend_icon($icon, $font = false, $return = ‘string’)
    {
    //if we got no font passed use the default font
    if(empty($font)) $font = key(AviaBuilder::$default_iconfont);

    //fetch the character to display
    $display_char = self::get_display_char($icon, $font);

    //return the html string that gets attached to the element. css classes for font display are generated automatically
    if($return == ‘string’)
    {
    return “aria-hidden=’true’ data-av_icon='{$display_char}’ data-av_iconfont='{$font}'”;
    }
    else
    {
    return $display_char;
    }
    }

    The problem is that I don’t see any filter or action hook to modify the aria-hidden=true attribute, so it’s essentially “hard coded” into the theme as far as I can tell.

    I tried overriding the helper-main-menu.php file in my child theme but it seems like it could cause problems in the future as the theme is updated and we don’t want to maintain that much child theme code.

    I realized I could probably use jQuery / javascript to remove the aria-hidden and then set my own attributes, but I’m wondering if there’s a php way so we can modify the output before it’s ever actually echoed out. As it stands now, it appears that all icons are hidden from the screen reader. (Including the social icons – which I was able to un-hide and add labels to using jQuery… but as I said it seems a bit clunky to do it that way?)

    Any ideas would be appreciated.

    #912476

    Yes did
    I can see the new enfolc_child.css and there is code in it, but on the frontend nothing changes, even not after refresh the browser cache.
    this is the new code

    ::-moz-selection{background-color: #f39200;color: #ffffff;}::selection{background-color: #f39200;color: #ffffff;}html.html_boxed {background: #eeeeee top left no-repeat scroll;}.socket_color, .socket_color div, .socket_color header, .socket_color main, .socket_color aside, .socket_color footer, .socket_color article, .socket_color nav, .socket_color section, .socket_color span, .socket_color applet, .socket_color object, .socket_color iframe, .socket_color h1, .socket_color h2, .socket_color h3, .socket_color h4, .socket_color h5, .socket_color h6, .socket_color p, .socket_color blockquote, .socket_color pre, .socket_color a, .socket_color abbr, .socket_color acronym, .socket_color address, .socket_color big, .socket_color cite, .socket_color code, .socket_color del, .socket_color dfn, .socket_color em, .socket_color img, .socket_color ins, .socket_color kbd, .socket_color q, .socket_color s, .socket_color samp, .socket_color small, .socket_color strike, .socket_color strong, .socket_color sub, .socket_color sup, .socket_color tt, .socket_color var, .socket_color b, .socket_color u, .socket_color i, .socket_color center, .socket_color dl, .socket_color dt, .socket_color dd, .socket_color ol, .socket_color ul, .socket_color li, .socket_color fieldset, .socket_color form, .socket_color label, .socket_color legend, .socket_color table, .socket_color caption, .socket_color tbody, .socket_color tfoot, .socket_color thead, .socket_color tr, .socket_color th, .socket_color td, .socket_color article, .socket_color aside, .socket_color canvas, .socket_color details, .socket_color embed, .socket_color figure, .socket_color fieldset, .socket_color figcaption, .socket_color footer, .socket_color header, .socket_color hgroup, .socket_color menu, .socket_color nav, .socket_color output, .socket_color ruby, .socket_color section, .socket_color summary, .socket_color time, .socket_color mark, .socket_color audio, .socket_color video, #top .socket_color .pullquote_boxed, .responsive #top .socket_color .avia-testimonial, .responsive #top.avia-blank #main .socket_color.container_wrap:first-child, #top .socket_color.fullsize .template-blog .post_delimiter, .socket_color .related_posts.av-related-style-full a{border-color:#e1e1e1;}.socket_color .rounded-container, #top .socket_color .pagination a:hover, .socket_color .small-preview, .socket_color .fallback-post-type-icon{background:#de8603;color:#ffffff;}.socket_color .av-default-color, #top .socket_color .av-force-default-color, .socket_color .av-catalogue-item, .socket_color .wp-playlist-item .wp-playlist-caption, .socket_color .wp-playlist{color: #de8603;}.socket_color , .socket_color .site-background, .socket_color .first-quote, .socket_color .related_image_wrap, .socket_color .gravatar img .socket_color .hr_content, .socket_color .news-thumb, .socket_color .post-format-icon, .socket_color .ajax_controlls a, .socket_color .tweet-text.avatar_no, .socket_color .toggler, .socket_color .toggler.activeTitle:hover, .socket_color #js_sort_items, .socket_color.inner-entry, .socket_color .grid-entry-title, .socket_color .related-format-icon, .grid-entry .socket_color .avia-arrow, .socket_color .avia-gallery-big, .socket_color .avia-gallery-big, .socket_color .avia-gallery img, .socket_color .grid-content, .socket_color .av-share-box ul, #top .socket_color .av-related-style-full .related-format-icon, .socket_color .related_posts.av-related-style-full a:hover, .socket_color.avia-fullwidth-portfolio .pagination .current, .socket_color.avia-fullwidth-portfolio .pagination a, .socket_color .av-hotspot-fallback-tooltip-inner, .socket_color .av-hotspot-fallback-tooltip-count{background-color:#ffffff;color: #de8603;}.socket_color .heading-color, .socket_color a.iconbox_icon:hover, .socket_color h1, .socket_color h2, .socket_color h3, .socket_color h4, .socket_color h5, .socket_color h6, .socket_color .sidebar .current_page_item>a, .socket_color .sidebar .current-menu-item>a, .socket_color .pagination .current, .socket_color .pagination a:hover, .socket_color strong.avia-testimonial-name, .socket_color .heading, .socket_color .toggle_content strong, .socket_color .toggle_content strong a, .socket_color .tab_content strong, .socket_color .tab_content strong a , .socket_color .asc_count, .socket_color .avia-testimonial-content strong, .socket_color div .news-headline, #top .socket_color .av-related-style-full .av-related-title, .socket_color .av-default-style .av-countdown-cell-inner .av-countdown-time, .socket_color .wp-playlist-item-meta.wp-playlist-item-title, #top .socket_color .av-no-image-slider h2 a, .socket_color .av-small-bar .avia-progress-bar .progressbar-title-wrap{ color:#666666;}.socket_color .meta-color, .socket_color .sidebar, .socket_color .sidebar a, .socket_color .minor-meta, .socket_color .minor-meta a, .socket_color .text-sep, .socket_color blockquote, .socket_color .post_nav a, .socket_color .comment-text, .socket_color .side-container-inner, .socket_color .news-time, .socket_color .pagination a, .socket_color .pagination span, .socket_color .tweet-text.avatar_no .tweet-time, #top .socket_color .extra-mini-title, .socket_color .team-member-job-title, .socket_color .team-social a, .socket_color #js_sort_items a, .grid-entry-excerpt, .socket_color .avia-testimonial-subtitle, .socket_color .commentmetadata a,.socket_color .social_bookmarks a, .socket_color .meta-heading>*, .socket_color .slide-meta, .socket_color .slide-meta a, .socket_color .taglist, .socket_color .taglist a, .socket_color .phone-info, .socket_color .phone-info a, .socket_color .av-sort-by-term a, .socket_color .av-magazine-time, .socket_color .av-magazine .av-magazine-entry-icon, .socket_color .av-catalogue-content, .socket_color .wp-playlist-item-length, .html_modern-blog #top div .socket_color .blog-categories a, .html_modern-blog #top div .socket_color .blog-categories a:hover{color: #de8603;}.socket_color .special-heading-inner-border{ border-color: #de8603; }.socket_color .meta-heading .special-heading-inner-border{ border-color: #de8603; }.socket_color a, .socket_color .widget_first, .socket_color strong, .socket_color b, .socket_color b a, .socket_color strong a, .socket_color #js_sort_items a:hover, .socket_color #js_sort_items a.active_sort, .socket_color .av-sort-by-term a.active_sort, .socket_color .special_amp, .socket_color .taglist a.activeFilter, .socket_color #commentform .required, #top .socket_color .av-no-color.av-icon-style-border a.av-icon-char, .html_elegant-blog #top .socket_color .blog-categories a, .html_elegant-blog #top .socket_color .blog-categories a:hover{color:#de8603;}.socket_color a:hover, .socket_color h1 a:hover, .socket_color h2 a:hover, .socket_color h3 a:hover, .socket_color h4 a:hover, .socket_color h5 a:hover, .socket_color h6 a:hover, .socket_color .template-search a.news-content:hover, .socket_color .wp-playlist-item .wp-playlist-caption:hover{color: #de8603;}.socket_color .primary-background, .socket_color .primary-background a, div .socket_color .button, .socket_color #submit, .socket_color input[type=’submit’], .socket_color .small-preview:hover, .socket_color .avia-menu-fx, .socket_color .avia-menu-fx .avia-arrow, .socket_color.iconbox_top .iconbox_icon, .socket_color .iconbox_top a.iconbox_icon:hover, .socket_color .avia-data-table th.avia-highlight-col, .socket_color .avia-color-theme-color, .socket_color .avia-color-theme-color:hover, .socket_color .image-overlay .image-overlay-inside:before, .socket_color .comment-count, .socket_color .av_dropcap2, #top #wrap_all .socket_color .av-menu-button-colored > a .avia-menu-text, .socket_color .av-colored-style .av-countdown-cell-inner, .responsive #top .socket_color .av-open-submenu.av-subnav-menu > li > a:hover, #top .socket_color .av-open-submenu.av-subnav-menu li > ul a:hover{background-color: #de8603;color:#ffffff;border-color:#bc6401;}#top .socket_color .mobile_menu_toggle{color: #de8603;background:#ffffff;}#top .socket_color .av-menu-mobile-active .av-subnav-menu > li > a:before{color: #de8603;}#top .socket_color .av-open-submenu.av-subnav-menu > li > a:hover:before{color: #ffffff;}.socket_color .button:hover, .socket_color .ajax_controlls a:hover, .socket_color #submit:hover, .socket_color .big_button:hover, .socket_color .contentSlideControlls a:hover, .socket_color #submit:hover , .socket_color input[type=’submit’]:hover{background-color: #de8603;color:#ffffff;border-color:#bc6401;}.socket_color .ajax_controlls a:hover{border-color:#de8603;}.socket_color .timeline-bullet{background-color:#e1e1e1;border-color: #ffffff;}.socket_color table, .socket_color .widget_nav_menu ul:first-child>.current-menu-item, .socket_color .widget_nav_menu ul:first-child>.current_page_item, .socket_color .widget_nav_menu ul:first-child>.current-menu-ancestor, .socket_color .pagination .current, .socket_color .pagination a, .socket_color.iconbox_top .iconbox_content, .socket_color .av_promobox, .socket_color .toggle_content, .socket_color .toggler:hover, #top .socket_color .av-minimal-toggle .toggler, .socket_color .related_posts_default_image, .socket_color .search-result-counter, .socket_color .container_wrap_meta, .socket_color .avia-content-slider .slide-image, .socket_color .avia-slider-testimonials .avia-testimonial-content, .socket_color .avia-testimonial-arrow-wrap .avia-arrow, .socket_color .news-thumb, .socket_color .portfolio-preview-content, .socket_color .portfolio-preview-content .avia-arrow, .socket_color .av-magazine .av-magazine-entry-icon, .socket_color .related_posts.av-related-style-full a, .socket_color .aviaccordion-slide, .socket_color.avia-fullwidth-portfolio .pagination, .socket_color .isotope-item.special_av_fullwidth .av_table_col.portfolio-grid-image, .socket_color .av-catalogue-list li:hover, .socket_color .wp-playlist, .socket_color .avia-slideshow-fixed-height > li, .socket_color .avia-form-success, .socket_color .av-boxed-grid-style .avia-testimonial{background: #1c1c1c;}#top .socket_color .post_timeline li:hover .timeline-bullet{background-color:#de8603;}.socket_color blockquote, .socket_color .avia-bullet, .socket_color .av-no-color.av-icon-style-border a.av-icon-char{border-color:#de8603;}.html_header_top .socket_color .main_menu ul:first-child >li > ul, .html_header_top #top .socket_color .avia_mega_div > .sub-menu{border-top-color:#de8603;}.socket_color .breadcrumb, .socket_color .breadcrumb a, #top .socket_color.title_container .main-title, #top .socket_color.title_container .main-title a{color:#de8603;}.socket_color .av-icon-display, #top .socket_color .av-related-style-full a:hover .related-format-icon, .socket_color .av-default-style .av-countdown-cell-inner{background-color:#1c1c1c;color:#de8603;}.socket_color .av-masonry-entry:hover .av-icon-display{background-color: #de8603;color:#ffffff;border-color:#bc6401;}#top .socket_color .av-masonry-entry.format-quote:hover .av-icon-display{color:#de8603;}.socket_color ::-webkit-input-placeholder {color: #de8603; }.socket_color ::-moz-placeholder {color: #de8603; opacity:1; }.socket_color :-ms-input-placeholder {color: #de8603;}.socket_color .header_bg, .socket_color .main_menu ul ul, .socket_color .main_menu .menu ul li a, .socket_color .pointer_arrow_wrap .pointer_arrow, .socket_color .avia_mega_div, .socket_color .av-subnav-menu > li ul, .socket_color .av-subnav-menu a{background-color:#ffffff;color: #de8603;}.socket_color .main_menu .menu ul li a:hover, .socket_color .av-subnav-menu ul a:hover{background-color:#1c1c1c;}.socket_color .sub_menu>ul>li>a, .socket_color .sub_menu>div>ul>li>a, .socket_color .main_menu ul:first-child > li > a, #top .socket_color .main_menu .menu ul .current_page_item > a, #top .socket_color .main_menu .menu ul .current-menu-item > a , #top .socket_color .sub_menu li ul a{color:#de8603;}#top .socket_color .main_menu .menu ul li>a:hover{color:#de8603;}.socket_color .av-subnav-menu a:hover,.socket_color .main_menu ul:first-child > li a:hover,.socket_color .main_menu ul:first-child > li.current-menu-item > a,.socket_color .main_menu ul:first-child > li.current_page_item > a,.socket_color .main_menu ul:first-child > li.active-parent-item > a{color:#de8603;}#top .socket_color .main_menu .menu .avia_mega_div ul .current-menu-item > a{color:#de8603;}.socket_color .sub_menu>ul>li>a:hover, .socket_color .sub_menu>div>ul>li>a:hover{color:#de8603;}#top .socket_color .sub_menu ul li a:hover,.socket_color .sub_menu ul:first-child > li.current-menu-item > a,.socket_color .sub_menu ul:first-child > li.current_page_item > a,.socket_color .sub_menu ul:first-child > li.active-parent-item > a{color:#de8603;}.socket_color .sub_menu li ul a, .socket_color #payment, .socket_color .sub_menu ul li, .socket_color .sub_menu ul, #top .socket_color .sub_menu li li a:hover{background-color: #ffffff;}.socket_color#header .avia_mega_div > .sub-menu.avia_mega_hr, .html_bottom_nav_header.html_logo_center #top #menu-item-search>a{border-color:#e1e1e1;}@media only screen and (max-width: 767px) { #top #wrap_all .av_header_transparency{background-color:#ffffff;color: #de8603;border-color: #e1e1e1;}}.socket_color .avia-tt, .socket_color .avia-tt .avia-arrow, .socket_color .avia-tt .avia-arrow{background-color: #ffffff;color: #de8603;}.socket_color .ajax_search_image{background-color: #de8603;color:#ffffff;}.socket_color .ajax_search_excerpt{color: #de8603;}#top .socket_color .ajax_search_entry:hover{background-color:#1c1c1c;}.socket_color .ajax_search_title{color: #666666;}.socket_color .ajax_load{background-color:#de8603;}#top .socket_color .avia-color-theme-color{color: #ffffff;border-color: #bc6401;}.socket_color .avia-color-theme-color-subtle{background-color:#1c1c1c;color: #de8603;}.socket_color .avia-color-theme-color-subtle:hover{background-color:#ffffff;color: #666666;}#top .socket_color .avia-color-theme-color-highlight{color: #ffffff;border-color: #de8603;background-color: #de8603;}.socket_color .avia-icon-list .iconlist_icon{background-color:#d0d0d0;}.socket_color .avia-icon-list .iconlist-timeline{border-color:#e1e1e1;}.socket_color .iconlist_content{color:#de8603;}#top .socket_color .input-text, #top .socket_color input[type=’text’], #top .socket_color input[type=’input’], #top .socket_color input[type=’password’], #top .socket_color input[type=’email’], #top .socket_color input[type=’number’], #top .socket_color input[type=’url’], #top .socket_color input[type=’tel’], #top .socket_color input[type=’search’], #top .socket_color textarea, #top .socket_color select{border-color:#e1e1e1;background-color: #1c1c1c;color:#de8603;}#top .socket_color .invers-color .input-text, #top .socket_color .invers-color input[type=’text’], #top .socket_color .invers-color input[type=’input’], #top .socket_color .invers-color input[type=’password’], #top .socket_color .invers-color input[type=’email’], #top .socket_color .invers-color input[type=’number’], #top .socket_color .invers-color input[type=’url’], #top .socket_color .invers-color input[type=’tel’], #top .socket_color .invers-color input[type=’search’], #top .socket_color .invers-color textarea, #top .socket_color .invers-color select{background-color: #ffffff;}.socket_color .required{color:#de8603;}.socket_color .av-masonry{background-color: #0b0b0b; }.socket_color .av-masonry-pagination, .socket_color .av-masonry-pagination:hover, .socket_color .av-masonry-outerimage-container{background-color: #ffffff;}.socket_color .container .av-inner-masonry-content, #top .socket_color .container .av-masonry-load-more, #top .socket_color .container .av-masonry-sort, .socket_color .container .av-masonry-entry .avia-arrow{background-color: #1c1c1c;} .socket_color .hr-short .hr-inner-style, .socket_color .hr-short .hr-inner{background-color: #ffffff;}div .socket_color .tabcontainer .active_tab_content, div .socket_color .tabcontainer .active_tab{background-color: #1c1c1c;color:#de8603;}.responsive.js_active #top .socket_color .avia_combo_widget .top_tab .tab{border-top-color:#e1e1e1;}.socket_color .template-archives .tabcontainer a, #top .socket_color .tabcontainer .tab:hover, #top .socket_color .tabcontainer .tab.active_tab{color:#de8603;} .socket_color .template-archives .tabcontainer a:hover{color:#de8603;}.socket_color .sidebar_tab_icon {background-color: #e1e1e1;}#top .socket_color .sidebar_active_tab .sidebar_tab_icon {background-color: #de8603;}.socket_color .sidebar_tab:hover .sidebar_tab_icon {background-color: #de8603;}.socket_color .sidebar_tab, .socket_color .tabcontainer .tab{color: #de8603;}.socket_color div .sidebar_active_tab , div .socket_color .tabcontainer.noborder_tabs .active_tab_content, div .socket_color .tabcontainer.noborder_tabs .active_tab{color: #de8603;background-color: #ffffff;}#top .avia-smallarrow-slider .avia-slideshow-dots a{background-color: #1c1c1c;}#top .socket_color .avia-smallarrow-slider .avia-slideshow-dots a.active, #top .socket_color .avia-smallarrow-slider .avia-slideshow-dots a:hover{background-color: #de8603;}@media only screen and (max-width: 767px) {.responsive #top .socket_color .tabcontainer .active_tab{ background-color: #de8603; color:#ffffff; } /*hard coded white to match the icons beside which are also white*/.responsive #top .socket_color .tabcontainer{border-color:#e1e1e1;}.responsive #top .socket_color .active_tab_content{background-color: #1c1c1c;}}.socket_color tr:nth-child(even), .socket_color .avia-data-table .avia-heading-row .avia-desc-col, .socket_color .avia-data-table .avia-highlight-col, .socket_color .pricing-table>li:nth-child(even), body .socket_color .pricing-table.avia-desc-col li, #top .socket_color .avia-data-table.avia_pricing_minimal th{background-color:#ffffff;color: #de8603;}.socket_color table caption, .socket_color tr:nth-child(even), .socket_color .pricing-table>li:nth-child(even), #top .socket_color .avia-data-table.avia_pricing_minimal td{color: #de8603;}.socket_color tr:nth-child(odd), .socket_color .pricing-table>li:nth-child(odd), .socket_color .pricing-extra{background: #1c1c1c;}.socket_color .pricing-table li.avia-pricing-row, .socket_color .pricing-table li.avia-heading-row, .socket_color .pricing-table li.avia-pricing-row .pricing-extra{background-color: #de8603;color:#ffffff;border-color:#ffa825;}.socket_color .pricing-table li.avia-heading-row, .socket_color .pricing-table li.avia-heading-row .pricing-extra{background-color: #ef9714;color:#ffffff;border-color:#ffa825;}.socket_color .pricing-table.avia-desc-col .avia-heading-row, .socket_color .pricing-table.avia-desc-col .avia-pricing-row{border-color:#e1e1e1;}.socket_color .theme-color-bar .bar{background: #de8603;}.socket_color .mejs-controls .mejs-time-rail .mejs-time-current, .socket_color .mejs-controls .mejs-volume-button .mejs-volume-slider .mejs-volume-current, .socket_color .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current, .socket_color .button.av-sending-button, .socket_color .av-striped-bar .theme-color-bar .bar{background: #de8603;}body .socket_color .mejs-controls .mejs-time-rail .mejs-time-float {background: #de8603;color: #fff;}body .socket_color .mejs-controls .mejs-time-rail .mejs-time-float-corner {border: solid 4px #de8603;border-color: #de8603 transparent transparent transparent;}.socket_color .progress{background-color:#1c1c1c;} .socket_color .button.av-sending-button{background: #de8603;background-image:-webkit-linear-gradient(-45deg, #de8603 25%, #ef9714 25%, #ef9714 50%, #de8603 50%, #de8603 75%, #ef9714 75%, #ef9714);background-image: -moz-linear-gradient(-45deg, #de8603 25%, #ef9714 25%, #ef9714 50%, #de8603 50%, #de8603 75%, #ef9714 75%, #ef9714);background-image: linear-gradient(-45deg, #de8603 25%, #ef9714 25%, #ef9714 50%, #de8603 50%, #de8603 75%, #ef9714 75%, #ef9714);border-color:#de8603;}.socket_color span.bbp-admin-links a{color: #de8603;}.socket_color span.bbp-admin-links a:hover{color: #de8603;}#top .socket_color .bbp-reply-content, #top .socket_color .bbp-topic-content, #top .socket_color .bbp-body .super-sticky .page-numbers, #top .socket_color .bbp-body .sticky .page-numbers, #top .socket_color .bbp-pagination-links a:hover, #top .socket_color .bbp-pagination-links span.current{ background:#ffffff; }#top .socket_color .bbp-topics .bbp-header, #top .socket_color .bbp-topics .bbp-header, #top .socket_color .bbp-forums .bbp-header, #top .socket_color .bbp-topics-front ul.super-sticky, #top .socket_color .bbp-topics ul.super-sticky, #top .socket_color .bbp-topics ul.sticky, #top .socket_color .bbp-forum-content ul.sticky, #top .socket_color .bbp-body .page-numbers{background-color:#1c1c1c;}#top .socket_color .bbp-meta, #top .socket_color .bbp-author-role, #top .socket_color .bbp-author-ip, #top .socket_color .bbp-pagination-count, #top .socket_color .bbp-topics .bbp-body .bbp-topic-title:before{color: #de8603;}#top .socket_color .bbp-admin-links{color:#e1e1e1;}.socket_color #bbpress-forums li.bbp-body ul.forum, .socket_color #bbpress-forums li.bbp-body ul.topic,.avia_transform .socket_color .bbp-replies .bbp-reply-author:before, .avia_transform .forum-search .socket_color .bbp-reply-author:before,.avia_transform .forum-search .socket_color .bbp-topic-author:before{background-color:#ffffff;border-color:#e1e1e1;}#top .socket_color .bbp-author-name{color:#666666;}.socket_color .widget_display_stats dt, .socket_color .widget_display_stats dd{background-color:#1c1c1c;}.socket_color dropcap2, .socket_color dropcap3, .socket_color avia_button, .socket_color avia_button:hover, .socket_color .on-primary-color, .socket_color .on-primary-color:hover{color: #ffffff;}html, #scroll-top-link{ background-color: #ffffff; }#scroll-top-link{ color: #de8603; border:1px solid #e1e1e1; }.html_stretched #wrap_all{background-color:#ffffff;}.footer_color, .footer_color div, .footer_color header, .footer_color main, .footer_color aside, .footer_color footer, .footer_color article, .footer_color nav, .footer_color section, .footer_color span, .footer_color applet, .footer_color object, .footer_color iframe, .footer_color h1, .footer_color h2, .footer_color h3, .footer_color h4, .footer_color h5, .footer_color h6, .footer_color p, .footer_color blockquote, .footer_color pre, .footer_color a, .footer_color abbr, .footer_color acronym, .footer_color address, .footer_color big, .footer_color cite, .footer_color code, .footer_color del, .footer_color dfn, .footer_color em, .footer_color img, .footer_color ins, .footer_color kbd, .footer_color q, .footer_color s, .footer_color samp, .footer_color small, .footer_color strike, .footer_color strong, .footer_color sub, .footer_color sup, .footer_color tt, .footer_color var, .footer_color b, .footer_color u, .footer_color i, .footer_color center, .footer_color dl, .footer_color dt, .footer_color dd, .footer_color ol, .footer_color ul, .footer_color li, .footer_color fieldset, .footer_color form, .footer_color label, .footer_color legend, .footer_color table, .footer_color caption, .footer_color tbody, .footer_color tfoot, .footer_color thead, .footer_color tr, .footer_color th, .footer_color td, .footer_color article, .footer_color aside, .footer_color canvas, .footer_color details, .footer_color embed, .footer_color figure, .footer_color fieldset, .footer_color figcaption, .footer_color footer, .footer_color header, .footer_color hgroup, .footer_color menu, .footer_color nav, .footer_color output, .footer_color ruby, .footer_color section, .footer_color summary, .footer_color time, .footer_color mark, .footer_color audio, .footer_color video, #top .footer_color .pullquote_boxed, .responsive #top .footer_color .avia-testimonial, .responsive #top.avia-blank #main .footer_color.container_wrap:first-child, #top .footer_color.fullsize .template-blog .post_delimiter, .footer_color .related_posts.av-related-style-full a{border-color:#e1e1e1;}.footer_color .rounded-container, #top .footer_color .pagination a:hover, .footer_color .small-preview, .footer_color .fallback-post-type-icon{background:#de8603;color:#ffffff;}.footer_color .av-default-color, #top .footer_color .av-force-default-color, .footer_color .av-catalogue-item, .footer_color .wp-playlist-item .wp-playlist-caption, .footer_color .wp-playlist{color: #f39200;}.footer_color , .footer_color .site-background, .footer_color .first-quote, .footer_color .related_image_wrap, .footer_color .gravatar img .footer_color .hr_content, .footer_color .news-thumb, .footer_color .post-format-icon, .footer_color .ajax_controlls a, .footer_color .tweet-text.avatar_no, .footer_color .toggler, .footer_color .toggler.activeTitle:hover, .footer_color #js_sort_items, .footer_color.inner-entry, .footer_color .grid-entry-title, .footer_color .related-format-icon, .grid-entry .footer_color .avia-arrow, .footer_color .avia-gallery-big, .footer_color .avia-gallery-big, .footer_color .avia-gallery img, .footer_color .grid-content, .footer_color .av-share-box ul, #top .footer_color .av-related-style-full .related-format-icon, .footer_color .related_posts.av-related-style-full a:hover, .footer_color.avia-fullwidth-portfolio .pagination .current, .footer_color.avia-fullwidth-portfolio .pagination a, .footer_color .av-hotspot-fallback-tooltip-inner, .footer_color .av-hotspot-fallback-tooltip-count{background-color:#ffffff;color: #f39200;}.footer_color .heading-color, .footer_color a.iconbox_icon:hover, .footer_color h1, .footer_color h2, .footer_color h3, .footer_color h4, .footer_color h5, .footer_color h6, .footer_color .sidebar .current_page_item>a, .footer_color .sidebar .current-menu-item>a, .footer_color .pagination .current, .footer_color .pagination a:hover, .footer_color strong.avia-testimonial-name, .footer_color .heading, .footer_color .toggle_content strong, .footer_color .toggle_content strong a, .footer_color .tab_content strong, .footer_color .tab_content strong a , .footer_color .asc_count, .footer_color .avia-testimonial-content strong, .footer_color div .news-headline, #top .footer_color .av-related-style-full .av-related-title, .footer_color .av-default-style .av-countdown-cell-inner .av-countdown-time, .footer_color .wp-playlist-item-meta.wp-playlist-item-title, #top .footer_color .av-no-image-slider h2 a, .footer_color .av-small-bar .avia-progress-bar .progressbar-title-wrap{ color:#f39200;}.footer_color .meta-color, .footer_color .sidebar, .footer_color .sidebar a, .footer_color .minor-meta, .footer_color .minor-meta a, .footer_color .text-sep, .footer_color blockquote, .footer_color .post_nav a, .footer_color .comment-text, .footer_color .side-container-inner, .footer_color .news-time, .footer_color .pagination a, .footer_color .pagination span, .footer_color .tweet-text.avatar_no .tweet-time, #top .footer_color .extra-mini-title, .footer_color .team-member-job-title, .footer_color .team-social a, .footer_color #js_sort_items a, .grid-entry-excerpt, .footer_color .avia-testimonial-subtitle, .footer_color .commentmetadata a,.footer_color .social_bookmarks a, .footer_color .meta-heading>*, .footer_color .slide-meta, .footer_color .slide-meta a, .footer_color .taglist, .footer_color .taglist a, .footer_color .phone-info, .footer_color .phone-info a, .footer_color .av-sort-by-term a, .footer_color .av-magazine-time, .footer_color .av-magazine .av-magazine-entry-icon, .footer_color .av-catalogue-content, .footer_color .wp-playlist-item-length, .html_modern-blog #top div .footer_color .blog-categories a, .html_modern-blog #top div .footer_color .blog-categories a:hover{color: #de8603;}.footer_color .special-heading-inner-border{ border-color: #f39200; }.footer_color .meta-heading .special-heading-inner-border{ border-color: #de8603; }.footer_color a, .footer_color .widget_first, .footer_color strong, .footer_color b, .footer_color b a, .footer_color strong a, .footer_color #js_sort_items a:hover, .footer_color #js_sort_items a.active_sort, .footer_color .av-sort-by-term a.active_sort, .footer_color .special_amp, .footer_color .taglist a.activeFilter, .footer_color #commentform .required, #top .footer_color .av-no-color.av-icon-style-border a.av-icon-char, .html_elegant-blog #top .footer_color .blog-categories a, .html_elegant-blog #top .footer_color .blog-categories a:hover{color:#f39200;}.footer_color a:hover, .footer_color h1 a:hover, .footer_color h2 a:hover, .footer_color h3 a:hover, .footer_color h4 a:hover, .footer_color h5 a:hover, .footer_color h6 a:hover, .footer_color .template-search a.news-content:hover, .footer_color .wp-playlist-item .wp-playlist-caption:hover{color: #de8603;}.footer_color .primary-background, .footer_color .primary-background a, div .footer_color .button, .footer_color #submit, .footer_color input[type=’submit’], .footer_color .small-preview:hover, .footer_color .avia-menu-fx, .footer_color .avia-menu-fx .avia-arrow, .footer_color.iconbox_top .iconbox_icon, .footer_color .iconbox_top a.iconbox_icon:hover, .footer_color .avia-data-table th.avia-highlight-col, .footer_color .avia-color-theme-color, .footer_color .avia-color-theme-color:hover, .footer_color .image-overlay .image-overlay-inside:before, .footer_color .comment-count, .footer_color .av_dropcap2, #top #wrap_all .footer_color .av-menu-button-colored > a .avia-menu-text, .footer_color .av-colored-style .av-countdown-cell-inner, .responsive #top .footer_color .av-open-submenu.av-subnav-menu > li > a:hover, #top .footer_color .av-open-submenu.av-subnav-menu li > ul a:hover{background-color: #f39200;color:#ffffff;border-color:#d17000;}#top .footer_color .mobile_menu_toggle{color: #f39200;background:#ffffff;}#top .footer_color .av-menu-mobile-active .av-subnav-menu > li > a:before{color: #f39200;}#top .footer_color .av-open-submenu.av-subnav-menu > li > a:hover:before{color: #ffffff;}.footer_color .button:hover, .footer_color .ajax_controlls a:hover, .footer_color #submit:hover, .footer_color .big_button:hover, .footer_color .contentSlideControlls a:hover, .footer_color #submit:hover , .footer_color input[type=’submit’]:hover{background-color: #de8603;color:#ffffff;border-color:#bc6401;}.footer_color .ajax_controlls a:hover{border-color:#de8603;}.footer_color .timeline-bullet{background-color:#e1e1e1;border-color: #ffffff;}.footer_color table, .footer_color .widget_nav_menu ul:first-child>.current-menu-item, .footer_color .widget_nav_menu ul:first-child>.current_page_item, .footer_color .widget_nav_menu ul:first-child>.current-menu-ancestor, .footer_color .pagination .current, .footer_color .pagination a, .footer_color.iconbox_top .iconbox_content, .footer_color .av_promobox, .footer_color .toggle_content, .footer_color .toggler:hover, #top .footer_color .av-minimal-toggle .toggler, .footer_color .related_posts_default_image, .footer_color .search-result-counter, .footer_color .container_wrap_meta, .footer_color .avia-content-slider .slide-image, .footer_color .avia-slider-testimonials .avia-testimonial-content, .footer_color .avia-testimonial-arrow-wrap .avia-arrow, .footer_color .news-thumb, .footer_color .portfolio-preview-content, .footer_color .portfolio-preview-content .avia-arrow, .footer_color .av-magazine .av-magazine-entry-icon, .footer_color .related_posts.av-related-style-full a, .footer_color .aviaccordion-slide, .footer_color.avia-fullwidth-portfolio .pagination, .footer_color .isotope-item.special_av_fullwidth .av_table_col.portfolio-grid-image, .footer_color .av-catalogue-list li:hover, .footer_color .wp-playlist, .footer_color .avia-slideshow-fixed-height > li, .footer_color .avia-form-success, .footer_color .av-boxed-grid-style .avia-testimonial{background: #f8f8f8;}#top .footer_color .post_timeline li:hover .timeline-bullet{background-color:#de8603;}.footer_color blockquote, .footer_color .avia-bullet, .footer_color .av-no-color.av-icon-style-border a.av-icon-char{border-color:#f39200;}.html_header_top .footer_color .main_menu ul:first-child >li > ul, .html_header_top #top .footer_color .avia_mega_div > .sub-menu{border-top-color:#f39200;}.footer_color .breadcrumb, .footer_color .breadcrumb a, #top .footer_color.title_container .main-title, #top .footer_color.title_container .main-title a{color:#f39200;}.footer_color .av-icon-display, #top .footer_color .av-related-style-full a:hover .related-format-icon, .footer_color .av-default-style .av-countdown-cell-inner{background-color:#f8f8f8;color:#de8603;}.footer_color .av-masonry-entry:hover .av-icon-display{background-color: #f39200;color:#ffffff;border-color:#d17000;}#top .footer_color .av-masonry-entry.format-quote:hover .av-icon-display{color:#f39200;}.footer_color ::-webkit-input-placeholder {color: #de8603; }.footer_color ::-moz-placeholder {color: #de8603; opacity:1; }.footer_color :-ms-input-placeholder {color: #de8603;}.footer_color .header_bg, .footer_color .main_menu ul ul, .footer_color .main_menu .menu ul li a, .footer_color .pointer_arrow_wrap .pointer_arrow, .footer_color .avia_mega_div, .footer_color .av-subnav-menu > li ul, .footer_color .av-subnav-menu a{background-color:#ffffff;color: #de8603;}.footer_color .main_menu .menu ul li a:hover, .footer_color .av-subnav-menu ul a:hover{background-color:#f8f8f8;}.footer_color .sub_menu>ul>li>a, .footer_color .sub_menu>div>ul>li>a, .footer_color .main_menu ul:first-child > li > a, #top .footer_color .main_menu .menu ul .current_page_item > a, #top .footer_color .main_menu .menu ul .current-menu-item > a , #top .footer_color .sub_menu li ul a{color:#de8603;}#top .footer_color .main_menu .menu ul li>a:hover{color:#f39200;}.footer_color .av-subnav-menu a:hover,.footer_color .main_menu ul:first-child > li a:hover,.footer_color .main_menu ul:first-child > li.current-menu-item > a,.footer_color .main_menu ul:first-child > li.current_page_item > a,.footer_color .main_menu ul:first-child > li.active-parent-item > a{color:#f39200;}#top .footer_color .main_menu .menu .avia_mega_div ul .current-menu-item > a{color:#f39200;}.footer_color .sub_menu>ul>li>a:hover, .footer_color .sub_menu>div>ul>li>a:hover{color:#f39200;}#top .footer_color .sub_menu ul li a:hover,.footer_color .sub_menu ul:first-child > li.current-menu-item > a,.footer_color .sub_menu ul:first-child > li.current_page_item > a,.footer_color .sub_menu ul:first-child > li.active-parent-item > a{color:#f39200;}.footer_color .sub_menu li ul a, .footer_color #payment, .footer_color .sub_menu ul li, .footer_color .sub_menu ul, #top .footer_color .sub_menu li li a:hover{background-color: #ffffff;}.footer_color#header .avia_mega_div > .sub-menu.avia_mega_hr, .html_bottom_nav_header.html_logo_center #top #menu-item-search>a{border-color:#e1e1e1;}@media only screen and (max-width: 767px) { #top #wrap_all .av_header_transparency{background-color:#ffffff;color: #f39200;border-color: #e1e1e1;}}.footer_color .avia-tt, .footer_color .avia-tt .avia-arrow, .footer_color .avia-tt .avia-arrow{background-color: #ffffff;color: #de8603;}.footer_color .ajax_search_image{background-color: #f39200;color:#ffffff;}.footer_color .ajax_search_excerpt{color: #de8603;}#top .footer_color .ajax_search_entry:hover{background-color:#f8f8f8;}.footer_color .ajax_search_title{color: #f39200;}.footer_color .ajax_load{background-color:#f39200;}#top .footer_color .avia-color-theme-color{color: #ffffff;border-color: #d17000;}.footer_color .avia-color-theme-color-subtle{background-color:#f8f8f8;color: #f39200;}.footer_color .avia-color-theme-color-subtle:hover{background-color:#ffffff;color: #f39200;}#top .footer_color .avia-color-theme-color-highlight{color: #ffffff;border-color: #de8603;background-color: #de8603;}.footer_color .avia-icon-list .iconlist_icon{background-color:#d0d0d0;}.footer_color .avia-icon-list .iconlist-timeline{border-color:#e1e1e1;}.footer_color .iconlist_content{color:#de8603;}#top .footer_color .input-text, #top .footer_color input[type=’text’], #top .footer_color input[type=’input’], #top .footer_color input[type=’password’], #top .footer_color input[type=’email’], #top .footer_color input[type=’number’], #top .footer_color input[type=’url’], #top .footer_color input[type=’tel’], #top .footer_color input[type=’search’], #top .footer_color textarea, #top .footer_color select{border-color:#e1e1e1;background-color: #f8f8f8;color:#de8603;}#top .footer_color .invers-color .input-text, #top .footer_color .invers-color input[type=’text’], #top .footer_color .invers-color input[type=’input’], #top .footer_color .invers-color input[type=’password’], #top .footer_color .invers-color input[type=’email’], #top .footer_color .invers-color input[type=’number’], #top .footer_color .invers-color input[type=’url’], #top .footer_color .invers-color input[type=’tel’], #top .footer_color .invers-color input[type=’search’], #top .footer_color .invers-color textarea, #top .footer_color .invers-color select{background-color: #ffffff;}.footer_color .required{color:#f39200;}.footer_color .av-masonry{background-color: #e7e7e7; }.footer_color .av-masonry-pagination, .footer_color .av-masonry-pagination:hover, .footer_color .av-masonry-outerimage-container{background-color: #ffffff;}.footer_color .container .av-inner-masonry-content, #top .footer_color .container .av-masonry-load-more, #top .footer_color .container .av-masonry-sort, .footer_color .container .av-masonry-entry .avia-arrow{background-color: #f8f8f8;} .footer_color .hr-short .hr-inner-style, .footer_color .hr-short .hr-inner{background-color: #ffffff;}div .footer_color .tabcontainer .active_tab_content, div .footer_color .tabcontainer .active_tab{background-color: #f8f8f8;color:#f39200;}.responsive.js_active #top .footer_color .avia_combo_widget .top_tab .tab{border-top-color:#e1e1e1;}.footer_color .template-archives .tabcontainer a, #top .footer_color .tabcontainer .tab:hover, #top .footer_color .tabcontainer .tab.active_tab{color:#f39200;} .footer_color .template-archives .tabcontainer a:hover{color:#de8603;}.footer_color .sidebar_tab_icon {background-color: #e1e1e1;}#top .footer_color .sidebar_active_tab .sidebar_tab_icon {background-color: #f39200;}.footer_color .sidebar_tab:hover .sidebar_tab_icon {background-color: #de8603;}.footer_color .sidebar_tab, .footer_color .tabcontainer .tab{color: #de8603;}.footer_color div .sidebar_active_tab , div .footer_color .tabcontainer.noborder_tabs .active_tab_content, div .footer_color .tabcontainer.noborder_tabs .active_tab{color: #f39200;background-color: #ffffff;}#top .avia-smallarrow-slider .avia-slideshow-dots a{background-color: #f8f8f8;}#top .footer_color .avia-smallarrow-slider .avia-slideshow-dots a.active, #top .footer_color .avia-smallarrow-slider .avia-slideshow-dots a:hover{background-color: #de8603;}@media only screen and (max-width: 767px) {.responsive #top .footer_color .tabcontainer .active_tab{ background-color: #de8603; color:#ffffff; } /*hard coded white to match the icons beside which are also white*/.responsive #top .footer_color .tabcontainer{border-color:#e1e1e1;}.responsive #top .footer_color .active_tab_content{background-color: #f8f8f8;}}.footer_color tr:nth-child(even), .footer_color .avia-data-table .avia-heading-row .avia-desc-col, .footer_color .avia-data-table .avia-highlight-col, .footer_color .pricing-table>li:nth-child(even), body .footer_color .pricing-table.avia-desc-col li, #top .footer_color .avia-data-table.avia_pricing_minimal th{background-color:#ffffff;color: #f39200;}.footer_color table caption, .footer_color tr:nth-child(even), .footer_color .pricing-table>li:nth-child(even), #top .footer_color .avia-data-table.avia_pricing_minimal td{color: #de8603;}.footer_color tr:nth-child(odd), .footer_color .pricing-table>li:nth-child(odd), .footer_color .pricing-extra{background: #f8f8f8;}.footer_color .pricing-table li.avia-pricing-row, .footer_color .pricing-table li.avia-heading-row, .footer_color .pricing-table li.avia-pricing-row .pricing-extra{background-color: #f39200;color:#ffffff;border-color:#f5b422;}.footer_color .pricing-table li.avia-heading-row, .footer_color .pricing-table li.avia-heading-row .pricing-extra{background-color: #f4a311;color:#ffffff;border-color:#f5b422;}.footer_color .pricing-table.avia-desc-col .avia-heading-row, .footer_color .pricing-table.avia-desc-col .avia-pricing-row{border-color:#e1e1e1;}.footer_color .theme-color-bar .bar{background: #f39200;}.footer_color .mejs-controls .mejs-time-rail .mejs-time-current, .footer_color .mejs-controls .mejs-volume-button .mejs-volume-slider .mejs-volume-current, .footer_color .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current, .footer_color .button.av-sending-button, .footer_color .av-striped-bar .theme-color-bar .bar{background: #f39200;}body .footer_color .mejs-controls .mejs-time-rail .mejs-time-float {background: #f39200;color: #fff;}body .footer_color .mejs-controls .mejs-time-rail .mejs-time-float-corner {border: solid 4px #f39200;border-color: #f39200 transparent transparent transparent;}.footer_color .progress{background-color:#f8f8f8;} .footer_color .button.av-sending-button{background: #de8603;background-image:-webkit-linear-gradient(-45deg, #de8603 25%, #ef9714 25%, #ef9714 50%, #de8603 50%, #de8603 75%, #ef9714 75%, #ef9714);background-image: -moz-linear-gradient(-45deg, #de8603 25%, #ef9714 25%, #ef9714 50%, #de8603 50%, #de8603 75%, #ef9714 75%, #ef9714);background-image: linear-gradient(-45deg, #de8603 25%, #ef9714 25%, #ef9714 50%, #de8603 50%, #de8603 75%, #ef9714 75%, #ef9714);border-color:#de8603;}.footer_color span.bbp-admin-links a{color: #f39200;}.footer_color span.bbp-admin-links a:hover{color: #de8603;}#top .footer_color .bbp-reply-content, #top .footer_color .bbp-topic-content, #top .footer_color .bbp-body .super-sticky .page-numbers, #top .footer_color .bbp-body .sticky .page-numbers, #top .footer_color .bbp-pagination-links a:hover, #top .footer_color .bbp-pagination-links span.current{ background:#ffffff; }#top .footer_color .bbp-topics .bbp-header, #top .footer_color .bbp-topics .bbp-header, #top .footer_color .bbp-forums .bbp-header, #top .footer_color .bbp-topics-front ul.super-sticky, #top .footer_color .bbp-topics ul.super-sticky, #top .footer_color .bbp-topics ul.sticky, #top .footer_color .bbp-forum-content ul.sticky, #top .footer_color .bbp-body .page-numbers{background-color:#f8f8f8;}#top .footer_color .bbp-meta, #top .footer_color .bbp-author-role, #top .footer_color .bbp-author-ip, #top .footer_color .bbp-pagination-count, #top .footer_color .bbp-topics .bbp-body .bbp-topic-title:before{color: #de8603;}#top .footer_color .bbp-admin-links{color:#e1e1e1;}.footer_color #bbpress-forums li.bbp-body ul.forum, .footer_color #bbpress-forums li.bbp-body ul.topic,.avia_transform .footer_color .bbp-replies .bbp-reply-author:before, .avia_transform .forum-search .footer_color .bbp-reply-author:before,.avia_transform .forum-search .footer_color .bbp-topic-author:before{background-color:#ffffff;border-color:#e1e1e1;}#top .footer_color .bbp-author-name{color:#f39200;}.footer_color .widget_display_stats dt, .footer_color .widget_display_stats dd{background-color:#f8f8f8;}.footer_color dropcap2, .footer_color dropcap3, .footer_color avia_button, .footer_color avia_button:hover, .footer_color .on-primary-color, .footer_color .on-primary-color:hover{color: #ffffff;}.alternate_color, .alternate_color div, .alternate_color header, .alternate_color main, .alternate_color aside, .alternate_color footer, .alternate_color article, .alternate_color nav, .alternate_color section, .alternate_color span, .alternate_color applet, .alternate_color object, .alternate_color iframe, .alternate_color h1, .alternate_color h2, .alternate_color h3, .alternate_color h4, .alternate_color h5, .alternate_color h6, .alternate_color p, .alternate_color blockquote, .alternate_color pre, .alternate_color a, .alternate_color abbr, .alternate_color acronym, .alternate_color address, .alternate_color big, .alternate_color cite, .alternate_color code, .alternate_color del, .alternate_color dfn, .alternate_color em, .alternate_color img, .alternate_color ins, .alternate_color kbd, .alternate_color q, .alternate_color s, .alternate_color samp, .alternate_color small, .alternate_color strike, .alternate_color strong, .alternate_color sub, .alternate_color sup, .alternate_color tt, .alternate_color var, .alternate_color b, .alternate_color u, .alternate_color i, .alternate_color center, .alternate_color dl, .alternate_color dt, .alternate_color dd, .alternate_color ol, .alternate_color ul, .alternate_color li, .alternate_color fieldset, .alternate_color form, .alternate_color label, .alternate_color legend, .alternate_color table, .alternate_color caption, .alternate_color tbody, .alternate_color tfoot, .alternate_color thead, .alternate_color tr, .alternate_color th, .alternate_color td, .alternate_color article, .alternate_color aside, .alternate_color canvas, .alternate_color details, .alternate_color embed, .alternate_color figure, .alternate_color fieldset, .alternate_color figcaption, .alternate_color footer, .alternate_color header, .alternate_color hgroup, .alternate_color menu, .alternate_color nav, .alternate_color output, .alternate_color ruby, .alternate_color section, .alternate_color summary, .alternate_color time, .alternate_color mark, .alternate_color audio, .alternate_color video, #top .alternate_color .pullquote_boxed, .responsive #top .alternate_color .avia-testimonial, .responsive #top.avia-blank #main .alternate_color.container_wrap:first-child, #top .alternate_color.fullsize .template-blog .post_delimiter, .alternate_color .related_posts.av-related-style-full a{border-color:#e1e1e1;}.alternate_color .rounded-container, #top .alternate_color .pagination a:hover, .alternate_color .small-preview, .alternate_color .fallback-post-type-icon{background:#de8603;color:#ffffff;}.alternate_color .av-default-color, #top .alternate_color .av-force-default-color, .alternate_color .av-catalogue-item, .alternate_color .wp-playlist-item .wp-playlist-caption, .alternate_color .wp-playlist{color: #de8603;}.alternate_color , .alternate_color .site-background, .alternate_color .first-quote, .alternate_color .related_image_wrap, .alternate_color .gravatar img .alternate_color .hr_content, .alternate_color .news-thumb, .alternate_color .post-format-icon, .alternate_color .ajax_controlls a, .alternate_color .tweet-text.avatar_no, .alternate_color .toggler, .alternate_color .toggler.activeTitle:hover, .alternate_color #js_sort_items, .alternate_color.inner-entry, .alternate_color .grid-entry-title, .alternate_color .related-format-icon, .grid-entry .alternate_color .avia-arrow, .alternate_color .avia-gallery-big, .alternate_color .avia-gallery-big, .alternate_color .avia-gallery img, .alternate_color .grid-content, .alternate_color .av-share-box ul, #top .alternate_color .av-related-style-full .related-format-icon, .alternate_color .related_posts.av-related-style-full a:hover, .alternate_color.avia-fullwidth-portfolio .pagination .current, .alternate_color.avia-fullwidth-portfolio .pagination a, .alternate_color .av-hotspot-fallback-tooltip-inner, .alternate_color .av-hotspot-fallback-tooltip-count{background-color:#ffffff;color: #de8603;}.alternate_color .heading-color, .alternate_color a.iconbox_icon:hover, .alternate_color h1, .alternate_color h2, .alternate_color h3, .alternate_color h4, .alternate_color h5, .alternate_color h6, .alternate_color .sidebar .current_page_item>a, .alternate_color .sidebar .current-menu-item>a, .alternate_color .pagination .current, .alternate_color .pagination a:hover, .alternate_color strong.avia-testimonial-name, .alternate_color .heading, .alternate_color .toggle_content strong, .alternate_color .toggle_content strong a, .alternate_color .tab_content strong, .alternate_color .tab_content strong a , .alternate_color .asc_count, .alternate_color .avia-testimonial-content strong, .alternate_color div .news-headline, #top .alternate_color .av-related-style-full .av-related-title, .alternate_color .av-default-style .av-countdown-cell-inner .av-countdown-time, .alternate_color .wp-playlist-item-meta.wp-playlist-item-title, #top .alternate_color .av-no-image-slider h2 a, .alternate_color .av-small-bar .avia-progress-bar .progressbar-title-wrap{ color:#666666;}.alternate_color .meta-color, .alternate_color .sidebar, .alternate_color .sidebar a, .alternate_color .minor-meta, .alternate_color .minor-meta a, .alternate_color .text-sep, .alternate_color blockquote, .alternate_color .post_nav a, .alternate_color .comment-text, .alternate_color .side-container-inner, .alternate_color .news-time, .alternate_color .pagination a, .alternate_color .pagination span, .alternate_color .tweet-text.avatar_no .tweet-time, #top .alternate_color .extra-mini-title, .alternate_color .team-member-job-title, .alternate_color .team-social a, .alternate_color #js_sort_items a, .grid-entry-excerpt, .alternate_color .avia-testimonial-subtitle, .alternate_color .commentmetadata a,.alternate_color .social_bookmarks a, .alternate_color .meta-heading>*, .alternate_color .slide-meta, .alternate_color .slide-meta a, .alternate_color .taglist, .alternate_color .taglist a, .alternate_color .phone-info, .alternate_color .phone-info a, .alternate_color .av-sort-by-term a, .alternate_color .av-magazine-time, .alternate_color .av-magazine .av-magazine-entry-icon, .alternate_color .av-catalogue-content, .alternate_color .wp-playlist-item-length, .html_modern-blog #top div .alternate_color .blog-categories a, .html_modern-blog #top div .alternate_color .blog-categories a:hover{color: #de8603;}.alternate_color .special-heading-inner-border{ border-color: #de8603; }.alternate_color .meta-heading .special-heading-inner-border{ border-color: #de8603; }.alternate_color a, .alternate_color .widget_first, .alternate_color strong, .alternate_color b, .alternate_color b a, .alternate_color strong a, .alternate_color #js_sort_items a:hover, .alternate_color #js_sort_items a.active_sort, .alternate_color .av-sort-by-term a.active_sort, .alternate_color .special_amp, .alternate_color .taglist a.activeFilter, .alternate_color #commentform .required, #top .alternate_color .av-no-color.av-icon-style-border a.av-icon-char, .html_elegant-blog #top .alternate_color .blog-categories a, .html_elegant-blog #top .alternate_color .blog-categories a:hover{color:#de8603;}.alternate_color a:hover, .alternate_color h1 a:hover, .alternate_color h2 a:hover, .alternate_color h3 a:hover, .alternate_color h4 a:hover, .alternate_color h5 a:hover, .alternate_color h6 a:hover, .alternate_color .template-search a.news-content:hover, .alternate_color .wp-playlist-item .wp-playlist-caption:hover{color: #de8603;}.alternate_color .primary-background, .alternate_color .primary-background a, div .alternate_color .button, .alternate_color #submit, .alternate_color input[type=’submit’], .alternate_color .small-preview:hover, .alternate_color .avia-menu-fx, .alternate_color .avia-menu-fx .avia-arrow, .alternate_color.iconbox_top .iconbox_icon, .alternate_color .iconbox_top a.iconbox_icon:hover, .alternate_color .avia-data-table th.avia-highlight-col, .alternate_color .avia-color-theme-color, .alternate_color .avia-color-theme-color:hover, .alternate_color .image-overlay .image-overlay-inside:before, .alternate_color .comment-count, .alternate_color .av_dropcap2, #top #wrap_all .alternate_color .av-menu-button-colored > a .avia-menu-text, .alternate_color .av-colored-style .av-countdown-cell-inner, .responsive #top .alternate_color .av-open-submenu.av-subnav-menu > li > a:hover, #top .alternate_color .av-open-submenu.av-subnav-menu li > ul a:hover{background-color: #de8603;color:#ffffff;border-color:#bc6401;}#top .alternate_color .mobile_menu_toggle{color: #de8603;background:#ffffff;}#top .alternate_color .av-menu-mobile-active .av-subnav-menu > li > a:before{color: #de8603;}#top .alternate_color .av-open-submenu.av-subnav-menu > li > a:hover:before{color: #ffffff;}.alternate_color .button:hover, .alternate_color .ajax_controlls a:hover, .alternate_color #submit:hover, .alternate_color .big_button:hover, .alternate_color .contentSlideControlls a:hover, .alternate_color #submit:hover , .alternate_color input[type=’submit’]:hover{background-color: #de8603;color:#ffffff;border-color:#bc6401;}.alternate_color .ajax_controlls a:hover{border-color:#de8603;}.alternate_color .timeline-bullet{background-color:#e1e1e1;border-color: #ffffff;}.alternate_color table, .alternate_color .widget_nav_menu ul:first-child>.current-menu-item, .alternate_color .widget_nav_menu ul:first-child>.current_page_item, .alternate_color .widget_nav_menu ul:first-child>.current-menu-ancestor, .alternate_color .pagination .current, .alternate_color .pagination a, .alternate_color.iconbox_top .iconbox_content, .alternate_color .av_promobox, .alternate_color .toggle_content, .alternate_color .toggler:hover, #top .alternate_color .av-minimal-toggle .toggler, .alternate_color .related_posts_default_image, .alternate_color .search-result-counter, .alternate_color .container_wrap_meta, .alternate_color .avia-content-slider .slide-image, .alternate_color .avia-slider-testimonials .avia-testimonial-content, .alternate_color .avia-testimonial-arrow-wrap .avia-arrow, .alternate_color .news-thumb, .alternate_color .portfolio-preview-content, .alternate_color .portfolio-preview-content .avia-arrow, .alternate_color .av-magazine .av-magazine-entry-icon, .alternate_color .related_posts.av-related-style-full a, .alternate_color .aviaccordion-slide, .alternate_color.avia-fullwidth-portfolio .pagination, .alternate_color .isotope-item.special_av_fullwidth .av_table_col.portfolio-grid-image, .alternate_color .av-catalogue-list li:hover, .alternate_color .wp-playlist, .alternate_color .avia-slideshow-fixed-height > li, .alternate_color .avia-form-success, .alternate_color .av-boxed-grid-style .avia-testimonial{background: #f8f8f8;}#top .alternate_color .post_timeline li:hover .timeline-bullet{background-color:#de8603;}.alternate_color blockquote, .alternate_color .avia-bullet, .alternate_color .av-no-color.av-icon-style-border a.av-icon-char{border-color:#de8603;}.html_header_top .alternate_color .main_menu ul:first-child >li > ul, .html_header_top #top .alternate_color .avia_mega_div > .sub-menu{border-top-color:#de8603;}.alternate_color .breadcrumb, .alternate_color .breadcrumb a, #top .alternate_color.title_container .main-title, #top .alternate_color.title_container .main-title a{color:#de8603;}.alternate_color .av-icon-display, #top .alternate_color .av-related-style-full a:hover .related-format-icon, .alternate_color .av-default-style .av-countdown-cell-inner{background-color:#f8f8f8;color:#de8603;}.alternate_color .av-masonry-entry:hover .av-icon-display{background-color: #de8603;color:#ffffff;border-color:#bc6401;}#top .alternate_color .av-masonry-entry.format-quote:hover .av-icon-display{color:#de8603;}.alternate_color ::-webkit-input-placeholder {color: #de8603; }.alternate_color ::-moz-placeholder {color: #de8603; opacity:1; }.alternate_color :-ms-input-placeholder {color: #de8603;}.alternate_color .header_bg, .alternate_color .main_menu ul ul, .alternate_color .main_menu .menu ul li a, .alternate_color .pointer_arrow_wrap .pointer_arrow, .alternate_color .avia_mega_div, .alternate_color .av-subnav-menu > li ul, .alternate_color .av-subnav-menu a{background-color:#ffffff;color: #de8603;}.alternate_color .main_menu .menu ul li a:hover, .alternate_color .av-subnav-menu ul a:hover{background-color:#f8f8f8;}.alternate_color .sub_menu>ul>li>a, .alternate_color .sub_menu>div>ul>li>a, .alternate_color .main_menu ul:first-child > li > a, #top .alternate_color .main_menu .menu ul .current_page_item > a, #top .alternate_color .main_menu .menu ul .current-menu-item > a , #top .alternate_color .sub_menu li ul a{color:#de8603;}#top .alternate_color .main_menu .menu ul li>a:hover{color:#de8603;}.alternate_color .av-subnav-menu a:hover,.alternate_color .main_menu ul:first-child > li a:hover,.alternate_color .main_menu ul:first-child > li.current-menu-item > a,.alternate_color .main_menu ul:first-child > li.current_page_item > a,.alternate_color .main_menu ul:first-child > li.active-parent-item > a{color:#de8603;}#top .alternate_color .main_menu .menu .avia_mega_div ul .current-menu-item > a{color:#de8603;}.alternate_color .sub_menu>ul>li>a:hover, .alternate_color .sub_menu>div>ul>li>a:hover{color:#de8603;}#top .alternate_color .sub_menu ul li a:hover,.alternate_color .sub_menu ul:first-child > li.current-menu-item > a,.alternate_color .sub_menu ul:first-child > li.current_page_item > a,.alternate_color .sub_menu ul:first-child > li.active-parent-item > a{color:#de8603;}.alternate_color .sub_menu li ul a, .alternate_color #payment, .alternate_color .sub_menu ul li, .alternate_color .sub_menu ul, #top .alternate_color .sub_menu li li a:hover{background-color: #ffffff;}.alternate_color#header .avia_mega_div > .sub-menu.avia_mega_hr, .html_bottom_nav_header.html_logo_center #top #menu-item-search>a{border-color:#e1e1e1;}@media only screen and (max-width: 767px) { #top #wrap_all .av_header_transparency{background-color:#ffffff;color: #de8603;border-color: #e1e1e1;}}.alternate_color .avia-tt, .alternate_color .avia-tt .avia-arrow, .alternate_color .avia-tt .avia-arrow{background-color: #ffffff;color: #de8603;}.alternate_color .ajax_search_image{background-color: #de8603;color:#ffffff;}.alternate_color .ajax_search_excerpt{color: #de8603;}#top .alternate_color .ajax_search_entry:hover{background-color:#f8f8f8;}.alternate_color .ajax_search_title{color: #666666;}.alternate_color .ajax_load{background-color:#de8603;}#top .alternate_color .avia-color-theme-color{color: #ffffff;border-color: #bc6401;}.alternate_color .avia-color-theme-color-subtle{background-color:#f8f8f8;color: #de8603;}.alternate_color .avia-color-theme-color-subtle:hover{background-color:#ffffff;color: #666666;}#top .alternate_color .avia-color-theme-color-highlight{color: #ffffff;border-color: #de8603;background-color: #de8603;}.alternate_color .avia-icon-list .iconlist_icon{background-color:#d0d0d0;}.alternate_color .avia-icon-list .iconlist-timeline{border-color:#e1e1e1;}.alternate_color .iconlist_content{color:#de8603;}#top .alternate_color .input-text, #top .alternate_color input[type=’text’], #top .alternate_color input[type=’input’], #top .alternate_color input[type=’password’], #top .alternate_color input[type=’email’], #top .alternate_color input[type=’number’], #top .alternate_color input[type=’url’], #top .alternate_color input[type=’tel’], #top .alternate_color input[type=’search’], #top .alternate_color textarea, #top .alternate_color select{border-color:#e1e1e1;background-color: #f8f8f8;color:#de8603;}#top .alternate_color .invers-color .input-text, #top .alternate_color .invers-color input[type=’text’], #top .alternate_color .invers-color input[type=’input’], #top .alternate_color .invers-color input[type=’password’], #top .alternate_color .invers-color input[type=’email’], #top .alternate_color .invers-color input[type=’number’], #top .alternate_color .invers-color input[type=’url’], #top .alternate_color .invers-color input[type=’tel’], #top .alternate_color .invers-color input[type=’search’], #top .alternate_color .invers-color textarea, #top .alternate_color .invers-color select{background-color: #ffffff;}.alternate_color .required{color:#de8603;}.alternate_color .av-masonry{background-color: #e7e7e7; }.alternate_color .av-masonry-pagination, .alternate_color .av-masonry-pagination:hover, .alternate_color .av-masonry-outerimage-container{background-color: #ffffff;}.alternate_color .container .av-inner-masonry-content, #top .alternate_color .container .av-masonry-load-more, #top .alternate_color .container .av-masonry-sort, .alternate_color .container .av-masonry-entry .avia-arrow{background-color: #f8f8f8;} .alternate_color .hr-short .hr-inner-style, .alternate_color .hr-short .hr-inner{background-color: #ffffff;}div .alternate_color .tabcontainer .active_tab_content, div .alternate_color .tabcontainer .active_tab{background-color: #f8f8f8;color:#de8603;}.responsive.js_active #top .alternate_color .avia_combo_widget .top_tab .tab{border-top-color:#e1e1e1;}.alternate_color .template-archives .tabcontainer a, #top .alternate_color .tabcontainer .tab:hover, #top .alternate_color .tabcontainer .tab.active_tab{color:#de8603;} .alternate_color .template-archives .tabcontainer a:hover{color:#de8603;}.alternate_color .sidebar_tab_icon {background-color: #e1e1e1;}#top .alternate_color .sidebar_active_tab .sidebar_tab_icon {background-color: #de8603;}.alternate_color .sidebar_tab:hover .sidebar_tab_icon {background-color: #de8603;}.alternate_color .sidebar_tab, .alternate_color .tabcontainer .tab{color: #de8603;}.alternate_color div .sidebar_active_tab , div .alternate_color .tabcontainer.noborder_tabs .active_tab_content, div .alternate_color .tabcontainer.noborder_tabs .active_tab{color: #de8603;background-color: #ffffff;}#top .avia-smallarrow-slider .avia-slideshow-dots a{background-color: #f8f8f8;}#top .alternate_color .avia-smallarrow-slider .avia-slideshow-dots a.active, #top .alternate_color .avia-smallarrow-slider .avia-slideshow-dots a:hover{background-color: #de8603;}@media only screen and (max-width: 767px) {.responsive #top .alternate_color .tabcontainer .active_tab{ background-color: #de8603; color:#ffffff; } /*hard coded white to match the icons beside which are also white*/.responsive #top .alternate_color .tabcontainer{border-color:#e1e1e1;}.responsive #top .alternate_color .active_tab_content{background-color: #f8f8f8;}}.alternate_color tr:nth-child(even), .alternate_color .avia-data-table .avia-heading-row .avia-desc-col, .alternate_color .avia-data-table .avia-highlight-col, .alternate_color .pricing-table>li:nth-child(even), body .alternate_color .pricing-table.avia-desc-col li, #top .alternate_color .avia-data-table.avia_pricing_minimal th{background-color:#ffffff;color: #de8603;}.alternate_color table caption, .alternate_color tr:nth-child(even), .alternate_color .pricing-table>li:nth-child(even), #top .alternate_color .avia-data-table.avia_pricing_minimal td{color: #de8603;}.alternate_color tr:nth-child(odd), .alternate_color .pricing-table>li:nth-child(odd), .alternate_color .pricing-extra{background: #f8f8f8;}.alternate_color .pricing-table li.avia-pricing-row, .alternate_color .pricing-table li.avia-heading-row, .alternate_color .pricing-table li.avia-pricing-row .pricing-extra{background-color: #de8603;color:#ffffff;border-color:#ffa825;}.alternate_color .pricing-table li.avia-heading-row, .alternate_color .pricing-table li.avia-heading-row .pricing-extra{background-color: #ef9714;color:#ffffff;border-color:#ffa825;}.alternate_color .pricing-table.avia-desc-col .avia-heading-row, .alternate_color .pricing-table.avia-desc-col .avia-pricing-row{border-color:#e1e1e1;}.alternate_color .theme-color-bar .bar{background: #de8603;}.alternate_color .mejs-controls .mejs-time-rail .mejs-time-current, .alternate_color .mejs-controls .mejs-volume-button .mejs-volume-slider .mejs-volume-current, .alternate_color .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current, .alternate_color .button.av-sending-button, .alternate_color .av-striped-bar .theme-color-bar .bar{background: #de8603;}body .alternate_color .mejs-controls .mejs-time-rail .mejs-time-float {background: #de8603;color: #fff;}body .alternate_color .mejs-controls .mejs-time-rail .mejs-time-float-corner {border: solid 4px #de8603;border-color: #de8603 transparent transparent transparent;}.alternate_color .progress{background-color:#f8f8f8;} .alternate_color .button.av-sending-button{background: #de8603;background-image:-webkit-linear-gradient(-45deg, #de8603 25%, #ef9714 25%, #ef9714 50%, #de8603 50%, #de8603 75%, #ef9714 75%, #ef9714);background-image: -moz-linear-gradient(-45deg, #de8603 25%, #ef9714 25%, #ef9714 50%, #de8603 50%, #de8603 75%, #ef9714 75%, #ef9714);background-image: linear-gradient(-45deg, #de8603 25%, #ef9714 25%, #ef9714 50%, #de8603 50%, #de8603 75%, #ef9714 75%, #ef9714);border-color:#de8603;}.alternate_color span.bbp-admin-links a{color: #de8603;}.alternate_color span.bbp-admin-links a:hover{color: #de8603;}#top .alternate_color .bbp-reply-content, #top .alternate_color .bbp-topic-content, #top .alternate_color .bbp-body .super-sticky .page-numbers, #top .alternate_color .bbp-body .sticky .page-numbers, #top .alternate_color .bbp-pagination-links a:hover, #top .alternate_color .bbp-pagination-links span.current{ background:#ffffff; }#top .alternate_color .bbp-topics .bbp-header, #top .alternate_color .bbp-topics .bbp-header, #top .alternate_color .bbp-forums .bbp-header, #top .alternate_color .bbp-topics-front ul.super-sticky, #top .alternate_color .bbp-topics ul.super-sticky, #top .alternate_color .bbp-topics ul.sticky, #top .alternate_color .bbp-forum-content ul.sticky, #top .alternate_color .bbp-body .page-numbers{background-color:#f8f8f8;}#top .alternate_color .bbp-meta, #top .alternate_color .bbp-author-role, #top .alternate_color .bbp-author-ip, #top .alternate_color .bbp-pagination-count, #top .alternate_color .bbp-topics .bbp-body .bbp-topic-title:before{color: #de8603;}#top .alternate_color .bbp-admin-links{color:#e1e1e1;}.alternate_color #bbpress-forums li.bbp-body ul.forum, .alternate_color #bbpress-forums li.bbp-body ul.topic,.avia_transform .alternate_color .bbp-replies .bbp-reply-author:before, .avia_transform .forum-search .alternate_color .bbp-reply-author:before,.avia_transform .forum-search .alternate_color .bbp-topic-author:before{background-color:#ffffff;border-color:#e1e1e1;}#top .alternate_color .bbp-author-name{color:#666666;}.alternate_color .widget_display_stats dt, .alternate_color .widget_display_stats dd{background-color:#f8f8f8;}.alternate_color dropcap2, .alternate_color dropcap3, .alternate_color avia_button, .alternate_color avia_button:hover, .alternate_color .on-primary-color, .alternate_color .on-primary-color:hover{color: #ffffff;}.main_color, .main_color div, .main_color header, .main_color main, .main_color aside, .main_color footer, .main_color article, .main_color nav, .main_color section, .main_color span, .main_color applet, .main_color object, .main_color iframe, .main_color h1, .main_color h2, .main_color h3, .main_color h4, .main_color h5, .main_color h6, .main_color p, .main_color blockquote, .main_color pre, .main_color a, .main_color abbr, .main_color acronym, .main_color address, .main_color big, .main_color cite, .main_color code, .main_color del, .main_color dfn, .main_color em, .main_color img, .main_color ins, .main_color kbd, .main_color q, .main_color s, .main_color samp, .main_color small, .main_color strike, .main_color strong, .main_color sub, .main_color sup, .main_color tt, .main_color var, .main_color b, .main_color u, .main_color i, .main_color center, .main_color dl, .main_color dt, .main_color dd, .main_color ol, .main_color ul, .main_color li, .main_color fieldset, .main_color form, .main_color label, .main_color legend, .main_color table, .main_color caption, .main_color tbody, .main_color tfoot, .main_color thead, .main_color tr, .main_color th, .main_color td, .main_color article, .main_color aside, .main_color canvas, .main_color details, .main_color embed, .main_color figure, .main_color fieldset, .main_color figcaption, .main_color footer, .main_color header, .main_color hgroup, .main_color menu, .main_color nav, .main_color output, .main_color ruby, .main_color section, .main_color summary, .main_color time, .main_color mark, .main_color audio, .main_color video, #top .main_color .pullquote_boxed, .responsive #top .main_color .avia-testimonial, .responsive #top.avia-blank #main .main_color.container_wrap:first-child, #top .main_color.fullsize .template-blog .post_delimiter, .main_color .related_posts.av-related-style-full a{border-color:#e1e1e1;}.main_color .rounded-container, #top .main_color .pagination a:hover, .main_color .small-preview, .main_color .fallback-post-type-icon{background:#de8603;color:#ffffff;}.main_color .av-default-color, #top .main_color .av-force-default-color, .main_color .av-catalogue-item, .main_color .wp-playlist-item .wp-playlist-caption, .main_color .wp-playlist{color: #4a4a4a;}.main_color , .main_color .site-background, .main_color .first-quote, .main_color .related_image_wrap, .main_color .gravatar img .main_color .hr_content, .main_color .news-thumb, .main_color .post-format-icon, .main_color .ajax_controlls a, .main_color .tweet-text.avatar_no, .main_color .toggler, .main_color .toggler.activeTitle:hover, .main_color #js_sort_items, .main_color.inner-entry, .main_color .grid-entry-title, .main_color .related-format-icon, .grid-entry .main_color .avia-arrow, .main_color .avia-gallery-big, .main_color .avia-gallery-big, .main_color .avia-gallery img, .main_color .grid-content, .main_color .av-share-box ul, #top .main_color .av-related-style-full .related-format-icon, .main_color .related_posts.av-related-style-full a:hover, .main_color.avia-fullwidth-portfolio .pagination .current, .main_color.avia-fullwidth-portfolio .pagination a, .main_color .av-hotspot-fallback-tooltip-inner, .main_color .av-hotspot-fallback-tooltip-count{background-color:#ffffff;color: #4a4a4a;}.main_color .heading-color, .main_color a.iconbox_icon:hover, .main_color h1, .main_color h2, .main_color h3, .main_color h4, .main_color h5, .main_color h6, .main_color .sidebar .current_page_item>a, .main_color .sidebar .current-menu-item>a, .main_color .pagination .current, .main_color .pagination a:hover, .main_color strong.avia-testimonial-name, .main_color .heading, .main_color .toggle_content strong, .main_color .toggle_content strong a, .main_color .tab_content strong, .main_color .tab_content strong a , .main_color .asc_count, .main_color .avia-testimonial-content strong, .main_color div .news-headline, #top .main_color .av-related-style-full .av-related-title, .main_color .av-default-style .av-countdown-cell-inner .av-countdown-time, .main_color .wp-playlist-item-meta.wp-playlist-item-title, #top .main_color .av-no-image-slider h2 a, .main_color .av-small-bar .avia-progress-bar .progressbar-title-wrap{ color:#f39200;}.main_color .meta-color, .main_color .sidebar, .main_color .sidebar a, .main_color .minor-meta, .main_color .minor-meta a, .main_color .text-sep, .main_color blockquote, .main_color .post_nav a, .main_color .comment-text, .main_color .side-container-inner, .main_color .news-time, .main_color .pagination a, .main_color .pagination span, .main_color .tweet-text.avatar_no .tweet-time, #top .main_color .extra-mini-title, .main_color .team-member-job-title, .main_color .team-social a, .main_color #js_sort_items a, .grid-entry-excerpt, .main_color .avia-testimonial-subtitle, .main_color .commentmetadata a,.main_color .social_bookmarks a, .main_color .meta-heading>*, .main_color .slide-meta, .main_color .slide-meta a, .main_color .taglist, .main_color .taglist a, .main_color .phone-info, .main_color .phone-info a, .main_color .av-sort-by-term a, .main_color .av-magazine-time, .main_color .av-magazine .av-magazine-entry-icon, .main_color .av-catalogue-content, .main_color .wp-playlist-item-length, .html_modern-blog #top div .main_color .blog-categories a, .html_modern-blog #top div .main_color .blog-categories a:hover{color: #de8603;}.main_color .special-heading-inner-border{ border-color: #4a4a4a; }.main_color .meta-heading .special-heading-inner-border{ border-color: #de8603; }.main_color a, .main_color .widget_first, .main_color strong, .main_color b, .main_color b a, .main_color strong a, .main_color #js_sort_items a:hover, .main_color #js_sort_items a.active_sort, .main_color .av-sort-by-term a.active_sort, .main_color .special_amp, .main_color .taglist a.activeFilter, .main_color #commentform .required, #top .main_color .av-no-color.av-icon-style-border a.av-icon-char, .html_elegant-blog #top .main_color .blog-categories a, .html_elegant-blog #top .main_color .blog-categories a:hover{color:#f39200;}.main_color a:hover, .main_color h1 a:hover, .main_color h2 a:hover, .main_color h3 a:hover, .main_color h4 a:hover, .main_color h5 a:hover, .main_color h6 a:hover, .main_color .template-search a.news-content:hover, .main_color .wp-playlist-item .wp-playlist-caption:hover{color: #de8603;}.main_color .primary-background, .main_color .primary-background a, div .main_color .button, .main_color #submit, .main_color input[type=’submit’], .main_color .small-preview:hover, .main_color .avia-menu-fx, .main_color .avia-menu-fx .avia-arrow, .main_color.iconbox_top .iconbox_icon, .main_color .iconbox_top a.iconbox_icon:hover, .main_color .avia-data-table th.avia-highlight-col, .main_color .avia-color-theme-color, .main_color .avia-color-theme-color:hover, .main_color .image-overlay .image-overlay-inside:before, .main_color .comment-count, .main_color .av_dropcap2, #top #wrap_all .main_color .av-menu-button-colored > a .avia-menu-text, .main_color .av-colored-style .av-countdown-cell-inner, .responsive #top .main_color .av-open-submenu.av-subnav-menu > li > a:hover, #top .main_color .av-open-submenu.av-subnav-menu li > ul a:hover{background-color: #f39200;color:#ffffff;border-color:#d17000;}#top .main_color .mobile_menu_toggle{color: #f39200;background:#ffffff;}#top .main_color .av-menu-mobile-active .av-subnav-menu > li > a:before{color: #f39200;}#top .main_color .av-open-submenu.av-subnav-menu > li > a:hover:before{color: #ffffff;}.main_color .button:hover, .main_color .ajax_controlls a:hover, .main_color #submit:hover, .main_color .big_button:hover, .main_color .contentSlideControlls a:hover, .main_color #submit:hover , .main_color input[type=’submit’]:hover{background-color: #de8603;color:#ffffff;border-color:#bc6401;}.main_color .ajax_controlls a:hover{border-color:#de8603;}.main_color .timeline-bullet{background-color:#e1e1e1;border-color: #ffffff;}.main_color table, .main_color .widget_nav_menu ul:first-child>.current-menu-item, .main_color .widget_nav_menu ul:first-child>.current_page_item, .main_color .widget_nav_menu ul:first-child>.current-menu-ancestor, .main_color .pagination .current, .main_color .pagination a, .main_color.iconbox_top .iconbox_content, .main_color .av_promobox, .main_color .toggle_content, .main_color .toggler:hover, #top .main_color .av-minimal-toggle .toggler, .main_color .related_posts_default_image, .main_color .search-result-counter, .main_color .container_wrap_meta, .main_color .avia-content-slider .slide-image, .main_color .avia-slider-testimonials .avia-testimonial-content, .main_color .avia-testimonial-arrow-wrap .avia-arrow, .main_color .news-thumb, .main_color .portfolio-preview-content, .main_color .portfolio-preview-content .avia-arrow, .main_color .av-magazine .av-magazine-entry-icon, .main_color .related_posts.av-related-style-full a, .main_color .aviaccordion-slide, .main_color.avia-fullwidth-portfolio .pagination, .main_color .isotope-item.special_av_fullwidth .av_table_col.portfolio-grid-image, .main_color .av-catalogue-list li:hover, .main_color .wp-playlist, .main_color .avia-slideshow-fixed-height > li, .main_color .avia-form-success, .main_color .av-boxed-grid-style .avia-testimonial{background: #f8f8f8;}#top .main_color .post_timeline li:hover .timeline-bullet{background-color:#de8603;}.main_color blockquote, .main_color .avia-bullet, .main_color .av-no-color.av-icon-style-border a.av-icon-char{border-color:#f39200;}.html_header_top .main_color .main_menu ul:first-child >li > ul, .html_header_top #top .main_color .avia_mega_div > .sub-menu{border-top-color:#f39200;}.main_color .breadcrumb, .main_color .breadcrumb a, #top .main_color.title_container .main-title, #top .main_color.title_container .main-title a{color:#4a4a4a;}.main_color .av-icon-display, #top .main_color .av-related-style-full a:hover .related-format-icon, .main_color .av-default-style .av-countdown-cell-inner{background-color:#f8f8f8;color:#de8603;}.main_color .av-masonry-entry:hover .av-icon-display{background-color: #f39200;color:#ffffff;border-color:#d17000;}#top .main_color .av-masonry-entry.format-quote:hover .av-icon-display{color:#f39200;}.main_color ::-webkit-input-placeholder {color: #de8603; }.main_color ::-moz-placeholder {color: #de8603; opacity:1; }.main_color :-ms-input-placeholder {color: #de8603;}.main_color .header_bg, .main_color .main_menu ul ul, .main_color .main_menu .menu ul li a, .main_color .pointer_arrow_wrap .pointer_arrow, .main_color .avia_mega_div, .main_color .av-subnav-menu > li ul, .main_color .av-subnav-menu a{background-color:#ffffff;color: #de8603;}.main_color .main_menu .menu ul li a:hover, .main_color .av-subnav-menu ul a:hover{background-color:#f8f8f8;}.main_color .sub_menu>ul>li>a, .main_color .sub_menu>div>ul>li>a, .main_color .main_menu ul:first-child > li > a, #top .main_color .main_menu .menu ul .current_page_item > a, #top .main_color .main_menu .menu ul .current-menu-item > a , #top .main_color .sub_menu li ul a{color:#de8603;}#top .main_color .main_menu .menu ul li>a:hover{color:#4a4a4a;}.main_color .av-subnav-menu a:hover,.main_color .main_menu ul:first-child > li a:hover,.main_color .main_menu ul:first-child > li.current-menu-item > a,.main_color .main_menu ul:first-child > li.current_page_item > a,.main_color .main_menu ul:first-child > li.active-parent-item > a{color:#4a4a4a;}#top .main_color .main_menu .menu .avia_mega_div ul .current-menu-item > a{color:#f39200;}.main_color .sub_menu>ul>li>a:hover, .main_color .sub_menu>div>ul>li>a:hover{color:#4a4a4a;}#top .main_color .sub_menu ul li a:hover,.main_color .sub_menu ul:first-child > li.current-menu-item > a,.main_color .sub_menu ul:first-child > li.current_page_item > a,.main_color .sub_menu ul:first-child > li.active-parent-item > a{color:#4a4a4a;}.main_color .sub_menu li ul a, .main_color #payment, .main_color .sub_menu ul li, .main_color .sub_menu ul, #top .main_color .sub_menu li li a:hover{background-color: #ffffff;}.main_color#header .avia_mega_div > .sub-menu.avia_mega_hr, .html_bottom_nav_header.html_logo_center #top #menu-item-search>a{border-color:#e1e1e1;}@media only screen and (max-width: 767px) { #top #wrap_all .av_header_transparency{background-color:#ffffff;color: #4a4a4a;border-color: #e1e1e1;}}.main_color .avia-tt, .main_color .avia-tt .avia-arrow, .main_color .avia-tt .avia-arrow{background-color: #ffffff;color: #de8603;}.main_color .ajax_search_image{background-color: #f39200;color:#ffffff;}.main_color .ajax_search_excerpt{color: #de8603;}#top .main_color .ajax_search_entry:hover{background-color:#f8f8f8;}.main_color .ajax_search_title{color: #f39200;}.main_color .ajax_load{background-color:#f39200;}#top .main_color .avia-color-theme-color{color: #ffffff;border-color: #d17000;}.main_color .avia-color-theme-color-subtle{background-color:#f8f8f8;color: #4a4a4a;}.main_color .avia-color-theme-color-subtle:hover{background-color:#ffffff;color: #f39200;}#top .main_color .avia-color-theme-color-highlight{color: #ffffff;border-color: #de8603;background-color: #de8603;}.main_color .avia-icon-list .iconlist_icon{background-color:#d0d0d0;}.main_color .avia-icon-list .iconlist-timeline{border-color:#e1e1e1;}.main_color .iconlist_content{color:#de8603;}#top .main_color .input-text, #top .main_color input[type=’text’], #top .main_color input[type=’input’], #top .main_color input[type=’password’], #top .main_color input[type=’email’], #top .main_color input[type=’number’], #top .main_color input[type=’url’], #top .main_color input[type=’tel’], #top .main_color input[type=’search’], #top .main_color textarea, #top .main_color select{border-color:#e1e1e1;background-color: #f8f8f8;color:#de8603;}#top .main_color .invers-color .input-text, #top .main_color .invers-color input[type=’text’], #top .main_color .invers-color input[type=’input’], #top .main_color .invers-color input[type=’password’], #top .main_color .invers-color input[type=’email’], #top .main_color .invers-color input[type=’number’], #top .main_color .invers-color input[type=’url’], #top .main_color .invers-color input[type=’tel’], #top .main_color .invers-color input[type=’search’], #top .main_color .invers-color textarea, #top .main_color .invers-color select{background-color: #ffffff;}.main_color .required{color:#f39200;}.main_color .av-masonry{background-color: #e7e7e7; }.main_color .av-masonry-pagination, .main_color .av-masonry-pagination:hover, .main_color .av-masonry-outerimage-container{background-color: #ffffff;}.main_color .container .av-inner-masonry-content, #top .main_color .container .av-masonry-load-more, #top .main_color .container .av-masonry-sort, .main_color .container .av-masonry-entry .avia-arrow{background-color: #f8f8f8;} .main_color .hr-short .hr-inner-style, .main_color .hr-short .hr-inner{background-color: #ffffff;}div .main_color .tabcontainer .active_tab_content, div .main_color .tabcontainer .active_tab{background-color: #f8f8f8;color:#4a4a4a;}.responsive.js_active #top .main_color .avia_combo_widget .top_tab .tab{border-top-color:#e1e1e1;}.main_color .template-archives .tabcontainer a, #top .main_color .tabcontainer .tab:hover, #top .main_color .tabcontainer .tab.active_tab{color:#4a4a4a;} .main_color .template-archives .tabcontainer a:hover{color:#de8603;}.main_color .sidebar_tab_icon {background-color: #e1e1e1;}#top .main_color .sidebar_active_tab .sidebar_tab_icon {background-color: #f39200;}.main_color .sidebar_tab:hover .sidebar_tab_icon {background-color: #de8603;}.main_color .sidebar_tab, .main_color .tabcontainer .tab{color: #de8603;}.main_color div .sidebar_active_tab , div .main_color .tabcontainer.noborder_tabs .active_tab_content, div .main_color .tabcontainer.noborder_tabs .active_tab{color: #4a4a4a;background-color: #ffffff;}#top .avia-smallarrow-slider .avia-slideshow-dots a{background-color: #f8f8f8;}#top .main_color .avia-smallarrow-slider .avia-slideshow-dots a.active, #top .main_color .avia-smallarrow-slider .avia-slideshow-dots a:hover{background-color: #de8603;}@media only screen and (max-width: 767px) {.responsive #top .main_color .tabcontainer .active_tab{ background-color: #de8603; color:#ffffff; } /*hard coded white to match the icons beside which are also white*/.responsive #top .main_color .tabcontainer{border-color:#e1e1e1;}.responsive #top .main_color .active_tab_content{background-color: #f8f8f8;}}.main_color tr:nth-child(even), .main_color .avia-data-table .avia-heading-row .avia-desc-col, .main_color .avia-data-table .avia-highlight-col, .main_color .pricing-table>li:nth-child(even), body .main_color .pricing-table.avia-desc-col li, #top .main_color .avia-data-table.avia_pricing_minimal th{background-color:#ffffff;color: #4a4a4a;}.main_color table caption, .main_color tr:nth-child(even), .main_color .pricing-table>li:nth-child(even), #top .main_color .avia-data-table.avia_pricing_minimal td{color: #de8603;}.main_color tr:nth-child(odd), .main_color .pricing-table>li:nth-child(odd), .main_color .pricing-extra{background: #f8f8f8;}.main_color .pricing-table li.avia-pricing-row, .main_color .pricing-table li.avia-heading-row, .main_color .pricing-table li.avia-pricing-row .pricing-extra{background-color: #f39200;color:#ffffff;border-color:#f5b422;}.main_color .pricing-table li.avia-heading-row, .main_color .pricing-table li.avia-heading-row .pricing-extra{background-color: #f4a311;color:#ffffff;border-color:#f5b422;}.main_color .pricing-table.avia-desc-col .avia-heading-row, .main_color .pricing-table.avia-desc-col .avia-pricing-row{border-color:#e1e1e1;}.main_color .theme-color-bar .bar{background: #f39200;}.main_color .mejs-controls .mejs-time-rail .mejs-time-current, .main_color .mejs-controls .mejs-volume-button .mejs-volume-slider .mejs-volume-current, .main_color .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current, .main_color .button.av-sending-button, .main_color .av-striped-bar .theme-color-bar .bar{background: #f39200;}body .main_color .mejs-controls .mejs-time-rail .mejs-time-float {background: #f39200;color: #fff;}body .main_color .mejs-controls .mejs-time-rail .mejs-time-float-corner {border: solid 4px #f39200;border-color: #f39200 transparent transparent transparent;}.main_color .progress{background-color:#f8f8f8;} .main_color .button.av-sending-button{background: #de8603;background-image:-webkit-linear-gradient(-45deg, #de8603 25%, #ef9714 25%, #ef9714 50%, #de8603 50%, #de8603 75%, #ef9714 75%, #ef9714);background-image: -moz-linear-gradient(-45deg, #de8603 25%, #ef9714 25%, #ef9714 50%, #de8603 50%, #de8603 75%, #ef9714 75%, #ef9714);background-image: linear-gradient(-45deg, #de8603 25%, #ef9714 25%, #ef9714 50%, #de8603 50%, #de8603 75%, #ef9714 75%, #ef9714);border-color:#de8603;}.main_color span.bbp-admin-links a{color: #f39200;}.main_color span.bbp-admin-links a:hover{color: #de8603;}#top .main_color .bbp-reply-content, #top .main_color .bbp-topic-content, #top .main_color .bbp-body .super-sticky .page-numbers, #top .main_color .bbp-body .sticky .page-numbers, #top .main_color .bbp-pagination-links a:hover, #top .main_color .bbp-pagination-links span.current{ background:#ffffff; }#top .main_color .bbp-topics .bbp-header, #top .main_color .bbp-topics .bbp-header, #top .main_color .bbp-forums .bbp-header, #top .main_color .bbp-topics-front ul.super-sticky, #top .main_color .bbp-topics ul.super-sticky, #top .main_color .bbp-topics ul.sticky, #top .main_color .bbp-forum-content ul.sticky, #top .main_color .bbp-body .page-numbers{background-color:#f8f8f8;}#top .main_color .bbp-meta, #top .main_color .bbp-author-role, #top .main_color .bbp-author-ip, #top .main_color .bbp-pagination-count, #top .main_color .bbp-topics .bbp-body .bbp-topic-title:before{color: #de8603;}#top .main_color .bbp-admin-links{color:#e1e1e1;}.main_color #bbpress-forums li.bbp-body ul.forum, .main_color #bbpress-forums li.bbp-body ul.topic,.avia_transform .main_color .bbp-replies .bbp-reply-author:before, .avia_transform .forum-search .main_color .bbp-reply-author:before,.avia_transform .forum-search .main_color .bbp-topic-author:before{background-color:#ffffff;border-color:#e1e1e1;}#top .main_color .bbp-author-name{color:#f39200;}.main_color .widget_display_stats dt, .main_color .widget_display_stats dd{background-color:#f8f8f8;}.main_color dropcap2, .main_color dropcap3, .main_color avia_button, .main_color avia_button:hover, .main_color .on-primary-color, .main_color .on-primary-color:hover{color: #ffffff;}#main{ border-color: #e1e1e1; }#scroll-top-link:hover{ background-color: #f8f8f8; color: #f39200; border:1px solid #e1e1e1; }#top .avia-datepicker-div .ui-datepicker-month, #top .avia-datepicker-div .ui-datepicker-year{color:#f39200;}#top .avia-datepicker-div{ background: #ffffff; border:1px solid #e1e1e1; }#top .avia-datepicker-div a{ color:#de8603; background-color: #f8f8f8; }#top .avia-datepicker-div a.ui-state-active, #top .avia-datepicker-div a.ui-state-highlight{ color:#f39200; }#top .avia-datepicker-div a.ui-state-hover{ color:#f8f8f8; background-color: #de8603; }#top .avia-datepicker-div .ui-datepicker-buttonpane button{ background-color: #f39200; color: #ffffff; border-color: #f39200; }#top .av-siteloader{ border-color: #e1e1e1; border-left-color:#f39200; }#top div.avia-popup .mfp-preloader { border-left-color:#f39200; }.av-preloader-reactive #top .av-siteloader{border-color: #e1e1e1; }#top .av-siteloader-wrap{background-color: #ffffff; }.av-preloader-reactive #top .av-siteloader:before{ background-color: #e1e1e1; }.av-tab-section-tab-title-container{background-color: #f8f8f8; }#top .av-section-tab-title{color:#de8603;}#top a.av-active-tab-title{color:#f39200;}#top .av-tab-arrow-container span{background-color: #ffffff;}.header_color, .header_color div, .header_color header, .header_color main, .header_color aside, .header_color footer, .header_color article, .header_color nav, .header_color section, .header_color span, .header_color applet, .header_color object, .header_color iframe, .header_color h1, .header_color h2, .header_color h3, .header_color h4, .header_color h5, .header_color h6, .header_color p, .header_color blockquote, .header_color pre, .header_color a, .header_color abbr, .header_color acronym, .header_color address, .header_color big, .header_color cite, .header_color code, .header_color del, .header_color dfn, .header_color em, .header_color img, .header_color ins, .header_color kbd, .header_color q, .header_color s, .header_color samp, .header_color small, .header_color strike, .header_color strong, .header_color sub, .header_color sup, .header_color tt, .header_color var, .header_color b, .header_color u, .header_color i, .header_color center, .header_color dl, .header_color dt, .header_color dd, .header_color ol, .header_color ul, .header_color li, .header_color fieldset, .header_color form, .header_color label, .header_color legend, .header_color table, .header_color caption, .header_color tbody, .header_color tfoot, .header_color thead, .header_color tr, .header_color th, .header_color td, .header_color article, .header_color aside, .header_color canvas, .header_color details, .header_color embed, .header_color figure, .header_color fieldset, .header_color figcaption, .header_color footer, .header_color header, .header_color hgroup, .header_color menu, .header_color nav, .header_color output, .header_color ruby, .header_color section, .header_color summary, .header_color time, .header_color mark, .header_color audio, .header_color video, #top .header_color .pullquote_boxed, .responsive #top .header_color .avia-testimonial, .responsive #top.avia-blank #main .header_color.container_wrap:first-child, #top .header_color.fullsize .template-blog .post_delimiter, .header_color .related_posts.av-related-style-full a{border-color:#ffffff;}.header_color .rounded-container, #top .header_color .pagination a:hover, .header_color .small-preview, .header_color .fallback-post-type-icon{background:#de8603;color:#ffffff;}.header_color .av-default-color, #top .header_color .av-force-default-color, .header_color .av-catalogue-item, .header_color .wp-playlist-item .wp-playlist-caption, .header_color .wp-playlist{color: #de8603;}.header_color , .header_color .site-background, .header_color .first-quote, .header_color .related_image_wrap, .header_color .gravatar img .header_color .hr_content, .header_color .news-thumb, .header_color .post-format-icon, .header_color .ajax_controlls a, .header_color .tweet-text.avatar_no, .header_color .toggler, .header_color .toggler.activeTitle:hover, .header_color #js_sort_items, .header_color.inner-entry, .header_color .grid-entry-title, .header_color .related-format-icon, .grid-entry .header_color .avia-arrow, .header_color .avia-gallery-big, .header_color .avia-gallery-big, .header_color .avia-gallery img, .header_color .grid-content, .header_color .av-share-box ul, #top .header_color .av-related-style-full .related-format-icon, .header_color .related_posts.av-related-style-full a:hover, .header_color.avia-fullwidth-portfolio .pagination .current, .header_color.avia-fullwidth-portfolio .pagination a, .header_color .av-hotspot-fallback-tooltip-inner, .header_color .av-hotspot-fallback-tooltip-count{background-color:#ffffff;color: #de8603;}.header_color .heading-color, .header_color a.iconbox_icon:hover, .header_color h1, .header_color h2, .header_color h3, .header_color h4, .header_color h5, .header_color h6, .header_color .sidebar .current_page_item>a, .header_color .sidebar .current-menu-item>a, .header_color .pagination .current, .header_color .pagination a:hover, .header_color strong.avia-testimonial-name, .header_color .heading, .header_color .toggle_content strong, .header_color .toggle_content strong a, .header_color .tab_content strong, .header_color .tab_content strong a , .header_color .asc_count, .header_color .avia-testimonial-content strong, .header_color div .news-headline, #top .header_color .av-related-style-full .av-related-title, .header_color .av-default-style .av-countdown-cell-inner .av-countdown-time, .header_color .wp-playlist-item-meta.wp-playlist-item-title, #top .header_color .av-no-image-slider h2 a, .header_color .av-small-bar .avia-progress-bar .progressbar-title-wrap{ color:#de8603;}.header_color .meta-color, .header_color .sidebar, .header_color .sidebar a, .header_color .minor-meta, .header_color .minor-meta a, .header_color .text-sep, .header_color blockquote, .header_color .post_nav a, .header_color .comment-text, .header_color .side-container-inner, .header_color .news-time, .header_color .pagination a, .header_color .pagination span, .header_color .tweet-text.avatar_no .tweet-time, #top .header_color .extra-mini-title, .header_color .team-member-job-title, .header_color .team-social a, .header_color #js_sort_items a, .grid-entry-excerpt, .header_color .avia-testimonial-subtitle, .header_color .commentmetadata a,.header_color .social_bookmarks a, .header_color .meta-heading>*, .header_color .slide-meta, .header_color .slide-meta a, .header_color .taglist, .header_color .taglist a, .header_color .phone-info, .header_color .phone-info a, .header_color .av-sort-by-term a, .header_color .av-magazine-time, .header_color .av-magazine .av-magazine-entry-icon, .header_color .av-catalogue-content, .header_color .wp-playlist-item-length, .html_modern-blog #top div .header_color .blog-categories a, .html_modern-blog #top div .header_color .blog-categories a:hover{color: #de8603;}.header_color .special-heading-inner-border{ border-color: #de8603; }.header_color .meta-heading .special-heading-inner-border{ border-color: #de8603; }.header_color a, .header_color .widget_first, .header_color strong, .header_color b, .header_color b a, .header_color strong a, .header_color #js_sort_items a:hover, .header_color #js_sort_items a.active_sort, .header_color .av-sort-by-term a.active_sort, .header_color .special_amp, .header_color .taglist a.activeFilter, .header_color #commentform .required, #top .header_color .av-no-color.av-icon-style-border a.av-icon-char, .html_elegant-blog #top .header_color .blog-categories a, .html_elegant-blog #top .header_color .blog-categories a:hover{color:#de8603;}.header_color a:hover, .header_color h1 a:hover, .header_color h2 a:hover, .header_color h3 a:hover, .header_color h4 a:hover, .header_color h5 a:hover, .header_color h6 a:hover, .header_color .template-search a.news-content:hover, .header_color .wp-playlist-item .wp-playlist-caption:hover{color: #de8603;}.header_color .primary-background, .header_color .primary-background a, div .header_color .button, .header_color #submit, .header_color input[type=’submit’], .header_color .small-preview:hover, .header_color .avia-menu-fx, .header_color .avia-menu-fx .avia-arrow, .header_color.iconbox_top .iconbox_icon, .header_color .iconbox_top a.iconbox_icon:hover, .header_color .avia-data-table th.avia-highlight-col, .header_color .avia-color-theme-color, .header_color .avia-color-theme-color:hover, .header_color .image-overlay .image-overlay-inside:before, .header_color .comment-count, .header_color .av_dropcap2, #top #wrap_all .header_color .av-menu-button-colored > a .avia-menu-text, .header_color .av-colored-style .av-countdown-cell-inner, .responsive #top .header_color .av-open-submenu.av-subnav-menu > li > a:hover, #top .header_color .av-open-submenu.av-subnav-menu li > ul a:hover{background-color: #de8603;color:#ffffff;border-color:#bc6401;}#top .header_color .mobile_menu_toggle{color: #de8603;background:#ffffff;}#top .header_color .av-menu-mobile-active .av-subnav-menu > li > a:before{color: #de8603;}#top .header_color .av-open-submenu.av-subnav-menu > li > a:hover:before{color: #ffffff;}.header_color .button:hover, .header_color .ajax_controlls a:hover, .header_color #submit:hover, .header_color .big_button:hover, .header_color .contentSlideControlls a:hover, .header_color #submit:hover , .header_color input[type=’submit’]:hover{background-color: #de8603;color:#ffffff;border-color:#bc6401;}.header_color .ajax_controlls a:hover{border-color:#de8603;}.header_color .timeline-bullet{background-color:#ffffff;border-color: #ffffff;}.header_color table, .header_color .widget_nav_menu ul:first-child>.current-menu-item, .header_color .widget_nav_menu ul:first-child>.current_page_item, .header_color .widget_nav_menu ul:first-child>.current-menu-ancestor, .header_color .pagination .current, .header_color .pagination a, .header_color.iconbox_top .iconbox_content, .header_color .av_promobox, .header_color .toggle_content, .header_color .toggler:hover, #top .header_color .av-minimal-toggle .toggler, .header_color .related_posts_default_image, .header_color .search-result-counter, .header_color .container_wrap_meta, .header_color .avia-content-slider .slide-image, .header_color .avia-slider-testimonials .avia-testimonial-content, .header_color .avia-testimonial-arrow-wrap .avia-arrow, .header_color .news-thumb, .header_color .portfolio-preview-content, .header_color .portfolio-preview-content .avia-arrow, .header_color .av-magazine .av-magazine-entry-icon, .header_color .related_posts.av-related-style-full a, .header_color .aviaccordion-slide, .header_color.avia-fullwidth-portfolio .pagination, .header_color .isotope-item.special_av_fullwidth .av_table_col.portfolio-grid-image, .header_color .av-catalogue-list li:hover, .header_color .wp-playlist, .header_color .avia-slideshow-fixed-height > li, .header_color .avia-form-success, .header_color .av-boxed-grid-style .avia-testimonial{background: #ffffff;}#top .header_color .post_timeline li:hover .timeline-bullet{background-color:#de8603;}.header_color blockquote, .header_color .avia-bullet, .header_color .av-no-color.av-icon-style-border a.av-icon-char{border-color:#de8603;}.html_header_top .header_color .main_menu ul:first-child >li > ul, .html_header_top #top .header_color .avia_mega_div > .sub-menu{border-top-color:#de8603;}.header_color .breadcrumb, .header_color .breadcrumb a, #top .header_color.title_container .main-title, #top .header_color.title_container .main-title a{color:#de8603;}.header_color .av-icon-display, #top .header_color .av-related-style-full a:hover .related-format-icon, .header_color .av-default-style .av-countdown-cell-inner{background-color:#ffffff;color:#de8603;}.header_color .av-masonry-entry:hover .av-icon-display{background-color: #de8603;color:#ffffff;border-color:#bc6401;}#top .header_color .av-masonry-entry.format-quote:hover .av-icon-display{color:#de8603;}.header_color ::-webkit-input-placeholder {color: #de8603; }.header_color ::-moz-placeholder {color: #de8603; opacity:1; }.header_color :-ms-input-placeholder {color: #de8603;}.header_color .header_bg, .header_color .main_menu ul ul, .header_color .main_menu .menu ul li a, .header_color .pointer_arrow_wrap .pointer_arrow, .header_color .avia_mega_div, .header_color .av-subnav-menu > li ul, .header_color .av-subnav-menu a{background-color:#ffffff;color: #de8603;}.header_color .main_menu .menu ul li a:hover, .header_color .av-subnav-menu ul a:hover{background-color:#ffffff;}.header_color .sub_menu>ul>li>a, .header_color .sub_menu>div>ul>li>a, .header_color .main_menu ul:first-child > li > a, #top .header_color .main_menu .menu ul .current_page_item > a, #top .header_color .main_menu .menu ul .current-menu-item > a , #top .header_color .sub_menu li ul a{color:#de8603;}#top .header_color .main_menu .menu ul li>a:hover{color:#de8603;}.header_color .av-subnav-menu a:hover,.header_color .main_menu ul:first-child > li a:hover,.header_color .main_menu ul:first-child > li.current-menu-item > a,.header_color .main_menu ul:first-child > li.current_page_item > a,.header_color .main_menu ul:first-child > li.active-parent-item > a{color:#de8603;}#top .header_color .main_menu .menu .avia_mega_div ul .current-menu-item > a{color:#de8603;}.header_color .sub_menu>ul>li>a:hover, .header_color .sub_menu>div>ul>li>a:hover{color:#de8603;}#top .header_color .sub_menu ul li a:hover,.header_color .sub_menu ul:first-child > li.current-menu-item > a,.header_color .sub_menu ul:first-child > li.current_page_item > a,.header_color .sub_menu ul:first-child > li.active-parent-item > a{color:#de8603;}.header_color .sub_menu li ul a, .header_color #payment, .header_color .sub_menu ul li, .header_color .sub_menu ul, #top .header_color .sub_menu li li a:hover{background-color: #ffffff;}.header_color#header .avia_mega_div > .sub-menu.avia_mega_hr, .html_bottom_nav_header.html_logo_center #top #menu-item-search>a{border-color:#ffffff;}@media only screen and (max-width: 767px) { #top #wrap_all .av_header_transparency{background-color:#ffffff;color: #de8603;border-color: #ffffff;}}.header_color .avia-tt, .header_color .avia-tt .avia-arrow, .header_color .avia-tt .avia-arrow{background-color: #ffffff;color: #de8603;}.header_color .ajax_search_image{background-color: #de8603;color:#ffffff;}.header_color .ajax_search_excerpt{color: #de8603;}#top .header_color .ajax_search_entry:hover{background-color:#ffffff;}.header_color .ajax_search_title{color: #de8603;}.header_color .ajax_load{background-color:#de8603;}#top .header_color .avia-color-theme-color{color: #ffffff;border-color: #bc6401;}.header_color .avia-color-theme-color-subtle{background-color:#ffffff;color: #de8603;}.header_color .avia-color-theme-color-subtle:hover{background-color:#ffffff;color: #de8603;}#top .header_color .avia-color-theme-color-highlight{color: #ffffff;border-color: #de8603;background-color: #de8603;}.header_color .avia-icon-list .iconlist_icon{background-color:#eeeeee;}.header_color .avia-icon-list .iconlist-timeline{border-color:#ffffff;}.header_color .iconlist_content{color:#de8603;}#top .header_color .input-text, #top .header_color input[type=’text’], #top .header_color input[type=’input’], #top .header_color input[type=’password’], #top .header_color input[type=’email’], #top .header_color input[type=’number’], #top .header_color input[type=’url’], #top .header_color input[type=’tel’], #top .header_color input[type=’search’], #top .header_color textarea, #top .header_color select{border-color:#ffffff;background-color: #ffffff;color:#de8603;}#top .header_color .invers-color .input-text, #top .header_color .invers-color input[type=’text’], #top .header_color .invers-color input[type=’input’], #top .header_color .invers-color input[type=’password’], #top .header_color .invers-color input[type=’email’], #top .header_color .invers-color input[type=’number’], #top .header_color .invers-color input[type=’url’], #top .header_color .invers-color input[type=’tel’], #top .header_color .invers-color input[type=’search’], #top .header_color .invers-color textarea, #top .header_color .invers-color select{background-color: #ffffff;}.header_color .required{color:#de8603;}.header_color .av-masonry{background-color: #eeeeee; }.header_color .av-masonry-pagination, .header_color .av-masonry-pagination:hover, .header_color .av-masonry-outerimage-container{background-color: #ffffff;}.header_color .container .av-inner-masonry-content, #top .header_color .container .av-masonry-load-more, #top .header_color .container .av-masonry-sort, .header_color .container .av-masonry-entry .avia-arrow{background-color: #ffffff;} .header_color .hr-short .hr-inner-style, .header_color .hr-short .hr-inner{background-color: #ffffff;}div .header_color .tabcontainer .active_tab_content, div .header_color .tabcontainer .active_tab{background-color: #ffffff;color:#de8603;}.responsive.js_active #top .header_color .avia_combo_widget .top_tab .tab{border-top-color:#ffffff;}.header_color .template-archives .tabcontainer a, #top .header_color .tabcontainer .tab:hover, #top .header_color .tabcontainer .tab.active_tab{color:#de8603;} .header_color .template-archives .tabcontainer a:hover{color:#de8603;}.header_color .sidebar_tab_icon {background-color: #ffffff;}#top .header_color .sidebar_active_tab .sidebar_tab_icon {background-color: #de8603;}.header_color .sidebar_tab:hover .sidebar_tab_icon {background-color: #de8603;}.header_color .sidebar_tab, .header_color .tabcontainer .tab{color: #de8603;}.header_color div .sidebar_active_tab , div .header_color .tabcontainer.noborder_tabs .active_tab_content, div .header_color .tabcontainer.noborder_tabs .active_tab{color: #de8603;background-color: #ffffff;}#top .avia-smallarrow-slider .avia-slideshow-dots a{background-color: #ffffff;}#top .header_color .avia-smallarrow-slider .avia-slideshow-dots a.active, #top .header_color .avia-smallarrow-slider .avia-slideshow-dots a:hover{background-color: #de8603;}@media only screen and (max-width: 767px) {.responsive #top .header_color .tabcontainer .active_tab{ background-color: #de8603; color:#ffffff; } /*hard coded white to match the icons beside which are also white*/.responsive #top .header_color .tabcontainer{border-color:#ffffff;}.responsive #top .header_color .active_tab_content{background-color: #ffffff;}}.header_color tr:nth-child(even), .header_color .avia-data-table .avia-heading-row .avia-desc-col, .header_color .avia-data-table .avia-highlight-col, .header_color .pricing-table>li:nth-child(even), body .header_color .pricing-table.avia-desc-col li, #top .header_color .avia-data-table.avia_pricing_minimal th{background-color:#ffffff;color: #de8603;}.header_color table caption, .header_color tr:nth-child(even), .header_color .pricing-table>li:nth-child(even), #top .header_color .avia-data-table.avia_pricing_minimal td{color: #de8603;}.header_color tr:nth-child(odd), .header_color .pricing-table>li:nth-child(odd), .header_color .pricing-extra{background: #ffffff;}.header_color .pricing-table li.avia-pricing-row, .header_color .pricing-table li.avia-heading-row, .header_color .pricing-table li.avia-pricing-row .pricing-extra{background-color: #de8603;color:#ffffff;border-color:#ffa825;}.header_color .pricing-table li.avia-heading-row, .header_color .pricing-table li.avia-heading-row .pricing-extra{background-color: #ef9714;color:#ffffff;border-color:#ffa825;}.header_color .pricing-table.avia-desc-col .avia-heading-row, .header_color .pricing-table.avia-desc-col .avia-pricing-row{border-color:#ffffff;}.header_color .theme-color-bar .bar{background: #de8603;}.header_color .mejs-controls .mejs-time-rail .mejs-time-current, .header_color .mejs-controls .mejs-volume-button .mejs-volume-slider .mejs-volume-current, .header_color .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current, .header_color .button.av-sending-button, .header_color .av-striped-bar .theme-color-bar .bar{background: #de8603;}body .header_color .mejs-controls .mejs-time-rail .mejs-time-float {background: #de8603;color: #fff;}body .header_color .mejs-controls .mejs-time-rail .mejs-time-float-corner {border: solid 4px #de8603;border-color: #de8603 transparent transparent transparent;}.header_color .progress{background-color:#ffffff;} .header_color .button.av-sending-button{background: #de8603;background-image:-webkit-linear-gradient(-45deg, #de8603 25%, #ef9714 25%, #ef9714 50%, #de8603 50%, #de8603 75%, #ef9714 75%, #ef9714);background-image: -moz-linear-gradient(-45deg, #de8603 25%, #ef9714 25%, #ef9714 50%, #de8603 50%, #de8603 75%, #ef9714 75%, #ef9714);background-image: linear-gradient(-45deg, #de8603 25%, #ef9714 25%, #ef9714 50%, #de8603 50%, #de8603 75%, #ef9714 75%, #ef9714);border-color:#de8603;}.header_color span.bbp-admin-links a{color: #de8603;}.header_color span.bbp-admin-links a:hover{color: #de8603;}#top .header_color .bbp-reply-content, #top .header_color .bbp-topic-content, #top .header_color .bbp-body .super-sticky .page-numbers, #top .header_color .bbp-body .sticky .page-numbers, #top .header_color .bbp-pagination-links a:hover, #top .header_color .bbp-pagination-links span.current{ background:#ffffff; }#top .header_color .bbp-topics .bbp-header, #top .header_color .bbp-topics .bbp-header, #top .header_color .bbp-forums .bbp-header, #top .header_color .bbp-topics-front ul.super-sticky, #top .header_color .bbp-topics ul.super-sticky, #top .header_color .bbp-topics ul.sticky, #top .header_color .bbp-forum-content ul.sticky, #top .header_color .bbp-body .page-numbers{background-color:#ffffff;}#top .header_color .bbp-meta, #top .header_color .bbp-author-role, #top .header_color .bbp-author-ip, #top .header_color .bbp-pagination-count, #top .header_color .bbp-topics .bbp-body .bbp-topic-title:before{color: #de8603;}#top .header_color .bbp-admin-links{color:#ffffff;}.header_color #bbpress-forums li.bbp-body ul.forum, .header_color #bbpress-forums li.bbp-body ul.topic,.avia_transform .header_color .bbp-replies .bbp-reply-author:before, .avia_transform .forum-search .header_color .bbp-reply-author:before,.avia_transform .forum-search .header_color .bbp-topic-author:before{background-color:#ffffff;border-color:#ffffff;}#top .header_color .bbp-author-name{color:#de8603;}.header_color .widget_display_stats dt, .header_color .widget_display_stats dd{background-color:#ffffff;}.header_color dropcap2, .header_color dropcap3, .header_color avia_button, .header_color avia_button:hover, .header_color .on-primary-color, .header_color .on-primary-color:hover{color: #ffffff;}#main, .avia-msie-8 .av_header_sticky_disabled#header{background-color:#ffffff;}.html_header_sidebar #header .av-main-nav > li > a .avia-menu-text{color:#de8603;}.html_header_sidebar #header .av-main-nav > li > a .avia-menu-subtext{color:#de8603;}.html_header_sidebar #header .av-main-nav > li:hover > a .avia-menu-text, .html_header_sidebar #header .av-main-nav > li.current-menu-ancestor > a .avia-menu-text,.html_header_sidebar #header .av-main-nav li.current-menu-item > a .avia-menu-text{color:#de8603;}#top #wrap_all .av_seperator_big_border#header .av-menu-button-colored > a{background-color: #de8603; }#top #wrap_all .av_seperator_big_border#header .av-menu-button-bordered > a{background-color: #ffffff; }html.html_header_sidebar #wrap_all{background-color:#ffffff;}.header_color .av-hamburger-inner, .header_color .av-hamburger-inner::before, .header_color .av-hamburger-inner::after{background-color:#de8603;}.html_av-overlay-side #top .av-burger-overlay-scroll{background:#ffffff}.html_av-overlay-side #top #wrap_all div .av-burger-overlay-scroll #av-burger-menu-ul a:hover{background-color:#ffffff;}.html_av-overlay-side-classic #top #wrap_all .av-burger-overlay #av-burger-menu-ul li a{ border-color: #ffffff; }.html_av-overlay-side #top #wrap_all .av-burger-overlay-scroll #av-burger-menu-ul a{color:#de8603}.html_av-overlay-side.av-burger-overlay-active #top #wrap_all #header .menu-item-search-dropdown a{ color:#de8603 }.html_av-overlay-side-classic #top .av-burger-overlay li li .avia-bullet,.html_av-overlay-side.av-burger-overlay-active #top .av-hamburger-inner, .html_av-overlay-side.av-burger-overlay-active #top .av-hamburger-inner::before, .html_av-overlay-side.av-burger-overlay-active #top .av-hamburger-inner::after{background-color:#de8603;}.html_av-overlay-side .av-burger-overlay-scroll{width:350px; -webkit-transform: translateX(350px); transform: translateX(350px); }.socket_color .cart_dropdown .dropdown_widget li a, #top .socket_color .avia_cart_buttons .button, #top .socket_color .dropdown_widget .buttons .button, .socket_color .cart_dropdown_first .cart_dropdown_link, #top .socket_color p.order-info mark{color: #de8603;}.socket_color .woocommerce-tabs .tabs a, .socket_color .product_meta, .socket_color .quantity input.qty, .socket_color .cart_dropdown .dropdown_widget, .socket_color .avia_select_fake_val, .socket_color address, .socket_color .product>a .socket_color .product_excerpt, .socket_color .term_description, #top .socket_color .price .from, #top #wrap_all .socket_color del, .socket_color .dynamic-title .dynamic-heading, .socket_color .dynamic-title a, .socket_color .entry-summary .woocommerce-product-rating .woocommerce-review-link, .socket_color .chosen-container-single .chosen-single span, #top .socket_color .select2-container .select2-choice, .socket_color .woocommerce-MyAccount-navigation-link.is-active a{color: #de8603;}.socket_color div.product .woocommerce-tabs ul.tabs li.active a, .socket_color .cart_dropdown .dropdown_widget .widget_shopping_cart_content, .socket_color .cart_dropdown_link, .socket_color .inner_product_header, .socket_color .avia-arrow, #top .socket_color .variations select, #top .socket_color .variations input, #top .socket_color #reviews input[type=’text’], #top .socket_color #reviews input[type=’email’], .socket_color #reviews .comment-text, .socket_color #reviews #comment, .socket_color .single-product-main-image .images a, #top .socket_color .shop_table.cart .input-text, #top .socket_color form.login .input-text, #top .socket_color form.register .input-text, .socket_color .chosen-container-single .chosen-search, .socket_color .products .product-category h3:before, #top .socket_color .quantity input.qty{background-color: #ffffff;}.socket_color .woocommerce-tabs .tabs .active, .socket_color div.product .woocommerce-tabs .panel, .socket_color .activeslideThumb, .socket_color #payment li, .socket_color .widget_price_filter .ui-slider-horizontal .ui-slider-range, .socket_color .avia_cart, .socket_color form.login, .socket_color form.register, .socket_color .col-1, .socket_color .col-2, .socket_color .variations_form, .socket_color .dynamic-title, .socket_color .single-product-main-image .thumbnails a , .socket_color .quantity input.qty, .socket_color .avia_cart_buttons, #top .socket_color .dropdown_widget .buttons, div .dropdown_widget .cart_list li:hover, .socket_color .woocommerce-info, #top .socket_color .chosen-container-single .chosen-single, #top .socket_color .chosen-search input[type=’text’], .socket_color .chosen-results, .socket_color .chosen-container .chosen-drop, #top .socket_color .select2-container .select2-choice, .socket_color .widget_layered_nav_filters .chosen a:hover, .socket_color .widget_layered_nav .chosen a:hover, .socket_color .woocommerce-MyAccount-navigation-link.is-active, .socket_color .woocommerce-MyAccount-navigation-link:hover{background-color: #1c1c1c;}.socket_color .thumbnail_container img, #top .socket_color #main .order_details, #top .socket_color .chosen-search input[type=’text’], #top .socket_color .chosen-container-single .chosen-single, #top .socket_color .chosen-container-active .chosen-single, #top .socket_color .chosen-container .chosen-drop, .socket_color .chosen-container .chosen-results, .socket_color .products .product-category h3:before, #top .socket_color .select2-container .select2-choice{border-color: #e1e1e1;}.socket_color .summary div{border-color: #1c1c1c;}.socket_color .widget_price_filter .price_slider_wrapper .price_slider .ui-slider-handle, #top .socket_color a.remove, #top .socket_color .onsale{background-color: #de8603;}#top .socket_color .active-result.highlighted{background-color: #de8603;color: #ffffff;}.socket_color #shop_header a:hover{color: #fff;}#top .socket_color .price, .socket_color .stock, #top #wrap_all .socket_color ins, .socket_color .products .product-category h3 .count, .socket_color .widget_layered_nav_filters .chosen a:before, .socket_color .widget_layered_nav .chosen a:before{color:#de8603;}.socket_color .dynamic-title a:hover{color:#de8603;}.socket_color .widget_price_filter .price_slider_wrapper .ui-widget-content{background: #e1e1e1;}#top .socket_color .chzn-container-single .chzn-single{border-color: #e1e1e1;background-color: #1c1c1c;color:#de8603;}.socket_color #payment {background-color: #1c1c1c;}#top .socket_color .quantity input.plus, #top .socket_color .quantity input.minus {border-color: #e1e1e1;background-color: #0b0b0b;color:#de8603;}.socket_color .wc-bookings-booking-form .block-picker li a, #top .socket_color .wc-bookings-date-picker .ui-datepicker td{border-color: #e1e1e1;}#top .socket_color .wc-bookings-booking-form .block-picker li a:hover,#top .socket_color .wc-bookings-booking-form .block-picker li a:focus,#top .socket_color .wc-bookings-booking-form .block-picker li a.selected{background-color: #de8603 !important;color:#ffffff !important;}#top .socket_color .wc-bookings-date-picker legend .wc-bookings-date-picker-choose-date, #top .socket_color .wc-bookings-date-picker .ui-datepicker-header{border-color: #de8603;background-color: #de8603;color:#ffffff;}.socket_color .wc-bookings-date-picker .ui-datepicker td.bookable a{background-color: #de8603 !important;color:#ffffff !important;border-color: #e1e1e1;}#top .socket_color .wc-bookings-date-picker .ui-datepicker th,#top .socket_color .wc-bookings-date-picker .ui-datepicker td .ui-state-default{color:#de8603;}#top .socket_color .wc_bookings_field_start_date, #top .socket_color .wc-bookings-date-picker span.label{color: #de8603;}#top .socket_color .wc-bookings-booking-form .wc-bookings-booking-cost, #top .socket_color .wc-bookings-date-picker .ui-datepicker td.ui-datepicker-other-month{background-color: #1c1c1c;}#top .wc-bookings-booking-form .blockUI.blockOverlay{background-color: #ffffff !important;}#top .socket_color .wc-bookings-date-picker .ui-datepicker td.bookable-range .ui-state-default, #top .socket_color .wc-bookings-date-picker .ui-datepicker td.ui-datepicker-current-day a,#top .socket_color .wc-bookings-date-picker .ui-datepicker td.bookable-range{background: #9a4200 !important;color: #ffffff;}.socket_color .sort-param > li > span, .socket_color .sort-param > li > a, .socket_color .sort-param ul{background-color: #1c1c1c;}.socket_color .sort-param > li:hover > span, .socket_color .sort-param > li:hover > a, .socket_color .sort-param > li:hover ul, .socket_color .product-sorting strong{color:#666666;}.socket_color .sort-param a{color:#de8603;}#top .socket_color .sort-param a:hover{color:#de8603;}.socket_color .avia-bullet{border-color: #de8603;}#top .socket_color a:hover .avia-bullet{border-color: #de8603;}.socket_color .sort-param .current-param a{color:#de8603;}.socket_color .sort-param .current-param .avia-bullet{border-color:#de8603;}.footer_color .cart_dropdown .dropdown_widget li a, #top .footer_color .avia_cart_buttons .button, #top .footer_color .dropdown_widget .buttons .button, .footer_color .cart_dropdown_first .cart_dropdown_link, #top .footer_color p.order-info mark{color: #f39200;}.footer_color .woocommerce-tabs .tabs a, .footer_color .product_meta, .footer_color .quantity input.qty, .footer_color .cart_dropdown .dropdown_widget, .footer_color .avia_select_fake_val, .footer_color address, .footer_color .product>a .footer_color .product_excerpt, .footer_color .term_description, #top .footer_color .price .from, #top #wrap_all .footer_color del, .footer_color .dynamic-title .dynamic-heading, .footer_color .dynamic-title a, .footer_color .entry-summary .woocommerce-product-rating .woocommerce-review-link, .footer_color .chosen-container-single .chosen-single span, #top .footer_color .select2-container .select2-choice, .footer_color .woocommerce-MyAccount-navigation-link.is-active a{color: #de8603;}.footer_color div.product .woocommerce-tabs ul.tabs li.active a, .footer_color .cart_dropdown .dropdown_widget .widget_shopping_cart_content, .footer_color .cart_dropdown_link, .footer_color .inner_product_header, .footer_color .avia-arrow, #top .footer_color .variations select, #top .footer_color .variations input, #top .footer_color #reviews input[type=’text’], #top .footer_color #reviews input[type=’email’], .footer_color #reviews .comment-text, .footer_color #reviews #comment, .footer_color .single-product-main-image .images a, #top .footer_color .shop_table.cart .input-text, #top .footer_color form.login .input-text, #top .footer_color form.register .input-text, .footer_color .chosen-container-single .chosen-search, .footer_color .products .product-category h3:before, #top .footer_color .quantity input.qty{background-color: #ffffff;}.footer_color .woocommerce-tabs .tabs .active, .footer_color div.product .woocommerce-tabs .panel, .footer_color .activeslideThumb, .footer_color #payment li, .footer_color .widget_price_filter .ui-slider-horizontal .ui-slider-range, .footer_color .avia_cart, .footer_color form.login, .footer_color form.register, .footer_color .col-1, .footer_color .col-2, .footer_color .variations_form, .footer_color .dynamic-title, .footer_color .single-product-main-image .thumbnails a , .footer_color .quantity input.qty, .footer_color .avia_cart_buttons, #top .footer_color .dropdown_widget .buttons, div .dropdown_widget .cart_list li:hover, .footer_color .woocommerce-info, #top .footer_color .chosen-container-single .chosen-single, #top .footer_color .chosen-search input[type=’text’], .footer_color .chosen-results, .footer_color .chosen-container .chosen-drop, #top .footer_color .select2-container .select2-choice, .footer_color .widget_layered_nav_filters .chosen a:hover, .footer_color .widget_layered_nav .chosen a:hover, .footer_color .woocommerce-MyAccount-navigation-link.is-active, .footer_color .woocommerce-MyAccount-navigation-link:hover{background-color: #f8f8f8;}.footer_color .thumbnail_container img, #top .footer_color #main .order_details, #top .footer_color .chosen-search input[type=’text’], #top .footer_color .chosen-container-single .chosen-single, #top .footer_color .chosen-container-active .chosen-single, #top .footer_color .chosen-container .chosen-drop, .footer_color .chosen-container .chosen-results, .footer_color .products .product-category h3:before, #top .footer_color .select2-container .select2-choice{border-color: #e1e1e1;}.footer_color .summary div{border-color: #f8f8f8;}.footer_color .widget_price_filter .price_slider_wrapper .price_slider .ui-slider-handle, #top .footer_color a.remove, #top .footer_color .onsale{background-color: #f39200;}#top .footer_color .active-result.highlighted{background-color: #f39200;color: #ffffff;}.footer_color #shop_header a:hover{color: #fff;}#top .footer_color .price, .footer_color .stock, #top #wrap_all .footer_color ins, .footer_color .products .product-category h3 .count, .footer_color .widget_layered_nav_filters .chosen a:before, .footer_color .widget_layered_nav .chosen a:before{color:#f39200;}.footer_color .dynamic-title a:hover{color:#de8603;}.footer_color .widget_price_filter .price_slider_wrapper .ui-widget-content{background: #e1e1e1;}#top .footer_color .chzn-container-single .chzn-single{border-color: #e1e1e1;background-color: #f8f8f8;color:#de8603;}.footer_color #payment {background-color: #f8f8f8;}#top .footer_color .quantity input.plus, #top .footer_color .quantity input.minus {border-color: #e1e1e1;background-color: #e7e7e7;color:#de8603;}.footer_color .wc-bookings-booking-form .block-picker li a, #top .footer_color .wc-bookings-date-picker .ui-datepicker td{border-color: #e1e1e1;}#top .footer_color .wc-bookings-booking-form .block-picker li a:hover,#top .footer_color .wc-bookings-booking-form .block-picker li a:focus,#top .footer_color .wc-bookings-booking-form .block-picker li a.selected{background-color: #f39200 !important;color:#ffffff !important;}#top .footer_color .wc-bookings-date-picker legend .wc-bookings-date-picker-choose-date, #top .footer_color .wc-bookings-date-picker .ui-datepicker-header{border-color: #f39200;background-color: #f39200;color:#ffffff;}.footer_color .wc-bookings-date-picker .ui-datepicker td.bookable a{background-color: #f39200 !important;color:#ffffff !important;border-color: #e1e1e1;}#top .footer_color .wc-bookings-date-picker .ui-datepicker th,#top .footer_color .wc-bookings-date-picker .ui-datepicker td .ui-state-default{color:#f39200;}#top .footer_color .wc_bookings_field_start_date, #top .footer_color .wc-bookings-date-picker span.label{color: #de8603;}#top .footer_color .wc-bookings-booking-form .wc-bookings-booking-cost, #top .footer_color .wc-bookings-date-picker .ui-datepicker td.ui-datepicker-other-month{background-color: #f8f8f8;}#top .wc-bookings-booking-form .blockUI.blockOverlay{background-color: #ffffff !important;}#top .footer_color .wc-bookings-date-picker .ui-datepicker td.bookable-range .ui-state-default, #top .footer_color .wc-bookings-date-picker .ui-datepicker td.ui-datepicker-current-day a,#top .footer_color .wc-bookings-date-picker .ui-datepicker td.bookable-range{background: #b05000 !important;color: #ffffff;}.footer_color .sort-param > li > span, .footer_color .sort-param > li > a, .footer_color .sort-param ul{background-color: #f8f8f8;}.footer_color .sort-param > li:hover > span, .footer_color .sort-param > li:hover > a, .footer_color .sort-param > li:hover ul, .footer_color .product-sorting strong{color:#f39200;}.footer_color .sort-param a{color:#de8603;}#top .footer_color .sort-param a:hover{color:#de8603;}.footer_color .avia-bullet{border-color: #de8603;}#top .footer_color a:hover .avia-bullet{border-color: #de8603;}.footer_color .sort-param .current-param a{color:#f39200;}.footer_color .sort-param .current-param .avia-bullet{border-color:#f39200;}.alternate_color .cart_dropdown .dropdown_widget li a, #top .alternate_color .avia_cart_buttons .button, #top .alternate_color .dropdown_widget .buttons .button, .alternate_color .cart_dropdown_first .cart_dropdown_link, #top .alternate_color p.order-info mark{color: #de8603;}.alternate_color .woocommerce-tabs .tabs a, .alternate_color .product_meta, .alternate_color .quantity input.qty, .alternate_color .cart_dropdown .dropdown_widget, .alternate_color .avia_select_fake_val, .alternate_color address, .alternate_color .product>a .alternate_color .product_excerpt, .alternate_color .term_description, #top .alternate_color .price .from, #top #wrap_all .alternate_color del, .alternate_color .dynamic-title .dynamic-heading, .alternate_color .dynamic-title a, .alternate_color .entry-summary .woocommerce-product-rating .woocommerce-review-link, .alternate_color .chosen-container-single .chosen-single span, #top .alternate_color .select2-container .select2-choice, .alternate_color .woocommerce-MyAccount-navigation-link.is-active a{color: #de8603;}.alternate_color div.product .woocommerce-tabs ul.tabs li.active a, .alternate_color .cart_dropdown .dropdown_widget .widget_shopping_cart_content, .alternate_color .cart_dropdown_link, .alternate_color .inner_product_header, .alternate_color .avia-arrow, #top .alternate_color .variations select, #top .alternate_color .variations input, #top .alternate_color #reviews input[type=’text’], #top .alternate_color #reviews input[type=’email’], .alternate_color #reviews .comment-text, .alternate_color #reviews #comment, .alternate_color .single-product-main-image .images a, #top .alternate_color .shop_table.cart .input-text, #top .alternate_color form.login .input-text, #top .alternate_color form.register .input-text, .alternate_color .chosen-container-single .chosen-search, .alternate_color .products .product-category h3:before, #top .alternate_color .quantity input.qty{background-color: #ffffff;}.alternate_color .woocommerce-tabs .tabs .active, .alternate_color div.product .woocommerce-tabs .panel, .alternate_color .activeslideThumb, .alternate_color #payment li, .alternate_color .widget_price_filter .ui-slider-horizontal .ui-slider-range, .alternate_color .avia_cart, .alternate_color form.login, .alternate_color form.register, .alternate_color .col-1, .alternate_color .col-2, .alternate_color .variations_form, .alternate_color .dynamic-title, .alternate_color .single-product-main-image .thumbnails a , .alternate_color .quantity input.qty, .alternate_color .avia_cart_buttons, #top .alternate_color .dropdown_widget .buttons, div .dropdown_widget .cart_list li:hover, .alternate_color .woocommerce-info, #top .alternate_color .chosen-container-single .chosen-single, #top .alternate_color .chosen-search input[type=’text’], .alternate_color .chosen-results, .alternate_color .chosen-container .chosen-drop, #top .alternate_color .select2-container .select2-choice, .alternate_color .widget_layered_nav_filters .chosen a:hover, .alternate_color .widget_layered_nav .chosen a:hover, .alternate_color .woocommerce-MyAccount-navigation-link.is-active, .alternate_color .woocommerce-MyAccount-navigation-link:hover{background-color: #f8f8f8;}.alternate_color .thumbnail_container img, #top .alternate_color #main .order_details, #top .alternate_color .chosen-search input[type=’text’], #top .alternate_color .chosen-container-single .chosen-single, #top .alternate_color .chosen-container-active .chosen-single, #top .alternate_color .chosen-container .chosen-drop, .alternate_color .chosen-container .chosen-results, .alternate_color .products .product-category h3:before, #top .alternate_color .select2-container .select2-choice{border-color: #e1e1e1;}.alternate_color .summary div{border-color: #f8f8f8;}.alternate_color .widget_price_filter .price_slider_wrapper .price_slider .ui-slider-handle, #top .alternate_color a.remove, #top .alternate_color .onsale{background-color: #de8603;}#top .alternate_color .active-result.highlighted{background-color: #de8603;color: #ffffff;}.alternate_color #shop_header a:hover{color: #fff;}#top .alternate_color .price, .alternate_color .stock, #top #wrap_all .alternate_color ins, .alternate_color .products .product-category h3 .count, .alternate_color .widget_layered_nav_filters .chosen a:before, .alternate_color .widget_layered_nav .chosen a:before{color:#de8603;}.alternate_color .dynamic-title a:hover{color:#de8603;}.alternate_color .widget_price_filter .price_slider_wrapper .ui-widget-content{background: #e1e1e1;}#top .alternate_color .chzn-container-single .chzn-single{border-color: #e1e1e1;background-color: #f8f8f8;color:#de8603;}.alternate_color #payment {background-color: #f8f8f8;}#top .alternate_color .quantity input.plus, #top .alternate_color .quantity input.minus {border-color: #e1e1e1;background-color: #e7e7e7;color:#de8603;}.alternate_color .wc-bookings-booking-form .block-picker li a, #top .alternate_color .wc-bookings-date-picker .ui-datepicker td{border-color: #e1e1e1;}#top .alternate_color .wc-bookings-booking-form .block-picker li a:hover,#top .alternate_color .wc-bookings-booking-form .block-picker li a:focus,#top .alternate_color .wc-bookings-booking-form .block-picker li a.selected{background-color: #de8603 !important;color:#ffffff !important;}#top .alternate_color .wc-bookings-date-picker legend .wc-bookings-date-picker-choose-date, #top .alternate_color .wc-bookings-date-picker .ui-datepicker-header{border-color: #de8603;background-color: #de8603;color:#ffffff;}.alternate_color .wc-bookings-date-picker .ui-datepicker td.bookable a{background-color: #de8603 !important;color:#ffffff !important;border-color: #e1e1e1;}#top .alternate_color .wc-bookings-date-picker .ui-datepicker th,#top .alternate_color .wc-bookings-date-picker .ui-datepicker td .ui-state-default{color:#de8603;}#top .alternate_color .wc_bookings_field_start_date, #top .alternate_color .wc-bookings-date-picker span.label{color: #de8603;}#top .alternate_color .wc-bookings-booking-form .wc-bookings-booking-cost, #top .alternate_color .wc-bookings-date-picker .ui-datepicker td.ui-datepicker-other-month{background-color: #f8f8f8;}#top .wc-bookings-booking-form .blockUI.blockOverlay{background-color: #ffffff !important;}#top .alternate_color .wc-bookings-date-picker .ui-datepicker td.bookable-range .ui-state-default, #top .alternate_color .wc-bookings-date-picker .ui-datepicker td.ui-datepicker-current-day a,#top .alternate_color .wc-bookings-date-picker .ui-datepicker td.bookable-range{background: #9a4200 !important;color: #ffffff;}.alternate_color .sort-param > li > span, .alternate_color .sort-param > li > a, .alternate_color .sort-param ul{background-color: #f8f8f8;}.alternate_color .sort-param > li:hover > span, .alternate_color .sort-param > li:hover > a, .alternate_color .sort-param > li:hover ul, .alternate_color .product-sorting strong{color:#666666;}.alternate_color .sort-param a{color:#de8603;}#top .alternate_color .sort-param a:hover{color:#de8603;}.alternate_color .avia-bullet{border-color: #de8603;}#top .alternate_color a:hover .avia-bullet{border-color: #de8603;}.alternate_color .sort-param .current-param a{color:#de8603;}.alternate_color .sort-param .current-param .avia-bullet{border-color:#de8603;}.main_color .cart_dropdown .dropdown_widget li a, #top .main_color .avia_cart_buttons .button, #top .main_color .dropdown_widget .buttons .button, .main_color .cart_dropdown_first .cart_dropdown_link, #top .main_color p.order-info mark{color: #4a4a4a;}.main_color .woocommerce-tabs .tabs a, .main_color .product_meta, .main_color .quantity input.qty, .main_color .cart_dropdown .dropdown_widget, .main_color .avia_select_fake_val, .main_color address, .main_color .product>a .main_color .product_excerpt, .main_color .term_description, #top .main_color .price .from, #top #wrap_all .main_color del, .main_color .dynamic-title .dynamic-heading, .main_color .dynamic-title a, .main_color .entry-summary .woocommerce-product-rating .woocommerce-review-link, .main_color .chosen-container-single .chosen-single span, #top .main_color .select2-container .select2-choice, .main_color .woocommerce-MyAccount-navigation-link.is-active a{color: #de8603;}.main_color div.product .woocommerce-tabs ul.tabs li.active a, .main_color .cart_dropdown .dropdown_widget .widget_shopping_cart_content, .main_color .cart_dropdown_link, .main_color .inner_product_header, .main_color .avia-arrow, #top .main_color .variations select, #top .main_color .variations input, #top .main_color #reviews input[type=’text’], #top .main_color #reviews input[type=’email’], .main_color #reviews .comment-text, .main_color #reviews #comment, .main_color .single-product-main-image .images a, #top .main_color .shop_table.cart .input-text, #top .main_color form.login .input-text, #top .main_color form.register .input-text, .main_color .chosen-container-single .chosen-search, .main_color .products .product-category h3:before, #top .main_color .quantity input.qty{background-color: #ffffff;}.main_color .woocommerce-tabs .tabs .active, .main_color div.product .woocommerce-tabs .panel, .main_color .activeslideThumb, .main_color #payment li, .main_color .widget_price_filter .ui-slider-horizontal .ui-slider-range, .main_color .avia_cart, .main_color form.login, .main_color form.register, .main_color .col-1, .main_color .col-2, .main_color .variations_form, .main_color .dynamic-title, .main_color .single-product-main-image .thumbnails a , .main_color .quantity input.qty, .main_color .avia_cart_buttons, #top .main_color .dropdown_widget .buttons, div .dropdown_widget .cart_list li:hover, .main_color .woocommerce-info, #top .main_color .chosen-container-single .chosen-single, #top .main_color .chosen-search input[type=’text’], .main_color .chosen-results, .main_color .chosen-container .chosen-drop, #top .main_color .select2-container .select2-choice, .main_color .widget_layered_nav_filters .chosen a:hover, .main_color .widget_layered_nav .chosen a:hover, .main_color .woocommerce-MyAccount-navigation-link.is-active, .main_color .woocommerce-MyAccount-navigation-link:hover{background-color: #f8f8f8;}.main_color .thumbnail_container img, #top .main_color #main .order_details, #top .main_color .chosen-search input[type=’text’], #top .main_color .chosen-container-single .chosen-single, #top .main_color .chosen-container-active .chosen-single, #top .main_color .chosen-container .chosen-drop, .main_color .chosen-container .chosen-results, .main_color .products .product-category h3:before, #top .main_color .select2-container .select2-choice{border-color: #e1e1e1;}.main_color .summary div{border-color: #f8f8f8;}.main_color .widget_price_filter .price_slider_wrapper .price_slider .ui-slider-handle, #top .main_color a.remove, #top .main_color .onsale{background-color: #f39200;}#top .main_color .active-result.highlighted{background-color: #f39200;color: #ffffff;}.main_color #shop_header a:hover{color: #fff;}#top .main_color .price, .main_color .stock, #top #wrap_all .main_color ins, .main_color .products .product-category h3 .count, .main_color .widget_layered_nav_filters .chosen a:before, .main_color .widget_layered_nav .chosen a:before{color:#f39200;}.main_color .dynamic-title a:hover{color:#de8603;}.main_color .widget_price_filter .price_slider_wrapper .ui-widget-content{background: #e1e1e1;}#top .main_color .chzn-container-single .chzn-single{border-color: #e1e1e1;background-color: #f8f8f8;color:#de8603;}.main_color #payment {background-color: #f8f8f8;}#top .main_color .quantity input.plus, #top .main_color .quantity input.minus {border-color: #e1e1e1;background-color: #e7e7e7;color:#de8603;}.main_color .wc-bookings-booking-form .block-picker li a, #top .main_color .wc-bookings-date-picker .ui-datepicker td{border-color: #e1e1e1;}#top .main_color .wc-bookings-booking-form .block-picker li a:hover,#top .main_color .wc-bookings-booking-form .block-picker li a:focus,#top .main_color .wc-bookings-booking-form .block-picker li a.selected{background-color: #f39200 !important;color:#ffffff !important;}#top .main_color .wc-bookings-date-picker legend .wc-bookings-date-picker-choose-date, #top .main_color .wc-bookings-date-picker .ui-datepicker-header{border-color: #f39200;background-color: #f39200;color:#ffffff;}.main_color .wc-bookings-date-picker .ui-datepicker td.bookable a{background-color: #f39200 !important;color:#ffffff !important;border-color: #e1e1e1;}#top .main_color .wc-bookings-date-picker .ui-datepicker th,#top .main_color .wc-bookings-date-picker .ui-datepicker td .ui-state-default{color:#4a4a4a;}#top .main_color .wc_bookings_field_start_date, #top .main_color .wc-bookings-date-picker span.label{color: #de8603;}#top .main_color .wc-bookings-booking-form .wc-bookings-booking-cost, #top .main_color .wc-bookings-date-picker .ui-datepicker td.ui-datepicker-other-month{background-color: #f8f8f8;}#top .wc-bookings-booking-form .blockUI.blockOverlay{background-color: #ffffff !important;}#top .main_color .wc-bookings-date-picker .ui-datepicker td.bookable-range .ui-state-default, #top .main_color .wc-bookings-date-picker .ui-datepicker td.ui-datepicker-current-day a,#top .main_color .wc-bookings-date-picker .ui-datepicker td.bookable-range{background: #b05000 !important;color: #ffffff;}.main_color .sort-param > li > span, .main_color .sort-param > li > a, .main_color .sort-param ul{background-color: #f8f8f8;}.main_color .sort-param > li:hover > span, .main_color .sort-param > li:hover > a, .main_color .sort-param > li:hover ul, .main_color .product-sorting strong{color:#f39200;}.main_color .sort-param a{color:#de8603;}#top .main_color .sort-param a:hover{color:#de8603;}.main_color .avia-bullet{border-color: #de8603;}#top .main_color a:hover .avia-bullet{border-color: #de8603;}.main_color .sort-param .current-param a{color:#f39200;}.main_color .sort-param .current-param .avia-bullet{border-color:#f39200;}.added_to_cart_notification, .added_to_cart_notification .avia-arrow{background-color: #ffffff;color: #de8603;border-color: #e1e1e1;}.added_to_cart_notification strong{color:#f39200;}#top .select2-drop{ background-color: #ffffff; }#top .select2-results{color:#de8603;}#top .select2-search{ background-color: #f8f8f8; }#top .select2-search, #top .select2-drop-active{border-color: #e1e1e1;}#top .select2-search input[type=’text’]{background-color: #ffffff; color: #de8603; border-color: #e1e1e1;}.select2-results .select2-highlighted {color: #ffffff; background-color: #f39200; }.header_color .cart_dropdown .dropdown_widget li a, #top .header_color .avia_cart_buttons .button, #top .header_color .dropdown_widget .buttons .button, .header_color .cart_dropdown_first .cart_dropdown_link, #top .header_color p.order-info mark{color: #de8603;}.header_color .woocommerce-tabs .tabs a, .header_color .product_meta, .header_color .quantity input.qty, .header_color .cart_dropdown .dropdown_widget, .header_color .avia_select_fake_val, .header_color address, .header_color .product>a .header_color .product_excerpt, .header_color .term_description, #top .header_color .price .from, #top #wrap_all .header_color del, .header_color .dynamic-title .dynamic-heading, .header_color .dynamic-title a, .header_color .entry-summary .woocommerce-product-rating .woocommerce-review-link, .header_color .chosen-container-single .chosen-single span, #top .header_color .select2-container .select2-choice, .header_color .woocommerce-MyAccount-navigation-link.is-active a{color: #de8603;}.header_color div.product .woocommerce-tabs ul.tabs li.active a, .header_color .cart_dropdown .dropdown_widget .widget_shopping_cart_content, .header_color .cart_dropdown_link, .header_color .inner_product_header, .header_color .avia-arrow, #top .header_color .variations select, #top .header_color .variations input, #top .header_color #reviews input[type=’text’], #top .header_color #reviews input[type=’email’], .header_color #reviews .comment-text, .header_color #reviews #comment, .header_color .single-product-main-image .images a, #top .header_color .shop_table.cart .input-text, #top .header_color form.login .input-text, #top .header_color form.register .input-text, .header_color .chosen-container-single .chosen-search, .header_color .products .product-category h3:before, #top .header_color .quantity input.qty{background-color: #ffffff;}.header_color .woocommerce-tabs .tabs .active, .header_color div.product .woocommerce-tabs .panel, .header_color .activeslideThumb, .header_color #payment li, .header_color .widget_price_filter .ui-slider-horizontal .ui-slider-range, .header_color .avia_cart, .header_color form.login, .header_color form.register, .header_color .col-1, .header_color .col-2, .header_color .variations_form, .header_color .dynamic-title, .header_color .single-product-main-image .thumbnails a , .header_color .quantity input.qty, .header_color .avia_cart_buttons, #top .header_color .dropdown_widget .buttons, div .dropdown_widget .cart_list li:hover, .header_color .woocommerce-info, #top .header_color .chosen-container-single .chosen-single, #top .header_color .chosen-search input[type=’text’], .header_color .chosen-results, .header_color .chosen-container .chosen-drop, #top .header_color .select2-container .select2-choice, .header_color .widget_layered_nav_filters .chosen a:hover, .header_color .widget_layered_nav .chosen a:hover, .header_color .woocommerce-MyAccount-navigation-link.is-active, .header_color .woocommerce-MyAccount-navigation-link:hover{background-color: #ffffff;}.header_color .thumbnail_container img, #top .header_color #main .order_details, #top .header_color .chosen-search input[type=’text’], #top .header_color .chosen-container-single .chosen-single, #top .header_color .chosen-container-active .chosen-single, #top .header_color .chosen-container .chosen-drop, .header_color .chosen-container .chosen-results, .header_color .products .product-category h3:before, #top .header_color .select2-container .select2-choice{border-color: #ffffff;}.header_color .summary div{border-color: #ffffff;}.header_color .widget_price_filter .price_slider_wrapper .price_slider .ui-slider-handle, #top .header_color a.remove, #top .header_color .onsale{background-color: #de8603;}#top .header_color .active-result.highlighted{background-color: #de8603;color: #ffffff;}.header_color #shop_header a:hover{color: #fff;}#top .header_color .price, .header_color .stock, #top #wrap_all .header_color ins, .header_color .products .product-category h3 .count, .header_color .widget_layered_nav_filters .chosen a:before, .header_color .widget_layered_nav .chosen a:before{color:#de8603;}.header_color .dynamic-title a:hover{color:#de8603;}.header_color .widget_price_filter .price_slider_wrapper .ui-widget-content{background: #ffffff;}#top .header_color .chzn-container-single .chzn-single{border-color: #ffffff;background-color: #ffffff;color:#de8603;}.header_color #payment {background-color: #ffffff;}#top .header_color .quantity input.plus, #top .header_color .quantity input.minus {border-color: #ffffff;background-color: #eeeeee;color:#de8603;}.header_color .wc-bookings-booking-form .block-picker li a, #top .header_color .wc-bookings-date-picker .ui-datepicker td{border-color: #ffffff;}#top .header_color .wc-bookings-booking-form .block-picker li a:hover,#top .header_color .wc-bookings-booking-form .block-picker li a:focus,#top .header_color .wc-bookings-booking-form .block-picker li a.selected{background-color: #de8603 !important;color:#ffffff !important;}#top .header_color .wc-bookings-date-picker legend .wc-bookings-date-picker-choose-date, #top .header_color .wc-bookings-date-picker .ui-datepicker-header{border-color: #de8603;background-color: #de8603;color:#ffffff;}.header_color .wc-bookings-date-picker .ui-datepicker td.bookable a{background-color: #de8603 !important;color:#ffffff !important;border-color: #ffffff;}#top .header_color .wc-bookings-date-picker .ui-datepicker th,#top .header_color .wc-bookings-date-picker .ui-datepicker td .ui-state-default{color:#de8603;}#top .header_color .wc_bookings_field_start_date, #top .header_color .wc-bookings-date-picker span.label{color: #de8603;}#top .header_color .wc-bookings-booking-form .wc-bookings-booking-cost, #top .header_color .wc-bookings-date-picker .ui-datepicker td.ui-datepicker-other-month{background-color: #ffffff;}#top .wc-bookings-booking-form .blockUI.blockOverlay{background-color: #ffffff !important;}#top .header_color .wc-bookings-date-picker .ui-datepicker td.bookable-range .ui-state-default, #top .header_color .wc-bookings-date-picker .ui-datepicker td.ui-datepicker-current-day a,#top .header_color .wc-bookings-date-picker .ui-datepicker td.bookable-range{background: #9a4200 !important;color: #ffffff;}.header_color .sort-param > li > span, .header_color .sort-param > li > a, .header_color .sort-param ul{background-color: #ffffff;}.header_color .sort-param > li:hover > span, .header_color .sort-param > li:hover > a, .header_color .sort-param > li:hover ul, .header_color .product-sorting strong{color:#de8603;}.header_color .sort-param a{color:#de8603;}#top .header_color .sort-param a:hover{color:#de8603;}.header_color .avia-bullet{border-color: #de8603;}#top .header_color a:hover .avia-bullet{border-color: #de8603;}.header_color .sort-param .current-param a{color:#de8603;}.header_color .sort-param .current-param .avia-bullet{border-color:#de8603;}#top .av-cart-counter{background-color:#de8603; color: #ffffff;}.bbp-topics .bbp-body .bbp-topic-title:before{ content:’\E83b’; font-family: ‘entypo-fontello’; }.bbp-topics .bbp-body .topic-voices-multi .bbp-topic-title:before { content:’\E83c’; font-family: ‘entypo-fontello’; }.bbp-topics .bbp-body .super-sticky .bbp-topic-title:before { content:’\E808′; font-family: ‘entypo-fontello’; }.bbp-topics .bbp-body .sticky .bbp-topic-title:before { content:’\E809′; font-family: ‘entypo-fontello’; }.bbp-topics .bbp-body .status-closed .bbp-topic-title:before { content:’\E824′; font-family: ‘entypo-fontello’; }.bbp-topics .bbp-body .super-sticky.status-closed .bbp-topic-title:before{ content:’\E809\E824′; font-family: ‘entypo-fontello’; }.bbp-topics .bbp-body .sticky.status-closed .bbp-topic-title:before{ content:’\E808\E824′; font-family: ‘entypo-fontello’; }#top .avia-layerslider .ls-nav-prev:before{ content:’\E87c’; font-family: ‘entypo-fontello’; }#top .avia-layerslider .ls-nav-next:before{ content:’\E87d’; font-family: ‘entypo-fontello’; }#top .avia-layerslider .ls-nav-start:before, #top .avia_playpause_icon:before{ content:’\E897′; font-family: ‘entypo-fontello’; }#top .avia-layerslider .ls-nav-stop:before, #top .avia_playpause_icon.av-pause:before{ content:’\E899′; font-family: ‘entypo-fontello’; }.image-overlay .image-overlay-inside:before{ content:’\E869′; font-family: ‘entypo-fontello’; }.image-overlay.overlay-type-extern .image-overlay-inside:before{ content:’\E832′; font-family: ‘entypo-fontello’; }.image-overlay.overlay-type-video .image-overlay-inside:before{ content:’\E897′; font-family: ‘entypo-fontello’; }div.avia-popup button.mfp-arrow:before{ content:’\E87d’; font-family: ‘entypo-fontello’; }div.avia-popup button.mfp-arrow-left:before { content:’\E87c’; font-family: ‘entypo-fontello’;}
    .html_header_transparency #top .avia-builder-el-0 .container, .html_header_transparency #top .avia-builder-el-0 .slideshow_caption{padding-top:88px;}
    body{font-family:’ arial’, ‘HelveticaNeue’, ‘Helvetica Neue’, Helvetica, Arial, sans-serif;}
    #mobile-advanced{
    display:none!important;
    }

    @media only screen and (max-width: 767px) {
    .avia-slideshow { display: none; }}
    }
    .tab.widget_tab_comments.tab_counter_2 {
    display: none !important;
    }
    .tabcontainer .news-time {
    display: none;
    .post-meta-infos, .news-time{
    display: none;
    }

    }
    .avia_textblock li:before {
    content: url(//www.jpwebsites.nl/wp-content/b.png);
    }
    .avia_textblock ul {
    list-style: none;
    }
    .avia-caption .avia-caption-content p {
    fontcolor: rgba(255,255,255,255);
    }
    .avia-caption .avia-caption-title {
    fontcolor: rgba(255,255,255,255);
    }
    .avia-caption-title { color: white !important;
    }
    .post-meta-infos {
    display: none !important;
    }
    .entry-meta {display:none !important;}.home .entry-meta { display: none; }.entry-footer {display:none !important;}.home .entry-footer { display: none; }

    .container {width:100%;} .container .av-content-small.units {width:73%; }

    .responsive .boxed#top , .responsive.html_boxed.html_header_sticky #header,
    .responsive.html_boxed.html_header_transparency #header{ width: 1310px; max-width:90%; }
    .responsive .container{ max-width: 1310px; }

    #top #header .av-main-nav > li > a{color:#88888a;}#top #header .av-main-nav > li > a .avia-menu-text, #top #header .av-main-nav > li > a .avia-menu-subtext{color: #88888a;}#top #wrap_all .all_colors h6{font-size:18px;}#top #wrap_all .all_colors h5{font-size:18px;}#top #wrap_all .all_colors h4{font-size:18px;}#top #wrap_all .all_colors h5{font-size:18px;}#top #wrap_all .all_colors h3{font-size:18px;}#top .all_colors .image-overlay{background-color: #a69fa6;}#top #header_meta a, #top #header_meta li, #top #header_meta .phone-info{color: #de8603;}#top #header_meta, #top #header_meta nav ul ul li, #top #header_meta nav ul ul a, #top #header_meta nav ul ul{background-color: #ffffff;}#top #header_meta a, #top #header_meta li, #top #header_meta .phone-info{color: #de8603;}#top .all_colors u, #top .all_colors span[style*=’text-decoration: underline;’], #top .all_colors span[style*=’text-decoration:underline;’]{background-color:#de8603;}#top #header_meta a, #top #header_meta li, #top #header_meta .phone-info{color: #de8603;}#top .all_colors p{font-size: 16px;line-height: 1.7em;}#top #wrap_all .all_colors h1, #top #wrap_all .all_colors h2, #top #wrap_all .all_colors h3, #top #wrap_all .all_colors h4, #top #wrap_all .all_colors h5, #top #wrap_all .all_colors h6{color:#616161;}#top #wrap_all .all_colors h2{color:#616161;font-size:18px;text-transform:none;}#top #wrap_all .all_colors h1{color:#616161;font-size:20px;text-transform:none;}

    #912321

    Hi,

    Thanks for providing the access, I see this code:

    >

    is replaced with (without the spaces):

    & g t ;

    I have modified the code also in Quick CSS and placed it above media queries:

    /* Toolbar Touchification*/
    html #wpadminbar {
    	height: 46px;
    	min-width: 300px;
    }
    
    #wpadminbar * {
    	font-size: 14px;
    	font-weight: 400;
    	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    	line-height: 32px;
    }
    
    #wpadminbar .quicklinks > ul > li > a,
    #wpadminbar .quicklinks .ab-empty-item {
    	padding: 0;
    	height: 46px;
    	line-height: 46px;
    	width: auto;
    }
    
    #wpadminbar .ab-icon {
    	font: 40px/1 dashicons !important;
    	margin: 0;
    	padding: 0;
    	width: 52px;
    	height: 46px;
    	text-align: center;
    }
    
    #wpadminbar .ab-icon:before {
    	text-align: center;
    }
    
    #wpadminbar .ab-submenu {
    	padding: 0;
    }
    
    #wpadminbar #wp-admin-bar-site-name a.ab-item,
    #wpadminbar #wp-admin-bar-my-sites a.ab-item,
    #wpadminbar #wp-admin-bar-my-account a.ab-item {
    	text-overflow: clip;
    }
    
    #wpadminbar .ab-label {
    	display: none;
    }
    
    #wpadminbar .menupop li:hover > .ab-sub-wrapper,
    #wpadminbar .menupop li.hover > .ab-sub-wrapper {
    	margin-top: -46px;
    }
    
    #wpadminbar .ab-top-menu .menupop .ab-sub-wrapper .menupop > .ab-item {
    	padding-right: 30px;
    }
    
    #wpadminbar .menupop .menupop > .ab-item:before {
    	top: 10px;
    	right: 6px;
    }
    
    #wpadminbar .ab-top-menu > .menupop > .ab-sub-wrapper .ab-item {
    	font-size: 16px;
    	padding: 8px 16px;
    }
    
    #wpadminbar .ab-top-menu > .menupop > .ab-sub-wrapper a:empty {
    	display: none;
    }
    
    /* WP logo */
    #wpadminbar #wp-admin-bar-wp-logo > .ab-item {
    	padding: 0;
    }
    
    #wpadminbar #wp-admin-bar-wp-logo > .ab-item .ab-icon {
    	padding: 0;
    	width: 52px;
    	height: 46px;
    	text-align: center;
    	vertical-align: top;
    }
    
    #wpadminbar #wp-admin-bar-wp-logo > .ab-item .ab-icon:before {
    	font: 28px/1 dashicons !important;
    	top: -3px;
    }
    
    #wpadminbar .ab-icon,
    #wpadminbar .ab-item:before {
    	padding: 0;
    }
    
    /* My Sites and "Site Title" menu */
    #wpadminbar #wp-admin-bar-my-sites > .ab-item,
    #wpadminbar #wp-admin-bar-site-name > .ab-item,
    #wpadminbar #wp-admin-bar-customize > .ab-item,
    #wpadminbar #wp-admin-bar-edit > .ab-item,
    #wpadminbar #wp-admin-bar-my-account > .ab-item,
    #wpadminbar #wp-admin-bar-gdbb-toolbar > .ab-item,
    #wpadminbar #wp-admin-bar-tribe-events > .ab-item font,
    #wpadminbar #wp-admin-bar-new_draft > .ab-item {
    	text-indent: 100%;
    	white-space: nowrap;
    	overflow: hidden;
    	width: 52px;
    	padding: 0;
    	color: #a0a5aa; /* @todo not needed? this text is hidden */
    	position: relative;
    }
    
    #wpadminbar #wp-admin-bar-tribe-events > .ab-item font {
    	display: none;
    }
    
    #wpadminbar #wp-admin-bar-tribe-events > .ab-item .ab-icon:before {
        top: 10px;
    }
    
    #wpadminbar > #wp-toolbar > #wp-admin-bar-root-default .ab-icon,
    #wpadminbar .ab-icon,
    #wpadminbar .ab-item:before {
    	padding: 0;
    	margin-right: 0;
    }
    
    #wpadminbar #wp-admin-bar-edit > .ab-item:before,
    #wpadminbar #wp-admin-bar-my-sites > .ab-item:before,
    #wpadminbar #wp-admin-bar-site-name > .ab-item:before,
    #wpadminbar #wp-admin-bar-customize > .ab-item:before,
    #wpadminbar #wp-admin-bar-my-account > .ab-item:before,
    #wpadminbar #wp-admin-bar-gdbb-toolbar > .ab-item:before,
    #wpadminbar #wp-admin-bar-tribe-events > .ab-item:before,
    #wpadminbar #wp-admin-bar-new_draft > .ab-item:before {
    	display: block;
    	text-indent: 0;
    	font: normal 32px/1 dashicons;
    	speak: none;
    	top: 7px;
    	width: 52px;
    	text-align: center;
    	-webkit-font-smoothing: antialiased;
    	-moz-osx-font-smoothing: grayscale;
    }
    
    #wpadminbar #wp-admin-bar-appearance {
    	margin-top: 0;
    }
    
    #wpadminbar .quicklinks li .blavatar:before {
    	display: none;
    }
    
    /* Search */
    #wpadminbar #wp-admin-bar-search {
    	display: none;
    }
    
    /* New Content */
    #wpadminbar #wp-admin-bar-new-content .ab-icon:before {
    	top: 0;
    	line-height: 53px;
    	height: 46px !important;
    	text-align: center;
    	width: 52px;
    	display: block;
    }
    
    /* Updates */
    #wpadminbar #wp-admin-bar-updates {
    	text-align: center;
    }
    
    #wpadminbar #wp-admin-bar-updates .ab-icon:before {
    	top: 3px;
    }
    
    /* Comments */
    #wpadminbar #wp-admin-bar-comments .ab-icon {
    	margin: 0;
    }
    
    #wpadminbar #wp-admin-bar-comments .ab-icon:before {
    	display: block;
    	font-size: 34px;
    	height: 46px;
    	line-height: 47px;
    	top: 0;
    }
    
    /* My Account */
    #wpadminbar #wp-admin-bar-my-account > a {
    	position: relative;
    	white-space: nowrap;
    	text-indent: 150%; /* More than 100% indention is needed since this element has padding */
    	width: 28px;
    	padding: 0 10px;
    	overflow: hidden; /* Prevent link text from forcing horizontal scrolling on mobile */
    }
    
    #wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
    	position: absolute;
    	top: 13px;
    	right: 10px;
    	width: 26px;
    	height: 26px;
    }
    
    #wpadminbar #wp-admin-bar-user-actions.ab-submenu {
    	padding: 0;
    }
    
    #wpadminbar #wp-admin-bar-user-actions.ab-submenu img.avatar {
    	display: none;
    }
    
    #wpadminbar #wp-admin-bar-my-account.with-avatar #wp-admin-bar-user-actions > li {
    	margin: 0;
    }
    
    #wpadminbar #wp-admin-bar-user-info .display-name {
    	height: auto;
    	font-size: 16px;
    	line-height: 24px;
    	color: #eee;
    }
    
    #wpadminbar #wp-admin-bar-user-info a {
    	padding-top: 4px;
    }
    
    #wpadminbar #wp-admin-bar-user-info .username {
    	line-height: 0.8 !important;
    	margin-bottom: -2px;
    }
    
    /* Show only default top level items */
    #wp-toolbar > ul > li {
    	display: none;
    }
    
    #wpadminbar li#wp-admin-bar-menu-toggle,
    #wpadminbar li#wp-admin-bar-wp-logo,
    #wpadminbar li#wp-admin-bar-my-sites,
    #wpadminbar li#wp-admin-bar-updates,
    #wpadminbar li#wp-admin-bar-site-name,
    #wpadminbar li#wp-admin-bar-customize,
    #wpadminbar li#wp-admin-bar-new-content,
    #wpadminbar li#wp-admin-bar-edit,
    #wpadminbar li#wp-admin-bar-comments,
    #wpadminbar li#wp-admin-bar-gdbb-toolbar,
    #wpadminbar li#wp-admin-bar-stats,
    #wpadminbar li#wp-admin-bar-delete-cache,
    #wpadminbar li#wp-admin-bar-tribe-events,
    #wpadminbar li#wp-admin-bar-new_draft {
    	display: block;
    }
    
    /* Allow dropdown list items to appear normally */
    #wpadminbar li:hover ul li,
    #wpadminbar li.hover ul li,
    #wpadminbar li:hover ul li:hover ul li {
    	display: list-item;
    }
    
    /* Override default min-width so dropdown lists aren't stretched
    	to 100% viewport width at responsive sizes. */
    #wpadminbar .ab-top-menu > .menupop > .ab-sub-wrapper {
    	min-width: -webkit-fit-content;
    	min-width: -moz-fit-content;
    	min-width: fit-content;
    }
    
    #wpadminbar ul#wp-admin-bar-root-default > li {
    	margin-right: 0;
    }
    
    /* Experimental fix for touch toolbar dropdown positioning */
    #wpadminbar .ab-top-menu,
    #wpadminbar .ab-top-secondary,
    #wpadminbar #wp-admin-bar-wp-logo,
    #wpadminbar #wp-admin-bar-my-sites,
    #wpadminbar #wp-admin-bar-site-name,
    #wpadminbar #wp-admin-bar-updates,
    #wpadminbar #wp-admin-bar-comments,
    #wpadminbar #wp-admin-bar-new-content,
    #wpadminbar #wp-admin-bar-edit,
    #wpadminbar #wp-admin-bar-my-account,
    #wpadminbar #wp-admin-bar-gdbb-toolbar,
    #wpadminbar #wp-admin-bar-tribe-events,
    #wpadminbar #wp-admin-bar-new_draft {
    	position: static;
    }
    
    #wpadminbar #wp-admin-bar-my-account {
    	float: right;
    }
    
    .network-admin #wpadminbar ul#wp-admin-bar-top-secondary > li#wp-admin-bar-my-account {
    	margin-right: 0;
    }
    
    /* Realign arrows on taller responsive submenus */
    
    #wpadminbar .ab-top-secondary .menupop .menupop > .ab-item:before {
    	top: 10px;
    	left: 0;
    }

    Hope it’s good, let us know if you need further assistance :)

    Best regards,
    Nikko

    #912134

    Hey AndreasSeydell,

    It’s more of a wordpress related and not Enfold, but we’ll still try to help you with it, can you try adding this css code in Quick CSS (located in Enfold > General Styling):

    @media screen and ( max-width: 1024px ) {
    	/* Toolbar Touchification*/
    	html #wpadminbar {
    		height: 46px;
    		min-width: 300px;
    	}
    
    	#wpadminbar * {
    		font-size: 14px;
    		font-weight: 400;
    		font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    		line-height: 32px;
    	}
    
    	#wpadminbar .quicklinks > ul > li > a,
    	#wpadminbar .quicklinks .ab-empty-item {
    		padding: 0;
    		height: 46px;
    		line-height: 46px;
    		width: auto;
    	}
    
    	#wpadminbar .ab-icon {
    		font: 40px/1 dashicons !important;
    		margin: 0;
    		padding: 0;
    		width: 52px;
    		height: 46px;
    		text-align: center;
    	}
    
    	#wpadminbar .ab-icon:before {
    		text-align: center;
    	}
    
    	#wpadminbar .ab-submenu {
    		padding: 0;
    	}
    
    	#wpadminbar #wp-admin-bar-site-name a.ab-item,
    	#wpadminbar #wp-admin-bar-my-sites a.ab-item,
    	#wpadminbar #wp-admin-bar-my-account a.ab-item {
    		text-overflow: clip;
    	}
    
    	#wpadminbar .ab-label {
    		display: none;
    	}
    
    	#wpadminbar .menupop li:hover > .ab-sub-wrapper,
    	#wpadminbar .menupop li.hover > .ab-sub-wrapper {
    		margin-top: -46px;
    	}
    
    	#wpadminbar .ab-top-menu .menupop .ab-sub-wrapper .menupop > .ab-item {
    		padding-right: 30px;
    	}
    
    	#wpadminbar .menupop .menupop > .ab-item:before {
    		top: 10px;
    		right: 6px;
    	}
    
    	#wpadminbar .ab-top-menu > .menupop > .ab-sub-wrapper .ab-item {
    		font-size: 16px;
    		padding: 8px 16px;
    	}
    
    	#wpadminbar .ab-top-menu > .menupop > .ab-sub-wrapper a:empty {
    		display: none;
    	}
    
    	/* WP logo */
    	#wpadminbar #wp-admin-bar-wp-logo > .ab-item {
    		padding: 0;
    	}
    
    	#wpadminbar #wp-admin-bar-wp-logo > .ab-item .ab-icon {
    		padding: 0;
    		width: 52px;
    		height: 46px;
    		text-align: center;
    		vertical-align: top;
    	}
    
    	#wpadminbar #wp-admin-bar-wp-logo > .ab-item .ab-icon:before {
    		font: 28px/1 dashicons !important;
    		top: -3px;
    	}
    
    	#wpadminbar .ab-icon,
    	#wpadminbar .ab-item:before {
    		padding: 0;
    	}
    
    	/* My Sites and "Site Title" menu */
    	#wpadminbar #wp-admin-bar-my-sites > .ab-item,
    	#wpadminbar #wp-admin-bar-site-name > .ab-item,
    	#wpadminbar #wp-admin-bar-customize > .ab-item,
    	#wpadminbar #wp-admin-bar-edit > .ab-item,
    	#wpadminbar #wp-admin-bar-my-account > .ab-item {
    		text-indent: 100%;
    		white-space: nowrap;
    		overflow: hidden;
    		width: 52px;
    		padding: 0;
    		color: #a0a5aa; /* @todo not needed? this text is hidden */
    		position: relative;
    	}
    
    	#wpadminbar > #wp-toolbar > #wp-admin-bar-root-default .ab-icon,
    	#wpadminbar .ab-icon,
    	#wpadminbar .ab-item:before {
    		padding: 0;
    		margin-right: 0;
    	}
    
    	#wpadminbar #wp-admin-bar-edit > .ab-item:before,
    	#wpadminbar #wp-admin-bar-my-sites > .ab-item:before,
    	#wpadminbar #wp-admin-bar-site-name > .ab-item:before,
    	#wpadminbar #wp-admin-bar-customize > .ab-item:before,
    	#wpadminbar #wp-admin-bar-my-account > .ab-item:before {
    		display: block;
    		text-indent: 0;
    		font: normal 32px/1 dashicons;
    		speak: none;
    		top: 7px;
    		width: 52px;
    		text-align: center;
    		-webkit-font-smoothing: antialiased;
    		-moz-osx-font-smoothing: grayscale;
    	}
    
    	#wpadminbar #wp-admin-bar-appearance {
    		margin-top: 0;
    	}
    
    	#wpadminbar .quicklinks li .blavatar:before {
    		display: none;
    	}
    
    	/* Search */
    	#wpadminbar #wp-admin-bar-search {
    		display: none;
    	}
    
    	/* New Content */
    	#wpadminbar #wp-admin-bar-new-content .ab-icon:before {
    		top: 0;
    		line-height: 53px;
    		height: 46px !important;
    		text-align: center;
    		width: 52px;
    		display: block;
    	}
    
    	/* Updates */
    	#wpadminbar #wp-admin-bar-updates {
    		text-align: center;
    	}
    
    	#wpadminbar #wp-admin-bar-updates .ab-icon:before {
    		top: 3px;
    	}
    
    	/* Comments */
    	#wpadminbar #wp-admin-bar-comments .ab-icon {
    		margin: 0;
    	}
    
    	#wpadminbar #wp-admin-bar-comments .ab-icon:before {
    		display: block;
    		font-size: 34px;
    		height: 46px;
    		line-height: 47px;
    		top: 0;
    	}
    
    	/* My Account */
    	#wpadminbar #wp-admin-bar-my-account > a {
    		position: relative;
    		white-space: nowrap;
    		text-indent: 150%; /* More than 100% indention is needed since this element has padding */
    		width: 28px;
    		padding: 0 10px;
    		overflow: hidden; /* Prevent link text from forcing horizontal scrolling on mobile */
    	}
    
    	#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
    		position: absolute;
    		top: 13px;
    		right: 10px;
    		width: 26px;
    		height: 26px;
    	}
    
    	#wpadminbar #wp-admin-bar-user-actions.ab-submenu {
    		padding: 0;
    	}
    
    	#wpadminbar #wp-admin-bar-user-actions.ab-submenu img.avatar {
    		display: none;
    	}
    
    	#wpadminbar #wp-admin-bar-my-account.with-avatar #wp-admin-bar-user-actions > li {
    		margin: 0;
    	}
    
    	#wpadminbar #wp-admin-bar-user-info .display-name {
    		height: auto;
    		font-size: 16px;
    		line-height: 24px;
    		color: #eee;
    	}
    
    	#wpadminbar #wp-admin-bar-user-info a {
    		padding-top: 4px;
    	}
    
    	#wpadminbar #wp-admin-bar-user-info .username {
    		line-height: 0.8 !important;
    		margin-bottom: -2px;
    	}
    
    	/* Show only default top level items */
    	#wp-toolbar > ul > li {
    		display: none;
    	}
    
    	#wpadminbar li#wp-admin-bar-menu-toggle,
    	#wpadminbar li#wp-admin-bar-wp-logo,
    	#wpadminbar li#wp-admin-bar-my-sites,
    	#wpadminbar li#wp-admin-bar-updates,
    	#wpadminbar li#wp-admin-bar-site-name,
    	#wpadminbar li#wp-admin-bar-customize,
    	#wpadminbar li#wp-admin-bar-new-content,
    	#wpadminbar li#wp-admin-bar-edit,
    	#wpadminbar li#wp-admin-bar-comments,
    	#wpadminbar li#wp-admin-bar-my-account {
    		display: block;
    	}
    
    	/* Allow dropdown list items to appear normally */
    	#wpadminbar li:hover ul li,
    	#wpadminbar li.hover ul li,
    	#wpadminbar li:hover ul li:hover ul li {
    		display: list-item;
    	}
    
    	/* Override default min-width so dropdown lists aren't stretched
    		to 100% viewport width at responsive sizes. */
    	#wpadminbar .ab-top-menu > .menupop > .ab-sub-wrapper {
    		min-width: -webkit-fit-content;
    		min-width: -moz-fit-content;
    		min-width: fit-content;
    	}
    
    	#wpadminbar ul#wp-admin-bar-root-default > li {
    		margin-right: 0;
    	}
    
    	/* Experimental fix for touch toolbar dropdown positioning */
    	#wpadminbar .ab-top-menu,
    	#wpadminbar .ab-top-secondary,
    	#wpadminbar #wp-admin-bar-wp-logo,
    	#wpadminbar #wp-admin-bar-my-sites,
    	#wpadminbar #wp-admin-bar-site-name,
    	#wpadminbar #wp-admin-bar-updates,
    	#wpadminbar #wp-admin-bar-comments,
    	#wpadminbar #wp-admin-bar-new-content,
    	#wpadminbar #wp-admin-bar-edit,
    	#wpadminbar #wp-admin-bar-my-account {
    		position: static;
    	}
    
    	#wpadminbar #wp-admin-bar-my-account {
    		float: right;
    	}
    
    	.network-admin #wpadminbar ul#wp-admin-bar-top-secondary > li#wp-admin-bar-my-account {
    		margin-right: 0;
    	}
    
    	/* Realign arrows on taller responsive submenus */
    
    	#wpadminbar .ab-top-secondary .menupop .menupop > .ab-item:before {
    		top: 10px;
    		left: 0;
    	}
    }

    Hope this helps :)

    Best regards,
    Nikko

    #911486

    Hi,
    I have adjust the code here and tested on my localhost
    Step 1: add this code to your functions.php
    under: if(isset($avia_config[‘use_child_theme_functions_only’])) return;

    function avia_add_custom_icon($icons) {
    $icons['houzz']	= array( 'font' =>'fontello', 'icon' => 'uf27c');
    return $icons;
    }
    add_filter('avf_default_icons','avia_add_custom_icon', 10, 1);
    
    // Add new icon as an option for social icons
    function avia_add_custom_social_icon($icons) {
    $icons['Houzz'] = 'houzz';
    return $icons;
    }
    add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1);

    Step 2: Download the Houzz font from http://fontello.com/ (use the fontawesome one) and upload to Enfold/Import/Export and click on the Upload/Select Fontello Zip Font
    Step 3: At this point, you should see the Icon that you can use in the drop-down menu of the Enfold/Social Profiles section.

    Best regards,
    Mike

    #903749

    Hi Yes Nikko,

    Thank you for your reply, however I did note the above already and that was not the issue. I made mention I had found a work around until you were able to look into the lightbox galleries and how it interacted with the plugin which you just clarified won’t be an option with the gallery set up

    Can you please look into the other primary issues I mentioned above the Pinterest plugin question- I will add them here again;

    1) instagram feed- I would like it to span the whole width of the screen- I have tried a couple plug-ins and adjusted the code on both but nothing seems to work- right now I am using photo galleries that connect to my instagram page, until I can get it sorted.

    2) the social icons- I would like to add Houzz icon I downloaded from fontello and uploaded but it doesn’t come up as an option to add to the footer or header

    3) the social icons- is there any way I can change the hover colours to something that is more in line with my brand instead of the default colours? both in the social share layout editor and header/footer icons

    4) I really like the demo content from Enfold Ecommerce where it has for example ‘Green Blouse “Daria”‘- it has options for multiple sizes and colours, and a sidebar to search by color, size, brand, price etc, whereas the demo content I uploaded for the bulk of my site does not provide these options in the product descriptions- I don’t want any new demo content to overwrite my existing site colours and settings- is there another way we can make this happen?

    5) I added a pinterest plugin because I would like people to be able to share my images and blog graphics, but it changes the icon on the social shares to one I do not like, is there any way it can just be used on the images and not connected to the styling of the social shares? It’s also making every image pinnable, including my logo, which I’m not sure I want or think is necessary

    6) I would like to swap out the instagram icon for the one I uploaded from fontello but it’s not coming up as an option to select even though the .zip file is there

    7) How can I remove the line that follows text on the H1 heading? I looked in advanced theme settings but that’s the only thing I can’t change

    8) How can I change the notification banner colour when a product is added to the cart? it’s showing green and I’d like it to be more in line with my branding

    9) I’d like the shopping cart icon in the same area as the main menu to the right of the search option, but I want them both further to the right away from the menu items- when I assign it to main menu area it ends up floating up by my logo

    Thank you!

    #900077

    hi sorry for the delay, site is now live :)

    I would like to customize/ adjust the following;

    1) instagram feed- I would like it to span the whole width of the screen- I have tried a couple plug-ins and adjusted the code on both but nothing seems to work- right now I am using photo galleries that connect to my instagram page, until I can get it sorted.

    2) the social icons- I would like to add Houzz icon I downloaded from fontello and uploaded but it doesn’t come up as an option to add to the footer or header

    3) the social icons- is there any way I can change the hover colours to something that is more in line with my brand instead of the default colours? both in the social share layout editor and header/footer icons

    4) I really like the demo content from Enfold Ecommerce where it has for example ‘Green Blouse “Daria”‘- it has options for multiple sizes and colours, and a sidebar to search by color, size, brand, price etc, whereas the demo content I uploaded for the bulk of my site does not provide these options in the product descriptions- I don’t want any new demo content to overwrite my existing site colours and settings- is there another way we can make this happen?

    5) I added a pinterest plugin because I would like people to be able to share my images and blog graphics, but it changes the icon on the social shares to one I do not like, is there any way it can just be used on the images and not connected to the styling of the social shares? It’s also making every image pinnable, including my logo, which I’m not sure I want or think is necessary

    6) I would like to swap out the instagram icon for the one I uploaded from fontello but it’s not coming up as an option to select even though the .zip file is there

    7) How can I remove the line that follows text on the H1 heading? I looked in advanced theme settings but that’s the only thing I can’t change

    8) How can I change the notification banner colour when a product is added to the cart? it’s showing green and I’d like it to be more in line with my branding

    9) I’d like the shopping cart icon in the same area as the main menu to the right of the search option, but I want them both further to the right away from the menu items- when I assign it to main menu area it ends up floating up by my logo

    Thank you!

    I will need an email address to set up temporary admin access, please and thank you

    #893254
    davidmartinserrano
    Participant

    Hello Support!:
    I´m ready for submitting my website to an important project, and actually i have some pending issues I would like to resolve…I´m going to enumerate them here, although I don´t know if you would have preferred to open different tickets for each issue (most of them are related to resposiveness tablet/mobile)…, Anyway, I have included tags for all of them…

    First of all, I have attached private details just in case you need to take a closer look at it:

    1) Masonry pagination: I have a masonry with portfolio items in most of my pages (Ver,Comer,Domir…etc..)..The point is that I select for example show pagination, and show 8 items per page… The problem is that in some categories, where for example there are only 6 items, those 6 items are not shown in the same page! and the pagination is shown, and each page only shows 2 items! I would like that, if there are only 6 items, those to be shown in the same page…up to the 8 items, like marked on the settings….

    2) Responsiveness: In pages like this one: http://ilovealcazar.com/portfolio-item/la-pradera/ … We are seeing it at a 10″ tablet, landscape, since it´s our main tool for showing it to clients…and, the map it´s cut on the right…I mean, everything seems to be a bit displaced to the right….and there is like a big margin on the left… (image attached)
    https://www.dropbox.com/s/g6ywt7do1xdq9hn/IMG-20180103-WA0036.jpg?dl=0

    3) Responsiveness: The same, watching at a 10″ tablet, landscape, social icons on the footer are cut on the right (we don´t see for example youtube icon)…The same problem appears to apply…everything weighted to the right side…

    4) Responsiveness: In pages like this: http://ilovealcazar.com/portfolio-item/casa-julian/ … the catalogs are cut on the right, prices are not even shown (TALKING MOSTLY IN 10 ” TABLETS, PORTRAIT AS COMMENTED) …. In addition, when a line break occurs, everything looks weird (image attached)

    https://www.dropbox.com/s/78qwro05g93pz1k/IMG-20180103-WA0037.jpg?dl=0

    5) In pages like this: http://ilovealcazar.com/portfolio-item/moda-marisa/ …. Text is cut, map is cut (on the right)…and icon box are totally displaced (Remember, always talking about 10″ portrait tablet) (Image attached for icon boxes…the map and text seems to be the same problem…too much left margin or pardding)
    https://www.dropbox.com/s/2qlhqfcsprjyd2i/IMG-20180103-WA0039.jpg?dl=0

    6) Grid Row order: Pages like http://ilovealcazar.com/portfolio-item/carpinteros-perez/ has several grid rows….my question, is it possible to change the order they are shown in tablets / mobiles ? I mean, for not showing text+ text , image + image….Only as a mention, the LEFT MARGIN on tablet (landscape) follow being too big…everything seems weighted to the right

    7) Responsiveness: Text widget in footer is cut ( sorry for insist, remember these have been tried on tablet 10 ” landscape)

    8) Blog page: The same problem of too much left margin applies

    9) Responsiveness: http://ilovealcazar.com/portfolio-item/monederos-piel-25-e/ .. The same problem, too much left margin that makes cut the text and the map

    10) Responsiveness: Bad alignment of icon boxes : http://ilovealcazar.com/portfolio-item/40-e-suite-junior/ … the same applies for example here http://ilovealcazar.com/portfolio-item/italia-romantico-120-e/ (icon boxes misaligned + too much left margin)

    11) http://ilovealcazar.com/portfolio-item/italia-romantico-120-e/ — This is the template for your travel services..I have here a question…The table with flights is really good done..but, would it be possible to show an arrow for people to know that they can move it to see the whole table (THIS PROBLEM IS FOR MOBILE)

    12) i MENU
    a) This is a question already answered in another thread…since we are talking about a button floated to the right, is it possible to make the submenu open to the left? It looks a bit weird with the box layout…
    b) Responsiveness…All its pending pages (Como llegar, Emergencias…etc…presents the same responsiveness problem (text + map cut on the right, too much left margin )

    13) I have used the plugin css hero for some modifications…since I have heard that you will be updating the theme, should I paste all the css code generated onto the quick css tab of my child theme?

    Sorry for this big text…Maybe it´s not the best option to publish everything here…I have tried to explain it my best…if you see this is something you can´t/shouldn´t amend, please let me know how could I orientate a freelance to do it… Remember that we have tried this web in: mobile + 10″ tablet landscape + Desktop….and most of the problems are arising on tablet 10 ” landscape…. This is important for us because as mentioned, this is our tool for showing clients the website….

    As mentioned, I would like to have your response…If there are points that you directly decide you shouldn´t work in, please let me know,

    Thanks for this great support,
    Take care

    #877032
    Jasmer
    Participant

    Hello,

    On a few of my sites, odd things are happening in the headers and other elements. I have changed no elects or colors on this site, but elements are changing without my making any edits. The site used to appear normally, then after an update or two things spontaneously changed.

    Desktop: I can barely see the menu items. The color is wrong. It is fine when I scroll, but before I scroll it is not fine. With your help on another thread here https://kriesi.at/support/topic/logo-area-background-color/ I changed these fonts and it worked properly until one day it didn’t.

    Mobile This is really odd.
    1. The header social links have changed from horizontal to suddenly vertical down the page!
    I believe this is the post where we changed it and it was perfect, but now it just changed somehow. https://kriesi.at/support/topic/mobile-menu-social-icons/

    2. The hamburger menu has completely disappeared!

    Are the social icons causing this problem? Is there a better way to have social icons in the header?

    It is important to note, I don’t want to add CSS on top of CSS, I’d like to find out what is wrong with the current CSS I added.

    Feel free to look around.. Thank you!

    #853104
    x06designs
    Participant

    I have big problems with the theme since I’ve migrated the website to Strato. I made a backup of the website and it’s database with Back WP up. First everyting was normal, but a few months later all of the german umalts (ä, ö, ü, ß) and the icons won’t show correctly.

    I have the latest version of Enfold and WordPress installed and checked the website with Firefox Version 55, Opera Version 47 and with the latest Version of Microsoft Edge. But everywhere it looks like this:
    Enfold broken umlauts
    And the icons like this:
    Enfold broken icons

    I tried it with all plugins disabled, changed the themes font to a system font (Arial/Helvetica) and put the code of Ismael inside the functions.php of the child theme:

    function add_subset_func($fontlist) {
    	$fontlist .= "&subset=latin,cyrillic";
    	return $fontlist;
    }
    add_filter('avf_google_fontlist', 'add_subset_func');

    But nothing works.

    I’ve created you an administration account, so you can check this problem. Please help me, my client is getting more and more frustrated, because I can’t find a way to fix this.

    vlkwatchman
    Participant

    i can’t understand what i’m doing wrong.

    i downloaded the fontello icons i wanted and uploaded them. i’ve put in the font name, font code, and icon name as i believe to be correct. i’m not getting anything. sometimes i get an icon of a pencil.

    note: i am trying to use the icon “icon-itunes” (code UE814) under “Zocial” in fontello.

    please look at my code in functions.php. i do not have a child theme.

    what am i doing wrong?

    thanks!

    chris

    Hi,

    I have the same problem but only in the avia layout architect element preview!

    And: one of my own added fontello icons does not align well (display large icon above title) on mobile only (nexus 5x). the behaviour can not be reproduced in the element inspector of an desktop browser!
    (first icon box on my start page see link in private)

    Thanks
    Tom

    vinchenson
    Participant

    Hello, I am opening this thread because I am having issues importing some icons for my site.

    So far it went well at the begining. I used fontello to download a .zip file with the icons I wanted, I imported them in the enfold menu and everything worked perfectly.

    Today I wanted to add more icons, so I went into the fontello webpage, added them, and downloaded the new .zip with the old + the new icons I wanted.
    I deleted the old icons file from my server and uploaded the new .zip which contained the old and new icons.

    Now the problem I face is that the old icons still appear in the icons menu, but the new ones I added are displayed just as a white box as you can see below

    Fontello problem

    editing to clarify that I already deleted cache

    I hope you can help me.

    • This topic was modified 8 years, 9 months ago by vinchenson.
    #811897

    Topic: urgent questions

    in forum Enfold
    CY
    Participant

    hi

    Hope you can reply very soon as im way behind..
    1. how do i spread navigation items (“about”, “contact us” etc) all over the sticky-fixed sidebar menu evenly, on enfold consulting demo? right now they are all condensed inside a wrapping div on the top part of the bar- whose height i tried adjusting FOR HOURS, and no success. Hope you can help.
    2. how can i add: a blog page (or page template) as it is on the Enfold 2017 demo? could I import a page on its own, rather than the whole demo? (is there some option of doing it with shortcode that you provide? i remember reading something like that in an old post of yours)
    3. I’d like to replace the hamburger icon that is used for smaller screen sizes with my own custom png/svg/jpg image. How do i do that?
    and if I’d like to choose a different icon from the fontello icon font (which i understand you’ve used for the existing icon), where can i see the complete set of icons to choose from?
    I’m working on a child theme, and have imported Enfold consulting demo.
    Please find attached a link to the website im working on, hope this is helpful.
    Thank you upfront for your help.

    #809342

    Topic: Search in top header

    in forum Enfold
    Maciej
    Participant

    Hello.
    I would like to have search field in top area of my page. Right now, i managed to get it working using other posts here.
    I used widget method (http://kriesi.at/documentation/enfold/adding-a-widget-area-to-the-header/) to get widget bar on top of my page and then search widget inside.
    Then i used styles to get this in place:

    #header .widget {
        left: 50%;
        padding-top: 10px;
        width: 250px;
        position: relative;
        top: 0;
        transform: translate(-50%);
        z-index: 999;
    }
    
    #search-2 {
        padding-bottom: 5px;
    }
    
    #top #searchform .ajax_search_response {
      z-index: 999 !important;
      background: white;
    position: absolute;
    }
    
    .header-scrolled #search-2 { 
        display: none; 
    }

    Most of it works but:

    1. Im not sure if position: relative is ok for mu widget and position: absolute is ok for results. If I set position: absolute (as you mentioned in one of the posts (https://kriesi.at/support/topic/issues-related-to-search-bar/) my widget is over menu and doesn’t work like top bar (with phone and social icons). When I remove position absolute from search_response, search results are moving whole page down.

    2. How can I manage to get my search bar to behave like top bar (with phone, mail and phone) ?
    3. If you type something into search, and get some results, field with results stays forever open. How can I make it to diaper after clicking outside?
    4. How can I change that sidebar (or append it to top bar) to behave like top bar? It stays on top of main menu, it hides when user scrolls down (or get nice animation/transition like I have in main menu/logo area).

    Im not sure if this method is the best one, I would like to get this to work without messing with code too much to avoid any problems. All is done inside functions.php:

    add_filter('avf_form_message', 'avf_form_message_mod_checkbox', 10, 3);
    function avf_form_message_mod_checkbox($message, $new_post, $form_params) {
    	$message = str_replace('true', 'Tak', $message);
    	$message = str_replace('false', 'Nie', $message);
        return $message;
    }
    
    add_action( 'ava_main_header', 'enfold_customization_header_widget_area' );
    function enfold_customization_header_widget_area() {
    	dynamic_sidebar( 'header' );
    }

    This is almost done but need some polishing :)

    Thank you very much!

    Best regards
    Maciej

    #805582

    Hi Yigit, sorry but I already tried that way but it didn’t work. I try to duplicate here what I did so you can correct me where I was wrong.

    In my enfold-child theme I created the following directories

    child-theme/includes/gnmenu-walker.php
    child-theme/includes/helper-main-menu-php
    child-theme/fucntions.php

    File gnmenu-walker.php

    <?php
    // Custom Walker Class for Bootstrap Menu
    add_action( 'after_setup_theme', 'gnmenu_setup' );
     
    if ( ! function_exists( 'gnmenu_setup' ) ):
     
    	function gnmenu_setup(){
     
    		class GnMenu_Walker_Nav_Menu extends Walker_Nav_Menu {
     
     
    			function start_lvl( &$output, $depth = 0, $args = array() ) {
     
    				$indent = str_repeat( "\t", $depth );
    				$output	   .= "\n$indent<ul class=\"gn-submenu\">\n";
     
    			}
     
    			function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) {
     
    				$indent = ( $depth ) ? str_repeat( "\t", $depth ) : '';
     
    				$li_attributes = '';
    				$class_names = $value = '';
     
    				$classes = empty( $item->classes ) ? array() : (array) $item->classes;
    				$classes[] = ($args->has_children) ? 'gn-submenu' : '';
    				$classes[] = ($item->current || $item->current_item_ancestor) ? 'active' : '';
    				$classes[] = 'menu-item-' . $item->ID;
     
     
    				$class_names = join( ' ', apply_filters( 'nav_menu_css_class', array_filter( $classes ), $item, $args ) );
    				$class_names = ' class="' . esc_attr( $class_names ) . '"';
     
    				$id = apply_filters( 'nav_menu_item_id', 'menu-item-'. $item->ID, $item, $args );
    				$id = strlen( $id ) ? ' id="' . esc_attr( $id ) . '"' : '';
     
    				$output .= $indent . '<li' . $id . $value . $class_names . $li_attributes . '>';
     				
     				$iconClasses ='';
    				if ($item->ID == 1265)
    				{
    					$iconClasses = 'gn-icon-home';
    				}
    				elseif ($item->ID == 1266)
    				{
    					$iconClasses = 'gn-icon-cog';
    				}
    				elseif ($item->ID == 1267)
    				{
    					$iconClasses = 'gn-icon-about';
    				}
    				elseif ($item->ID == 1273)
    				{
    					$iconClasses = 'gn-icon-portfolio';
    				}
    				elseif ($item->ID == 1274)
    				{
    					$iconClasses = 'gn-icon-marble';
    				}
    				elseif ($item->ID == 1275)
    				{
    					$iconClasses = 'gn-icon-wood';
    				}
    				elseif ($item->ID == 1276)
    				{
    					$iconClasses = 'gn-icon-meta';
    				}
    				elseif ($item->ID == 1282)
    				{
    					$iconClasses = 'gn-icon-design';
    				}
    				;
    
    				$attributes  = ! empty( $item->attr_title ) ? ' title="'  . esc_attr( $item->attr_title ) .'"' : '';
    				//$attributes .= ' class="gn-icon gn-icon-download"'; 
    				$attributes .= ! empty( $item->target )     ? ' target="' . esc_attr( $item->target     ) .'"' : '';
    				$attributes .= ! empty( $item->xfn )        ? ' rel="'    . esc_attr( $item->xfn        ) .'"' : '';
    				$attributes .= ! empty( $item->url )        ? ' href="'   . esc_attr( $item->url        ) .'"' : '';
    				//$attributes .= ($args->has_children) 	    ? ' class="dropdown-toggle" data-toggle="dropdown"' : '';
    				//$attributes .= ' class="gn-icon gn-icon-download ' . ( $depth > 0 ? 'sub-menu-link' : 'main-menu-link' ) . '"';
     				$attributes .= ' class= "gn-icon ' . $iconClasses . '"';
    
    				$item_output = $args->before;
    				$item_output .= '<a'. $attributes .'>';
    				$item_output .= $args->link_before . apply_filters( 'the_title', $item->title, $item->ID ) . $args->link_after;
    				$item_output .= ($args->has_children) ? ' <b class="caret"></b></a>' : '</a>';
    				$item_output .= $args->after;
     
    				$output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args );
    			}
     
    			function display_element( $element, &$children_elements, $max_depth, $depth=0, $args, &$output ) {
     
    				if ( !$element )
    					return;
     
    				$id_field = $this->db_fields['id'];
     
    				//display this element
    				if ( is_array( $args[0] ) ) 
    					$args[0]['has_children'] = ! empty( $children_elements[$element->$id_field] );
    				else if ( is_object( $args[0] ) ) 
    					$args[0]->has_children = ! empty( $children_elements[$element->$id_field] ); 
    				$cb_args = array_merge( array(&$output, $element, $depth), $args);
    				call_user_func_array(array(&$this, 'start_el'), $cb_args);
     
    				$id = $element->$id_field;
     
    				// descend only when the depth is right and there are childrens for this element
    				if ( ($max_depth == 0 || $max_depth > $depth+1 ) && isset( $children_elements[$id]) ) {
     
    					foreach( $children_elements[ $id ] as $child ){
     
    						if ( !isset($newlevel) ) {
    							$newlevel = true;
    							//start the child delimiter
    							$cb_args = array_merge( array(&$output, $depth), $args);
    							call_user_func_array(array(&$this, 'start_lvl'), $cb_args);
    						}
    						$this->display_element( $child, $children_elements, $max_depth, $depth + 1, $args, $output );
    					}
    						unset( $children_elements[ $id ] );
    				}
     
    				if ( isset($newlevel) && $newlevel ){
    					//end the child delimiter
    					$cb_args = array_merge( array(&$output, $depth), $args);
    					call_user_func_array(array(&$this, 'end_lvl'), $cb_args);
    				}
     
    				//end this element
    				$cb_args = array_merge( array(&$output, $element, $depth), $args);
    				call_user_func_array(array(&$this, 'end_el'), $cb_args);
     
    			}
     
    		}
     
    	}
     
    endif;

    FILE helper-main-menu.php

    <?php 
    global $avia_config;
    
    $responsive		= avia_get_option('responsive_active') != "disabled" ? "responsive" : "fixed_layout";
    $headerS 		= avia_header_setting();
    $social_args 	= array('outside'=>'ul', 'inside'=>'li', 'append' => '');
    $icons 			= !empty($headerS['header_social']) ? avia_social_media_icons($social_args, false) : "";
    
    if(isset($headerS['disabled'])) return;
    
    ?>
    
    <header id='header' class='all_colors header_color <?php avia_is_dark_bg('header_color'); echo " ".$headerS['header_class']; ?>' <?php avia_markup_helper(array('context' => 'header','post_type'=>'forum'));?>>
    
    <?php
    
    if($responsive)
    {
    	echo '<a id="advanced_menu_toggle" href="#" '.av_icon_string('mobile_menu').'></a>';
    	echo '<a id="advanced_menu_hide" href="#" 	'.av_icon_string('close').'></a>';
    }
    
    //subheader, only display when the user chooses a social header
    if($headerS['header_topbar'] == true)
    {
    ?>
    		<div id='header_meta' class='container_wrap container_wrap_meta <?php echo avia_header_class_string(array('header_social', 'header_secondary_menu', 'header_phone_active'), 'av_'); ?>'>
    		
    			      <div class='container'>
    			      <?php
    			            /*
    			            *	display the themes social media icons, defined in the wordpress backend
    			            *   the avia_social_media_icons function is located in includes/helper-social-media-php
    			            */
    						$nav = "";
    						
    						//display icons
    			            if(strpos( $headerS['header_social'], 'extra_header_active') !== false) echo $icons;
    					
    						//display navigation
    						if(strpos( $headerS['header_secondary_menu'], 'extra_header_active') !== false )
    						{
    			            	//display the small submenu
    			                $avia_theme_location = 'avia2';
    			                $avia_menu_class = $avia_theme_location . '-menu';
    			                $args = array(
    			                    'theme_location'=>$avia_theme_location,
    			                    'menu_id' =>$avia_menu_class,
    			                    'container_class' =>$avia_menu_class,
    			                    'fallback_cb' => '',
    			                    'container'=>'',
    			                    'echo' =>false
    			                );
    			                
    			                $nav = wp_nav_menu($args);
    						}
    			                
    						if(!empty($nav) || apply_filters('avf_execute_avia_meta_header', false))
    						{
    							echo "<nav class='sub_menu' ".avia_markup_helper(array('context' => 'nav', 'echo' => false)).">";
    							echo $nav;
    		                    do_action('avia_meta_header'); // Hook that can be used for plugins and theme extensions (currently: the wpml language selector)
    							echo '</nav>';
    						}
    						
    						
    						//phone/info text	
    						$phone			= $headerS['header_phone_active'] != "" ? $headerS['phone'] : "";
    						$phone_class 	= !empty($nav) ? "with_nav" : "";
    						if($phone) 		{ echo "<div class='phone-info {$phone_class}'><span>".do_shortcode($phone)."</span></div>"; }
    							
    							
    			        ?>
    			      </div>
    		</div>
    
    <?php } 
    	
    	
    	
    	$output 	 = "";
    	$temp_output = "";
    	$icon_beside = "";
    	
    	if($headerS['header_social'] == 'icon_active_main' && empty($headerS['bottom_menu']))
    	{
    		$icon_beside = " av_menu_icon_beside"; 
    	}
    	
    	
    	
    	
    	
    	
    ?>
    		<div  id='header_main' class='container_wrap container_wrap_logo'>
    	
            <?php
            /*
            * Hook that can be used for plugins and theme extensions (currently:  the woocommerce shopping cart)
            */
            do_action('ava_main_header');
            
            if($headerS['header_position'] != "header_top") do_action('ava_main_header_sidebar');
    		
    
    		if( function_exists( 'gnmenu_setup' ) ){
    			   
    			    $output.="<div class='container-menu'>
    						<ul id='gn-menu' class='gn-menu-main'>
    							<li class='gn-trigger'>
    								<a class='gn-icon gn-icon-menu'><span>Menu</span></a>
    								<nav class='gn-menu-wrapper'>
    									<div class='gn-scroller'>";
    
    									$args = array(
    									'theme_location' => $avia_theme_location,
    									'depth'      => 2,
    									'container'  => false,
    									'menu_class'     => ' gn-menu',
    									'walker'     => new GnMenu_Walker_Nav_Menu()
    									);
    			 
    								if (has_nav_menu('menu-1')) {
    									wp_nav_menu($args);
    								}
    			 	$output.= "</div><!-- /gn-scroller -->	</nav></li><li><a href=' " . echo esc_url( home_url( '/' ) ); . " ' title= ' ". bloginfo( 'name' ) . " ' rel='homepage'> " .  bloginfo( 'name' ) . "</a></li>
    
    								<li><a class='codrops-icon codrops-icon-drop' href='#''><span>Back to the Codrops Article</span></a></li>
    							</ul>
    						</div><!-- /container -->"
    								
    			}
    			else{
    
    				 $output .= "<div class='container av-logo-container'>";
    				 
    					$output .= "<div class='inner-container'>";
    						
    						/*
    						*	display the theme logo by checking if the default logo was overwritten in the backend.
    						*   the function is located at framework/php/function-set-avia-frontend-functions.php in case you need to edit the output
    						*/
    						$addition = false;
    						if( !empty($headerS['header_transparency']) && !empty($headerS['header_replacement_logo']) )
    						{
    							$addition = "<img src='".$headerS['header_replacement_logo']."' class='alternate' alt='' title='' />";
    						}
    						
    						$output .= avia_logo(AVIA_BASE_URL.'images/layout/logo.png', $addition, 'span', true);
    						
    							if(!empty($headerS['bottom_menu']))
    							{
    								ob_start();
    								do_action('ava_before_bottom_main_menu'); // todo: replace action with filter, might break user customizations
    								$output .= ob_get_clean();
    							}
    							
    						    if($headerS['header_social'] == 'icon_active_main' && !empty($headerS['bottom_menu']))
    						    {
    							    $output .= $icons;
    						    }
    						    
    						
    						/*
    						*	display the main navigation menu
    						*   modify the output in your wordpress admin backend at appearance->menus
    						*/
    						    
    						    if($headerS['bottom_menu'])
    						    { 
    							    $output .= "</div>";  
    								$output .= "</div>";
    								
    								if( !empty( $headerS['header_menu_above'] ))
    								{
    									$avia_config['temp_logo_container'] = "<div class='av-section-bottom-logo header_color'>".$output."</div>";
    									$output = "";
    								}
    								
    								$output .= "<div id='header_main_alternate' class='container_wrap'>";
    								$output .= "<div class='container'>";
    							}
    						
    							
    							    $output .= "<nav class='main_menu' data-selectname='".__('Select a page','avia_framework')."' ".avia_markup_helper(array('context' => 'nav', 'echo' => false)).">";
    							        $avia_theme_location = 'avia';
    							        $avia_menu_class = $avia_theme_location . '-menu';
    							        $args = array(
    							            'theme_location'	=> $avia_theme_location,
    							            'menu_id' 			=> $avia_menu_class,
    							            'menu_class'		=> 'menu av-main-nav',
    							            'container_class'	=> $avia_menu_class.' av-main-nav-wrap'.$icon_beside,
    							            'fallback_cb' 		=> 'avia_fallback_menu',
    							            'echo' 				=>	false, 
    							            'walker' 			=> new avia_responsive_mega_menu()
    							        );
    							
    							        $main_nav = wp_nav_menu($args);
    							        $output .= $main_nav;
    							        
    							      
    								    /*
    								    * Hook that can be used for plugins and theme extensions
    								    */
    								    ob_start();
    								    do_action('ava_inside_main_menu'); // todo: replace action with filter, might break user customizations
    								    $output .= ob_get_clean();
    								    
    								    if($icon_beside)
    								    {
    									    $output .= $icons; 
    								    }
    								        
    								    $output .= '</nav>';
    								
    								    /*
    								    * Hook that can be used for plugins and theme extensions
    								    */
    								    ob_start();
    								    do_action('ava_after_main_menu'); // todo: replace action with filter, might break user customizations
    									$output .= ob_get_clean();
    							
    				
    					 /* inner-container */
    			        $output .= "</div>";
    						
    		        /* end container */
    		        $output .= " </div> ";
    		   		
    		   		}
    
    		   		//output the whole menu     
    		        echo $output; 
    		        
    		        
    		   ?>
    
    		<!-- end container_wrap-->
    		</div>
    		
    		<div class='header_bg'></div>
    
    <!-- end header -->
    </header>

    FILE functions.php

    /**
     * Load GnMenu.
     */
    require get_template_directory() . '/includes/gnmenu-walker.php';

    Actually I also tried to simplify the helper-main-menu.php, by deleting everything and adding only the core part I am interested in that is the one reported in my first question, but still didn’t work:

    Thanks for any help you could provide

    #799805
    Truemotionpictures
    Participant

    Hi there,
    thank you for the amazing theme and the new options added in the 4.0 version.

    I have a couple of questions regarding the brand new burger menu:

    1. I would like to vertical align the burger menu. With the following code I managed to achieve that alignment :

    .js_active.html_burger_menu #avia-menu .av-burger-menu-main, .html_burger_menu #top #avia-menu .menu-item-search-dropdown {
        display: block;
        top: 460px;
    }

    Burger Menu Alignment

    Unfortunately using a px value it’s not responsive when the viewport size changes and a percentage value is not working (maybe because of the container size).
    Is there a different way to use a percentage value like 50%?

    2. As you can see on my website, I’m using a shadow effect on the text. When the burger menu is animated to an X the shadow are rotated as well, taking a wrong position. Furthermore i would like to have black shadows in the menu overlay.
    How can I solve this?

    3. Is it possible to add social media icons (or better just names) in the menu overlay?

    4. How can I get the current page (or section) highlighted in the overlay menu?

    Thank you in advance for your help!

    • This topic was modified 8 years, 10 months ago by Yigit.
    #798600
    MulattoTech
    Participant

    Hello. I need to essentially replicate this Associations Footer Section in my website’s footer.

    I need the icons to each have their own individual link that I can specify. I’ve thumbed through these forums and have taken a look at the Enfold documentation, however, I can’t find a straightforward to do this.

    Is this possible within Enfold, or am I coding this manually in HTML/CSS?

    Thanks all!!

    ersink
    Participant

    Hi Support Team,
    I need to add an additional social icon to the Social Profiles Section in the header area of theme options and in the widget of Enfold. I am working with a child theme if that helps. The icon that needs to be added is Houzz and I’ve downloaded from Fontello. I can see it in the choices within Content Elements for “Icon List”.
    I have been through that tutorial and reviewed many of the forums regarding this. It’s not working…

    Here is what I have added to my CHILD THEME: functions-child.php
    // Register new icon as a theme icon
    function avia_add_custom_icon($icons) {
    $icons[‘houzz’] = array( ‘font’ =>’houzz’, ‘icon’ => ‘ue801’);
    return $icons;
    }
    add_filter(‘avf_default_icons’,’avia_add_custom_icon’, 10, 1);

    // Add new icon as an option for social icons
    function avia_add_custom_social_icon($icons) {
    $icons[‘Houzz’] = ‘houzz’;
    return $icons;
    }
    add_filter(‘avf_social_icons_options’,’avia_add_custom_social_icon’, 10, 1);

    Can you tell me how to do this?

    Thank you for your time!

    #779289

    I have and fontello icon now: http://imgur.com/gPwYmjU
    But I still have few questions.
    How can I change the “+” sign only to white?

    Otherwise how can I add my own image (icon) instead of fontello icons next to price?

    #778665
    ludmillarr
    Participant

    Hi Guys,

    i know this question has been asked may many time over, but i’m newbie and I’m having trouble understanding your directions.

    1. i understood i have to upload the zip folder of the icon i want to use. And that is done. ( is a TripAdvisor icon btw)
    2. I have to copy this code in the function.php of my child theme

    // Register new icon as a theme icon
    function avia_add_custom_icon($icons) {
    $icons[‘icon_name’] = array( ‘font’ =>’fontello’, ‘icon’ => ‘ue800’);
    return $icons;
    }
    add_filter(‘avf_default_icons’,’avia_add_custom_icon’, 10, 1);

    // Add new icon as an option for social icons
    function avia_add_custom_social_icon($icons) {
    $icons[‘Icon Label’] = ‘icon_name’;
    return $icons;
    }
    add_filter(‘avf_social_icons_options’,’avia_add_custom_social_icon’, 10, 1);

    ?>

    3. i refresh the page and nothing is happening….what am i doing wrong? and if i have to replace the info such as [‘Icon Label’] = ‘icon_name’; where do i find this info? they are not in the folder i download, and not in the fontello website.

    Hope you can advise.
    many thanks

    #761362

    Hi,
    Ok got it fixed. Below the code. This is a quick fix and might not be the most straightforward one.

    Create a file in your child template folder/shortcodes/tabs.php

    <?php
    if ( !class_exists( 'avia_sc_tab' ) )
    {
        class avia_sc_tab extends aviaShortcodeTemplate
        {
            static $tab_id = 1;
            static $counter = 1;
            static $initial = 1;
    
            /**
             * Create the config array for the shortcode button
             */
            function shortcode_insert_button()
            {
                $this->config['name']		= __('Tabs', 'avia_framework' );
                $this->config['tab']		= __('Content Elements', 'avia_framework' );
                $this->config['icon']		= AviaBuilder::$path['imagesURL']."sc-tabs.png";
                $this->config['order']		= 75;
                $this->config['target']		= 'avia-target-insert';
                $this->config['shortcode'] 	= 'av_tab_container';
                $this->config['shortcode_nested'] = array('av_tab');
                $this->config['tooltip'] 	= __('Creates a tabbed content area', 'avia_framework' );
            }
    
            function extra_assets()
            {
                if(is_admin())
                {
                    $ver = AviaBuilder::VERSION;
                    wp_enqueue_script('avia_tab_toggle_js' , AviaBuilder::$path['assetsURL'].'js/avia-tab-toggle.js' , array('avia_modal_js'), $ver, TRUE );
                }
            }
    
            /**
             * Popup Elements
             *
             * If this function is defined in a child class the element automatically gets an edit button, that, when pressed
             * opens a modal window that allows to edit the element properties
             *
             * @return void
             */
            function popup_elements()
            {
                $this->elements = array(
    
                    array(
                        "name" 	=> __("Tab Position", 'avia_framework' ),
                        "desc" 	=> __("Where should the tabs be displayed", 'avia_framework' ),
                        "id" 	=> "position",
                        "type" 	=> "select",
                        "std" 	=> "top_tab",
                        'container_class' =>"avia-element-fullwidth",
                        "target"  => array('#aviaTBcontent-form-container', 'class'),
                        "subtype" => array( __('Display tabs at the top', 'avia_framework' ) =>'top_tab',
                            __("Display Tabs on the left", 'avia_framework' ) => 'sidebar_tab sidebar_tab_left',
                            __("Display Tabs on the right", 'avia_framework' ) => 'sidebar_tab sidebar_tab_right')
                    ),
    
                    array(
                        "name" 	=> __("Boxed Tabs", 'avia_framework' ),
                        "desc" 	=> __("Do you want to display a border around your tabs or without border", 'avia_framework' ),
                        "id" 	=> "boxed",
                        "type" 	=> "select",
                        "std" 	=> "no",
                        "required" => array('position','contains','sidebar_tab'),
                        "subtype" => array(
                            __('With border',  'avia_framework' ) =>'border_tabs',
                            __('Without border',  'avia_framework' ) =>'noborder_tabs')),
    
                    array(
                        "name" => __("Add/Edit Tabs", 'avia_framework' ),
                        "desc" => __("Here you can add, remove and edit the Tabs you want to display.", 'avia_framework' ),
                        "type" 			=> "modal_group",
                        "id" 			=> "content",
                        'container_class' =>"avia-element-fullwidth avia-tab-container",
                        "modal_title" 	=> __("Edit Form Element", 'avia_framework' ),
                        "std"			=> array(
    
                            array('title'=>__('Tab 1', 'avia_framework' )),
                            array('title'=>__('Tab 2', 'avia_framework' )),
    
                        ),
    
                        'subelements' 	=> array(
    
                            array(
                                "name" 	=> __("Tab Title", 'avia_framework' ),
                                "desc" 	=> __("Enter the tab title here (Better keep it short)", 'avia_framework' ) ,
                                "id" 	=> "title",
                                "std" 	=> "Tab Title",
                                "type" 	=> "input"),
    
    						array(
                                "name" 	=> __("Tab Symbol", 'avia_framework' ),
                                "desc" 	=> __("Should an icon or image be displayed at the top of the tab title?", 'avia_framework' ),
                                "id" 	=> "icon_select",
                                "type" 	=> "select",
                                "std" 	=> "no",
                                "subtype" => array(
                                    __('No icon or image',  'avia_framework' ) =>'no',
                                    __('Display icon',  'avia_framework' ) =>'icon_top',
                                    __('Display image',  'avia_framework' ) =>'image_top')),
    
                            array(
                                "name" 	=> __("Tab Icon",'avia_framework' ),
                                "desc" 	=> __("Select an icon for your tab title below",'avia_framework' ),
                                "id" 	=> "icon",
                                "type" 	=> "iconfont",
                                "std" 	=> "",
                                "required" => array('icon_select','equals','icon_top')
                            ),
                            
                            array(
    									"name" 	=> __("Tab Image",'avia_framework' ),
    									"desc" 	=> __("Either upload a new, or choose an existing image from your media library",'avia_framework' ),
    									"id" 	=> "tab_image",
    									"type" 	=> "image",
    									"fetch" => "id",
    									"secondary_img" => true,
    									"force_id_fetch"=> true,
    									"title" =>  __("Insert Image",'avia_framework' ),
    									"button" => __("Insert",'avia_framework' ),
    									"required" => array('icon_select','equals','image_top'),
    									"std" 	=> ""),
    					
    						
    						array(
                                "name" 	=> __("Tab Image Style", 'avia_framework' ),
                                "id" 	=> "tab_image_style",
                                "type" 	=> "select",
                                "std" 	=> "",
    							"required" => array('icon_select','equals','image_top'),
                                "subtype" => array(
                                    __('No special style',  'avia_framework' ) =>'',
                                    __('Rounded Borders',  'avia_framework' ) =>'av-tab-image-rounded',
                                    __('Circle',  'avia_framework' ) =>'av-tab-image-circle',
                                   )),
    						
    						
    					array(
    							"type" 	=> "close_div",
    							'nodescription' => true
    						), 
    
                            array(
                                "name" 	=> __("Tab Content", 'avia_framework' ),
                                "desc" 	=> __("Enter some content here", 'avia_framework' ) ,
                                "id" 	=> "content",
                                "type" 	=> "tiny_mce",
                                "std" 	=> __("Tab Content goes here", 'avia_framework' ),
                            ),
    
                        )
                    ),
    
                    array(
                        "name" 	=> __("Initial Open", 'avia_framework' ),
                        "desc" 	=> __("Enter the Number of the Tab that should be open initially.", 'avia_framework' ),
                        "id" 	=> "initial",
                        "std" 	=> "1",
                        "type" 	=> "input"),
    
                );
    
                if(current_theme_supports('avia_template_builder_custom_tab_toogle_id'))
                {
                    $this->elements[2]['subelements'][] = array(
                        "name" 	=> __("For Developers: Custom Tab ID",'avia_framework' ),
                        "desc" 	=> __("Insert a custom ID for the element here. Make sure to only use allowed characters.",'avia_framework' ),
                        "id" 	=> "custom_id",
                        "type" 	=> "input",
                        "std" 	=> "");
                }
    
            }
    
            /**
             * Editor Sub Element - this function defines the visual appearance of an element that is displayed within a modal window and on click opens its own modal window
             * Works in the same way as Editor Element
             * @param array $params this array holds the default values for $content and $args.
             * @return $params the return array usually holds an innerHtml key that holds item specific markup.
             */
            function editor_sub_element($params)
            {
                $template = $this->update_template("title", "{{title}}");
                $content  = $this->update_template("content", "{{content}}");
    
    			extract(av_backend_icon($params)); // creates $font and $display_char if the icon was passed as param "icon" and the font as "font" 
                
    			
                $params['innerHtml']  = "";
                $params['innerHtml'] .= "<div class='avia_title_container'>";
                /*$params['innerHtml'] .= "	<span ".$this->class_by_arguments('icon_select' ,$params['args']).">";
    			$params['innerHtml'] .= "		<span ".$this->class_by_arguments('font' ,$font).">";
                $params['innerHtml'] .= "			<span data-update_with='icon_fakeArg' class='avia_tab_icon' >{$display_char}</span>";
                $params['innerHtml'] .= "		</span>";
                $params['innerHtml'] .= "	</span>";*/
                $params['innerHtml'] .= "	<span class='avia_title_container_inner' {$template} >".$params['args']['title']."</span>";
                $params['innerHtml'] .= "</div>";
    
                $params['innerHtml'] .= "<div class='avia_content_container' {$content}>".stripcslashes( $params['content'] )."</div>";
    
                return $params;
            }
    
            /**
             * Frontend Shortcode Handler
             *
             * @param array $atts array of attributes
             * @param string $content text within enclosing form of shortcode element
             * @param string $shortcodename the shortcode found, when == callback name
             * @return string $output returns the modified html string
             */
            function shortcode_handler($atts, $content = "", $shortcodename = "", $meta = "")
            {
                $atts =  shortcode_atts(array('initial' => '1', 'position' => 'top_tab', 'boxed'=>'border_tabs'), $atts, $this->config['shortcode']);
                extract($atts);
    
                $boxed   = $position != "top_tab" ? $boxed : "";
                $output  = '<div class="tabcontainer  '.$position.' '.$boxed.' '.$meta['el_class'].'">'."\n";
                $counter = 1;
    
                avia_sc_tab::$counter = 1;
                avia_sc_tab::$initial = $initial;
    
                $output .= ShortcodeHelper::avia_remove_autop($content, true);
    
                $output .= '</div>'."\n";
    
                return $output;
            }
    
            function av_tab($atts, $content = "", $shortcodename = "")
            {
                
                $output = $titleClass  = $contentClass = $icon = "";
                $tab_atts = shortcode_atts(array('title' => '', 'icon_select'=>'no', 'icon' =>"", 'custom_id' =>'', 'font' =>'', 'custom_markup' => '','tab_image' =>"",'tab_image_style' =>""), $atts, 'av_tab');
                
    				$display_char 	= av_icon($tab_atts['icon'], $tab_atts['font']);
    				$icon			= "";
    				$image 			= "";
    
                if(is_numeric(avia_sc_tab::$initial) && avia_sc_tab::$counter == avia_sc_tab::$initial)
                {
                    $titleClass   = "active_tab";
                    $contentClass = "active_tab_content";
                }
    
                if(empty($tab_atts['title']))
                {
                    $tab_atts['title'] = avia_sc_toggle::$counter;
                }
    
                /*if($tab_atts['icon_select'] == "yes")
                {
                    $icon = "<span class='tab_icon' {$display_char}></span>";
                }*/
    			if($tab_atts['icon_select'] == "icon_top")
    	            {
    	                //avia_sc_tab_section::$tab_icons[ avia_sc_tab_section::$tab ] = "<span class='av-tab-section-icon' {$display_char}></span>";
    	            $myccicon ="<span class='av-tab-section-icon maxwwicon' {$display_char}></span>";
    				}
    	            
    	            if($tab_atts['icon_select'] == "image_top")
    	            {
    	            	if(!empty($tab_atts['tab_image']))
    	            	{
    	            		$src = wp_get_attachment_image_src($tab_atts['tab_image'], 'square');
    	            		
    	            		if(!empty($src[0])){
    	            	    	$myccimage = "<img class='av-tab-section-image' src='".$src[0]."' alt='' title='' />";
    						}
    					}
    				}
    
                if(empty($tab_atts['custom_id']))
                {
                    $tab_atts['custom_id'] = 'tab-id-'.avia_sc_tab::$tab_id++;
                }
    
                $markup_tab = avia_markup_helper(array('context' => 'entry','echo'=>false, 'custom_markup'=>$tab_atts['custom_markup']));
                $markup_title = avia_markup_helper(array('context' => 'entry_title','echo'=>false, 'custom_markup'=>$tab_atts['custom_markup']));
                $markup_text = avia_markup_helper(array('context' => 'entry_content','echo'=>false, 'custom_markup'=>$tab_atts['custom_markup']));
    
                $output .= '<section class="av_tab_section" '.$markup_tab.'>';
                $output .= '    <div data-fake-id="#'.$tab_atts['custom_id'].'" class="tab '.$titleClass.'" '.$markup_title.'>'.$myccimage.$myccicon.$tab_atts['title'].'</div>'."\n";
                $output .= '    <div id="'.$tab_atts['custom_id'].'-container" class="tab_content '.$contentClass.'">'."\n";
                $output .= '        <div class="tab_inner_content invers-color" '.$markup_text.'>'."\n";
    			$output .= ShortcodeHelper::avia_apply_autop(ShortcodeHelper::avia_remove_autop($content))."\n";
                $output .= '        </div>'."\n";
                $output .= '    </div>'."\n";
                $output .= '</section>'."\n";
    
                avia_sc_tab::$counter ++;
    
                return $output;
            }
    	}
    }
    ?>

    Then call this file in your child functions.php

    add_filter( 'avia_load_shortcodes', 'mmx_modify_shortcodes', 15, 1 );
    function mmx_modify_shortcodes( $paths ){
    	$template_url = get_stylesheet_directory();
    	array_unshift( $paths, $template_url.'/shortcodes/');
    	return $paths;
    }
    

    Any remarks or tips are welcome.
    Thanks

    blars62
    Participant

    Hi —

    I like the way the “Enfold RSS Link and Twitter Account” widget displays in the footer (it’s more prominent than social icons in the socket), but would like to add “Facebook” to that widget. Is there an easy way to do that? (I’m not a php coder, moderate in my wordpress skills, was hoping I could just drag a widget down to include facebook and twitter (especially).

    You can see its current display in the footer at http://www.phonymoralguidance.com — I’d like to add facebook to that display. There may be a better solution that the widget, including third party options. I’m using a child theme — want to avoid anything that would be wiped out by theme updates.

    Thanks!

    #738077
    KimberlyM
    Participant

    Just finished creating my own icon fonts through Fontello. I’ve increased the stroke size of the icon fonts in illustrator and tried various sizes but to no avail. My icon fonts still look very small and show very faint. Is there a way in css that I can make the icon circle padding smaller so that it can show my icons larger? Or is there another work around that you would recommend.

    #734657
    J.A.R.
    Participant

    hello,

    i’m having some element issues on the Arabic side of my site again, first of all here is the codes you gave me so far to fix most issues:

    .rtl .post-title, .rtl .slide-entry-title {
        letter-spacing: 0.01em!important;
    }
    ul.avia_wpml_language_switch_extra {
    display:none !important;
    }
    .responsive #top .avia-team-member .team-social {
        max-width: 300px;  
        margin: 0 auto;
    }
    @media only screen and (max-width: 767px) {
    .responsive.html_mobile_menu_tablet.html_logo_right #advanced_menu_toggle {
        left: 5px !important;
    }
    }
    .iconbox_left .iconbox_icon {
        left: 5px;
    }
    @media only screen and (max-width: 767px) {
    	.responsive #header_meta .social_bookmarks li {
    	    border: 0 !important;
    	}
    
        #header_meta .container{
            text-align: center;
        }
    
        #header_meta .container > * {
            display: inline-block;
            width: auto !important;
            padding: 0;
        }
    
        #header_meta .phone-info.with_nav {
            position: absolute;
            right: 0;
            top: 5px;
        }
    
        #header_meta .responsive #header .social_bookmarks {
            position: absolute;
            left: 0;
        }
    .sub_menu {
        position: absolute !important;
        left: 0;
        right :0;
        top: 0px;
        margin: 0 auto;
    }
    }
    .rtl #header .social_bookmarks li:last-child {
        border-right: 1px solid #e2e2e2!important;
    }
    .rtl .av_secondary_left .sub_menu>ul>li:last-child, .rtl .av_secondary_left .sub_menu>div>ul>li:last-child {
        padding-right: 10px;
    }
    .rtl .sub_menu {
        padding-right: 0;
        padding-left: 10px;
    }
    .rtl #header .social_bookmarks li:first-child {
        border-right: none!important;
    }
    .avia-tooltip.avia-tt {
        width: 200px;
    }
    .av_header_transparency a .avia-menu-text{
        color:#fff!important;
    }
    .av_header_transparency .phone-info a {
        color: #ffffff;
    }
    @media only screen and (max-width: 767px) {
    #header_meta .phone-info a {
        color: black;
    }}
    #top #wrap_all .av_header_transparency .sub_menu > ul > li > a {
        color: #ffffff;
    }
    #top.rtl #header .social_bookmarks li:last-child {
        border-color: rgba(255,255,255,0.25) !important;
    }
    
    #top.rtl #header.header-scrolled .social_bookmarks li:last-child {
        border-right: 1px solid #e1e1e1 !important;
    }
    @media only screen and (min-width: 767px) {
      a#advanced_menu_toggle {
        color: white!important;
      }
    
      .header-scrolled a#advanced_menu_toggle {
        color: #000 !important;
      }
    }
    @media only screen and (max-width:960px) {
    	#header_main .container.av-logo-container {
    	  padding: 9;
    	  max-width: 100%;
    	}
    
    	#advanced_menu_toggle {
    	  left: 10px !important;
    	}
    }

    1) first of look at this picture of the home page, this is when it is first loaded (no scroll), its perfect, no issues
    https://www.dropbox.com/s/se5uhawt671qxcv/Home%20page%20when%20first%20loaded.png?dl=0
    2) look at the home page when i scroll down a little and the header turns to sticky, it perfect as well
    https://www.dropbox.com/s/wzznf2908ehy62i/Home%20page%20after%20scroll.png?dl=0
    3) heres a look at another page, you can see the lines are missing on the social media
    https://www.dropbox.com/s/cj4e9n3rekgzh5n/Page%20when%20first%20loaded.png?dl=0
    4) after i scroll down it works normally
    https://www.dropbox.com/s/yuqcibnon5lmfo2/Page%20after%20scroll.png?dl=0
    5) i don’t know if this is part of the issue, but look at the share icons under the comments and you will see there is a line missing there as well
    https://www.dropbox.com/s/6n17a5ir8pqglys/Share%20icons%20on%20blog%20page.png?dl=0

    The issue with these lines is non stop, if i set lines between the menus in the main header there will be lines missing and such. please let me know what to remove and add in the code above to fix all these issues.

    I also hope you guys can fix these issues as i love this theme and i’m getting many jobs coming up in Arabic, and i don’t want to try another theme for those jobs, but i will have to if i cant fix these issues.

    markkus2
    Participant

    Hello, i tried to turn on the custom css support for all ALB elements and since then when i try to save/actualize a page in the backend, the page always will show a blank page afterwards (by the way, it saved itself but just leave a blank page, reloading doesn’t help).
    I also deleted the css ALB code again from the function.php (enfold and child), restarted the server and the computer, but nothing has helped.
    I guess i hasn’t forgotten any code … or added:

    enfold-child (functions.php):
    <?php

    /*
    * Add your own functions here. You can also copy some of the theme functions into this file.
    * WordPress will use those functions instead of the original functions then.
    */

    /*m_code Adding Google Font*/

    add_filter( ‘avf_google_heading_font’, ‘avia_add_heading_font’);
    function avia_add_heading_font($fonts)
    {
    $fonts[‘Merienda’] = ‘Merienda’;
    return $fonts;
    }

    add_filter( ‘avf_google_content_font’, ‘avia_add_content_font’);
    function avia_add_content_font($fonts)
    {
    $fonts[‘Source Sans Pro’] = ‘Source Sans Pro:400,600,800’;
    return $fonts;
    }

    ?>

    enfold-child (functions.php):

    <?php
    if ( !defined(‘ABSPATH’) ){ die(); }

    global $avia_config;

    /*
    * if you run a child theme and dont want to load the default functions.php file
    * set the global var below in you childthemes function.php to true:
    *
    * example: global $avia_config; $avia_config[‘use_child_theme_functions_only’] = true;
    * The default functions.php file will then no longer be loaded. You need to make sure then
    * to include framework and functions that you want to use by yourself.
    *
    * This is only recommended for advanced users
    */

    if(isset($avia_config[‘use_child_theme_functions_only’])) return;

    /*
    * create a global var which stores the ids of all posts which are displayed on the current page. It will help us to filter duplicate posts
    */
    $avia_config[‘posts_on_current_page’] = array();

    /*
    * wpml multi site config file
    * needs to be loaded before the framework
    */

    require_once( ‘config-wpml/config.php’ );

    /*
    * These are the available color sets in your backend.
    * If more sets are added users will be able to create additional color schemes for certain areas
    *
    * The array key has to be the class name, the value is only used as tab heading on the styling page
    */

    $avia_config[‘color_sets’] = array(
    ‘header_color’ => ‘Logo Area’,
    ‘main_color’ => ‘Main Content’,
    ‘alternate_color’ => ‘Alternate Content’,
    ‘footer_color’ => ‘Footer’,
    ‘socket_color’ => ‘Socket’
    );

    /*
    * add support for responsive mega menus
    */

    add_theme_support(‘avia_mega_menu’);

    /*
    * add support for improved backend styling
    */

    add_theme_support(‘avia_improved_backend_style’);

    /*
    * deactivates the default mega menu and allows us to pass individual menu walkers when calling a menu
    */

    add_filter(‘avia_mega_menu_walker’, ‘__return_false’);

    /*
    * adds support for the new avia sidebar manager
    */

    add_theme_support(‘avia_sidebar_manager’);

    /*
    * Filters for post formats etc
    */
    //add_theme_support(‘avia_queryfilter’);

    /*
    * Register theme text domain
    */
    if(!function_exists(‘avia_lang_setup’))
    {
    add_action(‘after_setup_theme’, ‘avia_lang_setup’);

    function avia_lang_setup()
    {
    $lang = apply_filters(‘ava_theme_textdomain_path’, get_template_directory() . ‘/lang’);
    load_theme_textdomain(‘avia_framework’, $lang);
    }

    avia_lang_setup();
    }

    /*
    function that changes the icon of the theme update tab
    */

    if(!function_exists(‘avia_theme_update_filter’))
    {
    function avia_theme_update_filter( $data )
    {
    if(current_theme_supports(‘avia_improved_backend_style’))
    {
    $data[‘icon’] = (Email address hidden if logged out) ‘;
    }
    return $data;
    }

    add_filter(‘avf_update_theme_tab’, ‘avia_theme_update_filter’, 30, 1);
    }

    ##################################################################
    # AVIA FRAMEWORK by Kriesi

    # this include calls a file that automatically includes all
    # the files within the folder framework and therefore makes
    # all functions and classes available for later use

    require_once( ‘framework/avia_framework.php’ );

    ##################################################################

    /*
    * Register additional image thumbnail sizes
    * Those thumbnails are generated on image upload!
    *
    * If the size of an array was changed after an image was uploaded you either need to re-upload the image
    * or use the thumbnail regeneration plugin: http://wordpress.org/extend/plugins/regenerate-thumbnails/
    */

    $avia_config[‘imgSize’][‘widget’] = array(‘width’=>36, ‘height’=>36); // small preview pics eg sidebar news
    $avia_config[‘imgSize’][‘square’] = array(‘width’=>180, ‘height’=>180); // small image for blogs
    $avia_config[‘imgSize’][‘featured’] = array(‘width’=>1500, ‘height’=>430 ); // images for fullsize pages and fullsize slider
    $avia_config[‘imgSize’][‘featured_large’] = array(‘width’=>1500, ‘height’=>630 ); // images for fullsize pages and fullsize slider
    $avia_config[‘imgSize’][‘extra_large’] = array(‘width’=>1500, ‘height’=>1500 , ‘crop’ => false); // images for fullscrren slider
    $avia_config[‘imgSize’][‘portfolio’] = array(‘width’=>495, ‘height’=>400 ); // images for portfolio entries (2,3 column)
    $avia_config[‘imgSize’][‘portfolio_small’] = array(‘width’=>260, ‘height’=>185 ); // images for portfolio 4 columns
    $avia_config[‘imgSize’][‘gallery’] = array(‘width’=>845, ‘height’=>684 ); // images for portfolio entries (2,3 column)
    $avia_config[‘imgSize’][‘magazine’] = array(‘width’=>710, ‘height’=>375 ); // images for magazines
    $avia_config[‘imgSize’][‘masonry’] = array(‘width’=>705, ‘height’=>705 , ‘crop’ => false); // images for fullscreen masonry
    $avia_config[‘imgSize’][‘entry_with_sidebar’] = array(‘width’=>845, ‘height’=>321); // big images for blog and page entries
    $avia_config[‘imgSize’][‘entry_without_sidebar’]= array(‘width’=>1210, ‘height’=>423 ); // images for fullsize pages and fullsize slider
    $avia_config[‘imgSize’] = apply_filters(‘avf_modify_thumb_size’, $avia_config[‘imgSize’]);

    $avia_config[‘selectableImgSize’] = array(
    ‘square’ => __(‘Square’,’avia_framework’),
    ‘featured’ => __(‘Featured Thin’,’avia_framework’),
    ‘featured_large’ => __(‘Featured Large’,’avia_framework’),
    ‘portfolio’ => __(‘Portfolio’,’avia_framework’),
    ‘gallery’ => __(‘Gallery’,’avia_framework’),
    ‘entry_with_sidebar’ => __(‘Entry with Sidebar’,’avia_framework’),
    ‘entry_without_sidebar’ => __(‘Entry without Sidebar’,’avia_framework’),
    ‘extra_large’ => __(‘Fullscreen Sections/Sliders’,’avia_framework’),

    );

    avia_backend_add_thumbnail_size($avia_config);

    if ( ! isset( $content_width ) ) $content_width = $avia_config[‘imgSize’][‘featured’][‘width’];

    /*
    * register the layout classes
    *
    */

    $avia_config[‘layout’][‘fullsize’] = array(‘content’ => ‘av-content-full alpha’, ‘sidebar’ => ‘hidden’, ‘meta’ => ”,’entry’ => ”);
    $avia_config[‘layout’][‘sidebar_left’] = array(‘content’ => ‘av-content-small’, ‘sidebar’ => ‘alpha’ ,’meta’ => ‘alpha’, ‘entry’ => ”);
    $avia_config[‘layout’][‘sidebar_right’] = array(‘content’ => ‘av-content-small alpha’,’sidebar’ => ‘alpha’, ‘meta’ => ‘alpha’, ‘entry’ => ‘alpha’);

    /*
    * These are some of the font icons used in the theme, defined by the entypo icon font. the font files are included by the new aviaBuilder
    * common icons are stored here for easy retrieval
    */

    $avia_config[‘font_icons’] = apply_filters(‘avf_default_icons’, array(

    //post formats + types
    ‘standard’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue836’),
    ‘link’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue822’),
    ‘image’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue80f’),
    ‘audio’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue801’),
    ‘quote’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue833’),
    ‘gallery’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue80e’),
    ‘video’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue80d’),
    ‘portfolio’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue849’),
    ‘product’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue859’),

    //social
    ‘behance’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue915’),
    ‘dribbble’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue8fe’),
    ‘facebook’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue8f3’),
    ‘flickr’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue8ed’),
    ‘gplus’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue8f6’),
    ‘linkedin’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue8fc’),
    ‘instagram’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue909’),
    ‘pinterest’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue8f8’),
    ‘skype’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue90d’),
    ‘tumblr’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue8fa’),
    ‘twitter’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue8f1’),
    ‘vimeo’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue8ef’),
    ‘rss’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue853’),
    ‘youtube’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue921’),
    ‘xing’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue923’),
    ‘soundcloud’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue913’),
    ‘five_100_px’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue91d’),
    ‘vk’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue926’),
    ‘reddit’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue927’),
    ‘digg’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue928’),
    ‘delicious’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue929’),
    ‘mail’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue805’),

    //woocomemrce
    ‘cart’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue859’),
    ‘details’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue84b’),

    //bbpress
    ‘supersticky’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue808’),
    ‘sticky’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue809’),
    ‘one_voice’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue83b’),
    ‘multi_voice’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue83c’),
    ‘closed’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue824’),
    ‘sticky_closed’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue808\ue824’),
    ‘supersticky_closed’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue809\ue824’),

    //navigation, slider & controls
    ‘play’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue897’),
    ‘pause’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue899’),
    ‘next’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue879’),
    ‘prev’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue878’),
    ‘next_big’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue87d’),
    ‘prev_big’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue87c’),
    ‘close’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue814’),
    ‘reload’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue891’),
    ‘mobile_menu’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue8a5’),

    //image hover overlays
    ‘ov_external’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue832’),
    ‘ov_image’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue869’),
    ‘ov_video’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue897’),

    //misc
    ‘search’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue803’),
    ‘info’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue81e’),
    ‘clipboard’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue8d1’),
    ‘scrolltop’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue876’),
    ‘scrolldown’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue877’),
    ‘bitcoin’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue92a’),

    ));

    add_theme_support( ‘automatic-feed-links’ );

    ##################################################################
    # Frontend Stuff necessary for the theme:
    ##################################################################

    /*
    * Register frontend javascripts:
    */
    if(!function_exists(‘avia_register_frontend_scripts’))
    {
    if(!is_admin()){
    add_action(‘wp_enqueue_scripts’, ‘avia_register_frontend_scripts’);
    }

    function avia_register_frontend_scripts()
    {
    $template_url = get_template_directory_uri();
    $child_theme_url = get_stylesheet_directory_uri();

    //register js
    wp_enqueue_script( ‘avia-compat’, $template_url.’/js/avia-compat.js’, array(‘jquery’), 2, false ); //needs to be loaded at the top to prevent bugs
    wp_enqueue_script( ‘avia-default’, $template_url.’/js/avia.js’, array(‘jquery’), 3, true );
    wp_enqueue_script( ‘avia-shortcodes’, $template_url.’/js/shortcodes.js’, array(‘jquery’), 3, true );
    wp_enqueue_script( ‘avia-popup’, $template_url.’/js/aviapopup/jquery.magnific-popup.min.js’, array(‘jquery’), 2, true);

    wp_enqueue_script( ‘jquery’ );
    wp_enqueue_script( ‘wp-mediaelement’ );

    if ( is_singular() && get_option( ‘thread_comments’ ) ) { wp_enqueue_script( ‘comment-reply’ ); }

    //register styles
    wp_register_style( ‘avia-style’ , $child_theme_url.”/style.css”, array(), ‘2’, ‘all’ ); //register default style.css file. only include in childthemes. has no purpose in main theme
    wp_register_style( ‘avia-custom’, $template_url.”/css/custom.css”, array(), ‘2’, ‘all’ );

    wp_enqueue_style( ‘avia-grid’ , $template_url.”/css/grid.css”, array(), ‘2’, ‘all’ );
    wp_enqueue_style( ‘avia-base’ , $template_url.”/css/base.css”, array(), ‘2’, ‘all’ );
    wp_enqueue_style( ‘avia-layout’, $template_url.”/css/layout.css”, array(), ‘2’, ‘all’ );
    wp_enqueue_style( ‘avia-scs’, $template_url.”/css/shortcodes.css”, array(), ‘2’, ‘all’ );
    wp_enqueue_style( ‘avia-popup-css’, $template_url.”/js/aviapopup/magnific-popup.css”, array(), ‘1’, ‘screen’ );
    wp_enqueue_style( ‘avia-media’ , $template_url.”/js/mediaelement/skin-1/mediaelementplayer.css”, array(), ‘1’, ‘screen’ );
    wp_enqueue_style( ‘avia-print’ , $template_url.”/css/print.css”, array(), ‘1’, ‘print’ );

    if ( is_rtl() ) {
    wp_enqueue_style( ‘avia-rtl’, $template_url.”/css/rtl.css”, array(), ‘1’, ‘all’ );
    }

    global $avia;
    $safe_name = avia_backend_safe_string($avia->base_data[‘prefix’]);
    $safe_name = apply_filters(‘avf_dynamic_stylesheet_filename’, $safe_name);

    if( get_option(‘avia_stylesheet_exists’.$safe_name) == ‘true’ )
    {
    $avia_upload_dir = wp_upload_dir();
    if(is_ssl()) $avia_upload_dir[‘baseurl’] = str_replace(“http://&#8221;, “https://&#8221;, $avia_upload_dir[‘baseurl’]);

    $avia_dyn_stylesheet_url = $avia_upload_dir[‘baseurl’] . ‘/dynamic_avia/’.$safe_name.’.css’;
    $version_number = get_option(‘avia_stylesheet_dynamic_version’.$safe_name);
    if(empty($version_number)) $version_number = ‘1’;

    wp_enqueue_style( ‘avia-dynamic’, $avia_dyn_stylesheet_url, array(), $version_number, ‘all’ );
    }

    wp_enqueue_style( ‘avia-custom’);

    if($child_theme_url != $template_url)
    {
    wp_enqueue_style( ‘avia-style’);
    }

    }
    }

    if(!function_exists(‘avia_remove_default_video_styling’))
    {
    if(!is_admin()){
    add_action(‘wp_footer’, ‘avia_remove_default_video_styling’, 1);
    }

    function avia_remove_default_video_styling()
    {
    //remove default style for videos
    wp_dequeue_style( ‘mediaelement’ );
    // wp_dequeue_script( ‘wp-mediaelement’ );
    // wp_dequeue_style( ‘wp-mediaelement’ );
    }
    }

    /*
    * Activate native wordpress navigation menu and register a menu location
    */
    if(!function_exists(‘avia_nav_menus’))
    {
    function avia_nav_menus()
    {
    global $avia_config, $wp_customize;

    add_theme_support(‘nav_menus’);

    foreach($avia_config[‘nav_menus’] as $key => $value)
    {
    //wp-admin\customize.php does not support html code in the menu description – thus we need to strip it
    $name = (!empty($value[‘plain’]) && !empty($wp_customize)) ? $value[‘plain’] : $value[‘html’];
    register_nav_menu($key, THEMENAME.’ ‘.$name);
    }
    }

    $avia_config[‘nav_menus’] = array( ‘avia’ => array(‘html’ => __(‘Main Menu’, ‘avia_framework’)),
    ‘avia2’ => array(
    ‘html’ => ”.__(‘Secondary Menu’, ‘avia_framework’).’ <br/><small>(‘.__(‘Will be displayed if you selected a header layout that supports a submenu’, ‘avia_framework’).’ ‘.__(‘here’, ‘avia_framework’).’)</small>’,
    ‘plain’=> __(‘Secondary Menu – will be displayed if you selected a header layout that supports a submenu’, ‘avia_framework’)),
    ‘avia3’ => array(
    ‘html’ => __(‘Footer Menu <br/><small>(no dropdowns)</small>’, ‘avia_framework’),
    ‘plain’=> __(‘Footer Menu (no dropdowns)’, ‘avia_framework’))
    );

    avia_nav_menus(); //call the function immediatly to activate
    }

    /*
    * load some frontend functions in folder include:
    */

    require_once( ‘includes/admin/register-portfolio.php’ ); // register custom post types for portfolio entries
    require_once( ‘includes/admin/register-widget-area.php’ ); // register sidebar widgets for the sidebar and footer
    require_once( ‘includes/loop-comments.php’ ); // necessary to display the comments properly
    require_once( ‘includes/helper-template-logic.php’ ); // holds the template logic so the theme knows which tempaltes to use
    require_once( ‘includes/helper-social-media.php’ ); // holds some helper functions necessary for twitter and facebook buttons
    require_once( ‘includes/helper-post-format.php’ ); // holds actions and filter necessary for post formats
    require_once( ‘includes/helper-markup.php’ ); // holds the markup logic (schema.org and html5)

    if(current_theme_supports(‘avia_conditionals_for_mega_menu’))
    {
    require_once( ‘includes/helper-conditional-megamenu.php’ ); // holds the walker for the responsive mega menu
    }

    require_once( ‘includes/helper-responsive-megamenu.php’ ); // holds the walker for the responsive mega menu

    //adds the plugin initalization scripts that add styles and functions

    if(!current_theme_supports(‘deactivate_layerslider’)) require_once( ‘config-layerslider/config.php’ );//layerslider plugin

    require_once( ‘config-bbpress/config.php’ ); //compatibility with bbpress forum plugin
    require_once( ‘config-templatebuilder/config.php’ ); //templatebuilder plugin
    require_once( ‘config-gravityforms/config.php’ ); //compatibility with gravityforms plugin
    require_once( ‘config-woocommerce/config.php’ ); //compatibility with woocommerce plugin
    require_once( ‘config-wordpress-seo/config.php’ ); //compatibility with Yoast WordPress SEO plugin

    if(!current_theme_supports(‘deactivate_tribe_events_calendar’))
    {
    require_once( ‘config-events-calendar/config.php’ ); //compatibility with the Events Calendar plugin
    }

    if(is_admin())
    {
    require_once( ‘includes/admin/helper-compat-update.php’); // include helper functions for new versions
    }

    /*
    * dynamic styles for front and backend
    */
    if(!function_exists(‘avia_custom_styles’))
    {
    function avia_custom_styles()
    {
    require_once( ‘includes/admin/register-dynamic-styles.php’ ); // register the styles for dynamic frontend styling
    avia_prepare_dynamic_styles();
    }

    add_action(‘init’, ‘avia_custom_styles’, 20);
    add_action(‘admin_init’, ‘avia_custom_styles’, 20);
    }

    /*
    * activate framework widgets
    */
    if(!function_exists(‘avia_register_avia_widgets’))
    {
    function avia_register_avia_widgets()
    {
    register_widget( ‘avia_newsbox’ );
    register_widget( ‘avia_portfoliobox’ );
    register_widget( ‘avia_socialcount’ );
    register_widget( ‘avia_combo_widget’ );
    register_widget( ‘avia_partner_widget’ );
    register_widget( ‘avia_google_maps’ );
    register_widget( ‘avia_fb_likebox’ );
    register_widget( ‘avia_instagram_widget’ );

    }

    avia_register_avia_widgets(); //call the function immediatly to activate
    }

    /*
    * add post format options
    */
    add_theme_support( ‘post-formats’, array(‘link’, ‘quote’, ‘gallery’,’video’,’image’,’audio’ ) );

    /*
    * Remove the default shortcode function, we got new ones that are better ;)
    */
    add_theme_support( ‘avia-disable-default-shortcodes’, true);

    /*
    * compat mode for easier theme switching from one avia framework theme to another
    */
    add_theme_support( ‘avia_post_meta_compat’);

    /*
    * make sure that enfold widgets dont use the old slideshow parameter in widgets, but default post thumbnails
    */
    add_theme_support(‘force-post-thumbnails-in-widget’);

    /*
    * display page titles via wordpress default output
    */
    function av_theme_slug_setup()
    {
    add_theme_support( ‘title-tag’ );
    }

    add_action( ‘after_setup_theme’, ‘av_theme_slug_setup’ );

    /*title fallback*/
    if ( ! function_exists( ‘_wp_render_title_tag’ ) )
    {
    function av_theme_slug_render_title()
    {
    echo “<title>” . avia_set_title_tag() .”</title>”;
    }
    add_action( ‘wp_head’, ‘av_theme_slug_render_title’ );
    }

    /*
    * register custom functions that are not related to the framework but necessary for the theme to run
    */

    require_once( ‘functions-enfold.php’);

    /*
    * add option to edit elements via css class
    */
    // add_theme_support(‘avia_template_builder_custom_css’);

Viewing 30 results - 91 through 120 (of 276 total)