Viewing 30 results - 2,521 through 2,550 (of 11,206 total)
  • Author
    Search Results
  • #1204939

    Hi TGPweb,

    I think in this case, the element that has a load more button is the masonry, but it has a different look.

    Or you can have a look at the post slider.

    Here is the demo:

    If you need further assistance please let us know.
    Best regards,
    Victoria

    hast du ein Child-Theme installiert? Macht die Sache einfacher und “update resistent”

    Also : aktiviere bitte im Footer die Social Media Icons ( Enfold – Footer – Social Icons)
    Diese werden jetzt als Grundlage dafür genommen – diese in das Hauptmenu einzusetzen und in das Hamburger Menu auch.
    Siehe meine Testseite im responsiven Fall.

    jetzt der Code für die child-theme functions.php

    /************* verschieben der #socket social buttons in das Haupt-Menu und in das mobile (hamburger) menu ************/
    function ava_main_menu_social(){
    ?>
    <script>
    (function($){
    	$('#socket .social_bookmarks').css({ 'display': 'none' });
    
    	$('#header').one('click', '.av-main-nav-wrap', function() {
        var isMobile  = $('.av-burger-menu-main').css('display'),
        social    = $('#socket .social_bookmarks').clone(true).addClass('sub-menu'),
        mobileMenu  = $('.av-burger-overlay');
        mobileMenu.find('#av-burger-menu-ul').append('<li class="only-burger menu-item-social av-active-burger-items"><a itemprop="url" alt="Social Bookmarks" style="" href="#"><span class="avia-bullet"></span><span class="avia-menu-text">Social Bookmarks</span><span class="avia-menu-fx"><span class="avia-arrow-wrap"><span class="avia-arrow"></span></span></span></a></li>');
      
        if( social.length ){
          mobileMenu.find('.only-burger.menu-item-social').append(social);
        }
    	});
    				
      var htmlString   = $('#socket .social_bookmarks').clone().find('li a'),
      socialString = [];
    
      htmlString.each(function() {
        var socialClass = $(this).parent('li').attr('class'),
            socialItems = $(this).wrap('<li class="'+ socialClass + ' menu-item menu-item-avia-special menu-social"></li>').parent().unwrap();
        socialString.push(socialItems);
      });
    	
     	var socials = socialString.reverse();
      $(socials).each(function() {
            $(this).appendTo('#avia-menu');
      });
    	$('#avia-menu .menu-social').css('float', 'right');
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'ava_main_menu_social');

    ( wenn ich mal den Code erklären soll sag bescheid * )

    damit das im responsiven Fall auch hover states hat im Hamburger Menu müssen da einige css Sachen erneut gesetzt werden.

    das also in das quick css

    .responsive #top #avia-menu-0 .menu-social { display: none }
    
    #av-burger-menu-ul .menu-item-social > a {
      pointer-events: none;
    }
    
    @media only screen and (max-width: 768px) {
      .main_menu .social_bookmarks {
        display: none !important;
      }
      .avia-menu.av_menu_icon_beside {
          padding-right: 0;
          margin-right: 0;
          border-right: none !important;
      }
    }
    
    @media only screen and (min-width: 769px) {
    .main_menu .social_bookmarks:not(.sub-menu) {
      overflow: visible !important;
      display: flex !important;
      flex-flow: row wrap;
      justify-content: space-between;
      align-content: center;
    }
    
    .main_menu .social_bookmarks:not(.sub-menu) li {
      flex: 0 1 30%;
      line-height: unset !important;
      margin: 2px 0;
    }
    
      .only-burger.menu-item-social {
        display: none
      }
    }
    
    #av-burger-menu-ul .menu-item-social a .avia-menu-text {
      font-style: italic;
    }
    
    #av-burger-menu-ul .only-burger.menu-item-social {
        border-top: 1px dashed gray;
        border-bottom: none !important;
    }
    
    .html_av-overlay-side-classic #top .av-burger-overlay li.menu-item-social a {
    border : none !important
    }
    
    .responsive #top #av-burger-menu-ul .social_bookmarks.sub-menu {
      margin-left: 30px;
      overflow: visible;
      float: left !important;
      display: block !important;
      height: auto
    }
    
    #av-burger-menu-ul .social_bookmarks.sub-menu li {
        display: block;
        margin: 3px 10px;
        float: left;
    }
    
    #av-burger-menu-ul .social_bookmarks.sub-menu li a {
      padding: 10px !important;
      display: table-cell !important;
      float: none !important;
    border-radius: 0 !important
    }
    
    #top #wrap_all #av-burger-menu-ul .av-social-link-facebook a { padding: 10px 13px !important;}
    #top #wrap_all #av-burger-menu-ul .av-social-link-rss:hover a{color:#fff; background-color:#ffa133!important; }
    #top #wrap_all #av-burger-menu-ul .av-social-link-facebook:hover a{color:#fff; background-color:#37589b!important; }
    #top #wrap_all #av-burger-menu-ul .av-social-link-twitter:hover a{color:#fff; background-color:#46d4fe!important; }
    #top #wrap_all #av-burger-menu-ul .av-social-link-whatsapp:hover a{color:#fff; background-color:#00e676!important; }
    #top #wrap_all #av-burger-menu-ul .av-social-link-mail:hover a{color:#fff; background-color:#9fae37!important; }
    #top #wrap_all #av-burger-menu-ul .av-social-link-dribbble:hover a{color:#fff; background-color:#e44885!important; }
    #top #wrap_all #av-burger-menu-ul .av-social-link-linkedin:hover a{color:#fff; background-color:#419cca!important; }
    #top #wrap_all #av-burger-menu-ul .av-social-link-search:hover a{color:#fff; background-color:#222222!important; }
    #top #wrap_all #av-burger-menu-ul .av-social-link-gplus:hover a{color:#fff; background-color:#de5a49!important; }
    #top #wrap_all #av-burger-menu-ul .av-social-link-behance:hover a{color:#fff; background-color:#008cfa!important; }
    #top #wrap_all #av-burger-menu-ul .av-social-link-flickr:hover a{color:#fff; background-color:#ff0086!important; }
    #top #wrap_all #av-burger-menu-ul .av-social-link-forrst:hover a{color:#fff; background-color:#234317!important; }
    #top #wrap_all #av-burger-menu-ul .av-social-link-myspace:hover a{color:#fff; background-color:#000000!important; }
    #top #wrap_all #av-burger-menu-ul .av-social-link-tumblr:hover a{color:#fff; background-color:#345574!important; }
    #top #wrap_all #av-burger-menu-ul .av-social-link-vimeo:hover a{color:#fff; background-color:#31baff!important; }
    #top #wrap_all #av-burger-menu-ul .av-social-link-youtube:hover a{color:#fff; background-color:#a72b1d!important; }
    #top #wrap_all #av-burger-menu-ul .av-social-link-pinterest:hover a{color:#fff; background-color:#cb2027!important; }
    #top #wrap_all #av-burger-menu-ul .av-social-link-skype:hover a{color:#fff; background-color:#12a5f4!important; }
    #top #wrap_all #av-burger-menu-ul .av-social-link-instagram:hover a{color:#fff; background-color:#a67658!important; }
    #top #wrap_all #av-burger-menu-ul .av-social-link-five_100_px:hover a{color:#fff; background-color:#222222!important; }
    #top #wrap_all #av-burger-menu-ul .av-social-link-soundcloud:hover a{color:#fff; background-color:#F76700!important; }
    #top #wrap_all #av-burger-menu-ul .av-social-link-xing:hover a{color:#fff; background-color:#006567!important; }
    #top #wrap_all #av-burger-menu-ul .av-social-link-vk:hover a{color:#fff; background-color:#597BA5!important; }
    #top #wrap_all #av-burger-menu-ul .av-social-link-reddit:hover a{color:#fff; background-color:#FF4500!important; }
    #top #wrap_all #av-burger-menu-ul .av-social-link-yelp:hover a{color:#fff; background-color:#d32323!important; }
    #top #wrap_all #av-burger-menu-ul .av-social-link-kununu:hover a{color:#fff; background-color:#2fb313!important; }
    
    #1204563

    I’m having the same problem.
    Screen shot with Enfold (missing results and buttons):
    https://snipboard.io/JyXlfs.jpg
    Screen shot with twenty twenty theme (what the display should include):
    https://snipboard.io/EWfH9Q.jpg

    Sonja
    Participant

    When I define a new main menu item as “button Style (Colored) > is returns a bordered button
    The items that were defined as “button Style (Colored)” before still work…

    How can i solve this?

    • This topic was modified 5 years, 10 months ago by Sonja.
    #1204417

    Hi Victoria,

    Thanks for the response, but is not my social icons in header and footer that i wanna change order.

    Is the order of social sharing element (https://kriesi.at/documentation/enfold/social-share-buttons/) on posts/portfolio and using the shorcode.

    Can you help?
    Thanks

    #1204392
    AB
    Participant

    Enfold 4.7.4
    Inhalts Elemente > “Reiter-Sektion:Plugins”, unter Layout Elemente, nicht responsibel

    Hallo,
    habe festgestellt, dass das oben genannte Reiter Element (gemeint ist die “Reiter-Sektion” nicht der andere Standard Reiter) auf Handy Bildschirmgrößen nicht funktioniert bzw. sich nicht anpasst = Bild und Texte werden abgeschnitten.

    Allerdings werden die Reiterbezeichnungen richtig angezeigt (Box Reiter-Sektion bearbeiten)
    Meine Box Reiter Sektion enthält 2 x 1/2 Zellen-Elemente (1x Bild, 1 x Text)

    Es gibt auch keine Einstellmöglichkeit, ausser abschalten für kleine Bildschirmgrößen.
    Ich würde diese schöne Funktion mit dem zusätzlichen Slide Effekt auch gerne auf Mobilgeräten beibehalten, zumal deren jetzigen, bereits umfangreich eingepflegten Inhalte Informationsrelevant sind, und ansonsten umständlich / mühsam anders untergebracht werden müssten.

    Falls es da keine Möglichkeit gibt das zu beheben oder ggf. per Update noch kommt, wäre es ein Tipp, diese nicht Anpassungsfähigkeit dieses / oder ggf. einiger Elemente, bei den Elemente Info PopUps als Warnung etc mit aufzunehmen, wenn ein Element nicht responsibel ist.

    Gruß
    A.B.

    PS: Screenshot könnte gesendet werden, wenn ich wüsste wie (keine URL über img Button möglich)

    #1204300

    Hi JannyPolak,

    Yes, it will be solved in the next release of the theme. You can start your own topic by clicking this button: https://imgur.com/a/AnoSPNb, or using this link: open a new thread.

    Best regards,
    Rikard

    There is an option under the CAPTION tab to add a link to the slide image or button. We tried both the button and image links and it only works on computers, not mobile devices. FYI, on mobile devices, the button doesn’t even appear.

    See this screenshot for reference: https://ibb.co/hykWZZg

    So, should we just give up and assume the slider links (buttons or images) are just not possible on mobile? I feel like I’ve wasted a lot of time trying to explain the issue to you guys and it seems like you keep missing the point I’m trying to make. I’m sorry if I come across as rude, but most of the time I’ve found the Enfold support responses to be pretty much on target.

    #1203566

    In reply to: theme capability

    Hey Ron Osterman,

    Thank you for your interest in Enfold.

    Well, the big header can be done with the using a slider on top of the page and the transparent header, like in the demo here:

    The floating button will have to be added by a plugin or some custom css, as we don’t have the floating button in the theme out of the box.

    You can see more demos here:

    Best regards,
    Victoria

    #1203529

    Topic: Styling Form Calendar

    in forum Enfold

    Hi
    We implement a new website with Enfold.
    We also use your forms with date (calendar) fields.
    Unfortunately the styling is not so nice, the button “Vorangegangen” (previous) comes over the month dropdown.
    Is there a possibility to style the calendar, change the button texts etc.?
    Another question is if it is possible to change the icon of the blog posts list.
    See more information in the private content section.
    Thanks very much.
    Best regards
    Mike

    #1203522

    Hi,
    You will need to use your webhost’s “file manager” then you can copy the “footer.php” to your child theme.
    2020-03-14_101810.png
    In the file manager go to your parent theme “enfold” and click once on the footer.php to select it, then click on the “copy” button, then a popup will allow you to enter the path to your child theme, I assume it’s “enfold-child”, just enter the correct path.
    2020-04-14_045256.png
    Otherwise, you can use FTP and download the footer.php from your parent theme and then upload to your child theme.

    Best regards,
    Mike

    #1203418
    ezimbron
    Participant

    Hi there.

    After last Enfold Theme upgrade, a shortcode section appeared on top of each page while editing, leaving Avia Layout Builder bellow. Each time I click on Update button, refresh action turns very slow due to displaying shortcodes again. How could I hide this section in order to only see Avia Layout Builider?

    Thank you.

    #1203312

    Hi Victoria,

    thanks for your answer and the code!

    Unfortunately the code does not work in “Quick CSS” or in “Appearance > Editor > Style.css”. I don’t know how to edit the CSS File on the FTP. Is their any other way to do this apart from putting it into “into themes/enfold/css/custom.css”?

    Here’s a link to a mobile screenshot where the “button-problem” is visible: https://ibb.co/88ydJZr

    Thank you & best regards,
    Mike

    #1203198
    Ron Osterman
    Guest

    My wife has a certain look she wants for her website. She has a large logo and a short biography that she wants across the top header. Most of the WordPress themes I see have a narrow top header with a few hyperlink buttons and a place for a very small logo. Can Enfold allow for a larger top header where she can have the logo on the left, the bio on the right and below that a normal button bar that doesn’t scroll off the page when people scroll. Her website will be at least 26 separate page sections.

    #1203119

    In reply to: Demo for illustrations

    Hi Jordan thanks . Thanks a lot for the answer. I downloaded the enfold theme again, but I have a doubt. I read on enfold that I had to select the files to upload, so I didn’t load the whole Themeforest zip folder, but only the zip enfold and psd.zip folders. I must also upload documentation, license, licensing and version.txt, inserting them in “public_html? I have also uploaded the child theme and a demo. I use wp on siteground.
    Now, however, I can’t load any plugins because there is no “add new plugin” button . Can you help me? Do you think I did something wrong?
    And finally I having reloaded both wp and enfold do you think I can upload some pages and posts that I had backed up by Wp, without database, or do I have to rewrite them from scratch? I hope I was clear Thanks Serenella

    #1202946

    In reply to: change color in menu

    Hi Franz,

    Here is the code you can put in Enfold > General Styling > Quick Css,  if it does not work, put into themes/enfold/css/custom.css

    
    #top #wrap_all .header_color .av-menu-button-colored > a .avia-menu-text {
        color: blue;
    }
    #top #wrap_all .header_color .av-menu-button-colored > a:hover .avia-menu-text {
        color: red;
    }
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #1202835

    Hey Corina B,

    There’s a big blue button on top of the Enfold sub forum, please click that in order to open a new thread on the support forum.

    As for your problem; the theme doesn’t add anything like that. Could you try disabling all plugins to see if it’s coming from one of them please?

    Best regards,
    Rikard

    #1202608
    sternloscreative
    Participant

    Hallo liebes Kriesi Team,

    Zu allererst ich liebe Enfold und verwende es sehr gerne für meine Kunden. Diese auch alle sehr gut damit klar kommen! Grosses Lob an eure grossartige Arbeit.

    Zu meinem Problem: ich kämpfe mit den Sprungmarken. ich möchte auf meiner bestehenden Startseite durch klick auf einen Button- zu einer anderen Seite gelangen. Dort aber zu einer bestimmten Farbsektion. ID habe ich eingetragen. leider funktioniert es nicht. ich habe mir auch schon verschiedene Beiträge durchgeleden. verstehe sie nur leider nicht. was ist mein Fehler?
    danke für eure Hilfe
    lg monika

    #1202495

    Topic: Problem with button

    in forum Enfold
    mauro_gallone
    Participant

    Hello i have a problem to add a Enfold Button in my blog with Classic Editor.
    When I create the button and insert a text inside it, the text inside the button is displayed with the text “Click me” instead of the text I wanted to insert.
    How can fix this problem?

    I have upload a two screenshot:

    Screen1
    Screen2

    In private content section i have insert the url of my blogpost!

    • This topic was modified 5 years, 11 months ago by mauro_gallone.
    gregorh
    Participant

    Hello support,
    today I updated 3 sites (all WP 5.4 and Enfold 4.7.4) and on two of those sites, the Cookies & Privacy settings look different and even do not work correctly.
    The one site that works fine shows 3 Tabs at the top
    Works fine

    the other two sites do not have these tabs:
    no tabs!
    and on the 2 sites with no tabs, it is not possible to add more buttons to the Cookie Consent Message Bar or Modal Popup Window. Clicking on the [+] sign does not do anything.

    As I said, all sites run the latest WP and Enfold version.

    #1202229
    qwerty94
    Participant

    Hi, I’ve got a nav using enfold theme, whichever page I set as the most right button, the drop-down does not work. when hovering over it doesn’t drop down like the others, to show subpages. When I swap around it’s always the far right menu.

    Any ideas?

    #1202202

    Hi,

    I just checked the field in Enfold theme options however it is empty on my end as well. After adding API key, please click blue “check API key” button and after confirmation, save theme options.

    Best regards,
    Yigit

    Hi Rikard I cannot see any delete button to remove the Enfold Theme Manually i see delete buttons on other themes but not Enfold.

    so i installed the plugin that you suggested as the alternative to manually updating.
    i downloaded the most recent Enfold Zip file and tried to install but this is the warning message i received:-

    Installing Theme from uploaded file: themeforest-KDvyV4PZ-enfold-responsive-multipurpose-theme.zip
    Unpacking the package…

    Installing the theme…

    The package could not be installed. The theme is missing the style.css stylesheet.

    Theme installation failed.

    Warning: Illegal string offset ‘http_code’ in /home3/earthdom/public_html/wp-content/themes/enfold/framework/php/auto-updates/class-envato-protected-api.php on line 307

    Warning: Invalid argument supplied for foreach() in /home3/earthdom/public_html/wp-content/themes/enfold/framework/php/auto-updates/class-pixelentity-theme-update.php on line 49

    #1202050

    In reply to: Logo Area Heading

    Hi proDRIVERS,

    Go to Enfold > Advanced Styling > (Select an element to customize) set to Main Menu Links then click on Edit Element button.
    Check Apply only to mouse hover state and Apply only to active state then set Font Color to White.
    Hope this helps.

    Best regards,
    Nikko

    #1202005
    Oref
    Participant

    Hello,

    I hope all is well during this COVID-19 outbreak.

    I have a question, this provided website in private content is using Enfold and my question is:

    they have been using some sort of effects for their white transparent buttons… Can anyone kindly assist me, which option Enfold or what CSS can do the job?
    There are two effects, for light and dark transparent buttons.

    Thank you very much.

    #1201917

    Topic: Dropdown button

    in forum Enfold
    rotarex
    Participant

    Hello, how can I create a drop-down button in the Enfold theme? I do not want a menu, I want a button that once clicked shows a list of drop-down links which users can access (example on this page https://about.google/products/ – the “Get started” button). Please help.
    Thank you in advance!

    @Ismael,
    that’s great, thank you!

    for reference, i’ve been cobbling together all i could find on the subject and i “THINK” i’ve found a great solution that (so far) works.

    first, i’m disabling the WordPress Gutenberg “new” editor (cause i think it sucks); but that leaves the previous WP default “classic” editor button.
    second, with your code, i’m auto-clicking the Enfold Advanced Layer Builder button on new page/post creations.
    third, i’m auto hiding the WP classic editor button (so nobody can accidentally click it & get confused or whatever – really, it just makes me feel better).
    fourth, i’m hiding the words that say which editor was used on the page/post listing pages to have a cleaner interface.

    ✌🏼

    
    // ADMIN: DISABLE WP GUTENBERG EDITOR FOR POSTS & POST TYPES
    add_filter('use_block_editor_for_post', '__return_false', 10);
    add_filter('use_block_editor_for_post_type', '__return_false', 10);
    
    // ADMIN: AUTO-CLICK TO ENABLE ENFOLD'S LAYOUT BUILDER WHEN CREATING NEW PAGES/POSTS
    function trigger_alb_on_load(){
    	?>
    	<script>
    	(function($){
    		$(window).load(function() {
    			$("#avia-builder-button").trigger('click');
    		});
    	})(jQuery);
    	</script>
    	<?php
    	}
    add_action('admin_head-post-new.php', 'trigger_alb_on_load');
    
    // ADMIN: HIDE WP DEFAULT EDITOR BUTTON
    function hide_default_editor_button() {
      echo '<style>
        #avia-builder-button {
          display: none;
        } 
      </style>';
    }
    add_action('admin_head', 'hide_default_editor_button');
    
    // ADMIN: HIDE EDITOR INFO IN LISTINGS
    function remove_ALB_post_state( $post_states, $post ) {
    	if("! has_blocks( $post->ID )") {
    		unset($post_states['wp_editor']);
    	}
    	if("!= Avia_Builder()->get_alb_builder_status($post->ID)") {
    		unset($post_states['avia_alb']);
    	}
    return $post_states;
    }
    add_filter('display_post_states','remove_ALB_post_state',999,2);
    
    AB
    Participant

    Hallo!
    Ich weiß jetzt nicht ob es an WP selbst liegt oder am Enfold Theme (alles aktuellste Versionen), es fehlt dort eine primäre “mast häf” Funktion, habe zumindest keinerlei Möglichkeit gefunden.

    Vorgang:
    1) jede Menge Untermenues angelegt für Kategorien, um eine finale Vorschauübersicht der Menuegröße zu haben
    2) jetzt soll jedoch nicht jede Kategorie = Untermenue sichtbar sein, weil noch nichts hinterlegt ist und erst mit Zeit folgt.
    3) daher wird mehr als die Löschfunktion in der Menuestruktur benötigt, da diese null Sinn macht in dem Fall. (da ja ansonsten wieder alles angelegt werden müsste = überflüssige Arbeitszeit verschwendet)
    4) daher wäre es schön wenn ein einfacher Button, Kästchen oder Linkwort dort mit integriert wäre ( neben dem Wort entfernen = deaktivieren + aktivieren)

    Falls am Theme liegend: wann wird es ein Update geben wo das dann enthalten ist?
    Oder gibt es ein funktionsfähiges Plugin was diese dann ermöglicht, wer hätte einen Tipp?

    Grüße
    A.B.

    #1201663
    rolfroyce
    Participant

    Hi, I know this question has been asked very often already.

    I have updated to the latest WordPress version, and updated Enfold.

    Since then the Enfold Layout editor does no longer work.
    It shows all Enfold Avia Layout editor Shortcodes in one big shortcode block.
    The edit in Avia Layout Editor button is somehow hidden behind the default editor button. See screenrecording in private content.

    I tried de-activating plugins (I haven’t changed any plugins recently and Enfold worked fine with the plugins installed).

    Can you take a look at the site?

    • This topic was modified 5 years, 11 months ago by rolfroyce.
    #1201658
    eskitaco
    Participant

    Hello,

    I received this error warning this morning after updating a client’s website. Below are the steps that occurred along with the message:

    Steps
    1. Updated plugins
    2. Updated Enfold to version 4.7.4 via “Updates” tab in Dashboard
    3. After updating, clicked “Visit Site” in Dashboard drop down menu
    4. Home page appeared with warning message above the header with content appearing below
    5. Clicked into an interior page and message disappeared
    6. Viewed website in Incognito window and message did not appear
    7. Website seems to be functioning normally

    Entire Message
    Warning: file_get_contents(/wordpress/wp-content/themes/enfold/css/grid.css): failed to open stream: No such file or directory in /www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/asset-manager.class.php on line 448 Warning: file_get_contents(/wordpress/wp-content/themes/enfold/css/base.css): failed to open stream: No such file or directory in /www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/asset-manager.class.php on line 448 Warning: file_get_contents(/wordpress/wp-content/themes/enfold/css/layout.css): failed to open stream: No such file or directory in /www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/asset-manager.class.php on line 448 Warning: file_get_contents(/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/buttons/buttons.css): failed to open stream: No such file or directory in /www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/asset-manager.class.php on line 448 Warning: file_get_contents(/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/buttonrow/buttonrow.css): failed to open stream: No such file or directory in /www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/asset-manager.class.php on line 448 Warning: file_get_contents(/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/contact/contact.css): failed to open stream: No such file or directory in /www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/asset-manager.class.php on line 448 Warning: file_get_contents(/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/gallery/gallery.css): failed to open stream: No such file or directory in /www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/asset-manager.class.php on line 448 Warning: file_get_contents(/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/google_maps/google_maps.css): failed to open stream: No such file or directory in /www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/asset-manager.class.php on line 448 Warning: file_get_contents(/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/grid_row/grid_row.css): failed to open stream: No such file or directory in /www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/asset-manager.class.php on line 448 Warning: file_get_contents(/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/heading/heading.css): failed to open stream: No such file or directory in /www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/asset-manager.class.php on line 448 Warning: file_get_contents(/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/hr/hr.css): failed to open stream: No such file or directory in /www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/asset-manager.class.php on line 448 Warning: file_get_contents(/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/icon/icon.css): failed to open stream: No such file or directory in /www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/asset-manager.class.php on line 448 Warning: file_get_contents(/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/iconbox/iconbox.css): failed to open stream: No such file or directory in /www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/asset-manager.class.php on line 448 Warning: file_get_contents(/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/iconlist/iconlist.css): failed to open stream: No such file or directory in /www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/asset-manager.class.php on line 448 Warning: file_get_contents(/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/image/image.css): failed to open stream: No such file or directory in /www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/asset-manager.class.php on line 448 Warning: file_get_contents(/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/masonry_entries/masonry_entries.css): failed to open stream: No such file or directory in /www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/asset-manager.class.php on line 448 Warning: file_get_contents(/wordpress/wp-content/themes/enfold/css/avia-snippet-site-preloader.css): failed to open stream: No such file or directory in /www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/asset-manager.class.php on line 448 Warning: file_get_contents(/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/menu/menu.css): failed to open stream: No such file or directory in /www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/asset-manager.class.php on line 448 Warning: file_get_contents(/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/notification/notification.css): failed to open stream: No such file or directory in /www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/asset-manager.class.php on line 448 Warning: file_get_contents(/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/numbers/numbers.css): failed to open stream: No such file or directory in /www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/asset-manager.class.php on line 448 Warning: file_get_contents(/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/promobox/promobox.css): failed to open stream: No such file or directory in /www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/asset-manager.class.php on line 448 Warning: file_get_contents(/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow/slideshow.css): failed to open stream: No such file or directory in /www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/asset-manager.class.php on line 448 Warning: file_get_contents(/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow_fullsize/slideshow_fullsize.css): failed to open stream: No such file or directory in /www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/asset-manager.class.php on line 448 Warning: file_get_contents(/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow_fullscreen/slideshow_fullscreen.css): failed to open stream: No such file or directory in /www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/asset-manager.class.php on line 448 Warning: file_get_contents(/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/social_share/social_share.css): failed to open stream: No such file or directory in /www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/asset-manager.class.php on line 448 Warning: file_get_contents(/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/table/table.css): failed to open stream: No such file or directory in /www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/asset-manager.class.php on line 448 Warning: file_get_contents(/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/tabs/tabs.css): failed to open stream: No such file or directory in /www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/asset-manager.class.php on line 448 Warning: file_get_contents(/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/team/team.css): failed to open stream: No such file or directory in /www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/asset-manager.class.php on line 448 Warning: file_get_contents(/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/video/video.css): failed to open stream: No such file or directory in /www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/asset-manager.class.php on line 448 Warning: file_get_contents(/wordpress/wp-content/themes/enfold/css/shortcodes.css): failed to open stream: No such file or directory in /www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/asset-manager.class.php on line 448 Warning: file_get_contents(/wordpress/wp-content/themes/enfold/js/aviapopup/magnific-popup.css): failed to open stream: No such file or directory in /www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/asset-manager.class.php on line 448 Warning: file_get_contents(/wordpress/wp-content/themes/enfold/css/avia-snippet-lightbox.css): failed to open stream: No such file or directory in /www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/asset-manager.class.php on line 448 Warning: file_get_contents(/wordpress/wp-content/themes/enfold/css/avia-snippet-widget.css): failed to open stream: No such file or directory in /www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/asset-manager.class.php on line 448 Warning: file_get_contents(/wordpress/wp-content/uploads/dynamic_avia/colorado_basin_roundtable.css): failed to open stream: No such file or directory in /www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/asset-manager.class.php on line 448 Warning: file_get_contents(/wordpress/wp-content/themes/enfold/css/custom.css): failed to open stream: No such file or directory in /www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/asset-manager.class.php on line 448 Warning: file_get_contents(/wordpress/wp-content/themes/enfold-child/style.css): failed to open stream: No such file or directory in /www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/asset-manager.class.php on line 448 Warning: file_get_contents(/wordpress/wp-content/themes/enfold/config-events-calendar/event-mod.css): failed to open stream: No such file or directory in /www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/asset-manager.class.php on line 448 Warning: file_get_contents(/wordpress/wp-content/themes/enfold/js/avia-compat.js): failed to open stream: No such file or directory in /www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/asset-manager.class.php on line 448

    Thank you for your time and I included logins to the site just in case you need access.

Viewing 30 results - 2,521 through 2,550 (of 11,206 total)