-
AuthorSearch Results
-
February 17, 2024 at 8:32 pm #1434614
In reply to: Change all button sizes/font sizes site-wide
Hi,
Please try the following in Quick CSS under Enfold->General Styling in order to only target mobile devices:
@media only screen and (max-width: 767px) { .avia-button { padding: 30px 30px 30px 30px !important; } }Best regards,
RikardFebruary 16, 2024 at 6:03 pm #1434533In reply to: Video controls change colour
Hi,
Thanks for your patience, it looks like you have some custom css changing the background color of the video controls from gray to transparent and disabling the video play & volume buttons which is an svg images, so if you want these to be red you will need to create new ones and upload them to your site, I added the link below of your current ones.
The player is a core WordPress element and not a Enfold element, and I don’t expect that editing the svg to be easy because the one image contain many elements:

you probably can find someone on fiverr to edit it and make the elements red for you and then upload it to your site.
Or you could remove your custom css and use this css to make the background color red and leave the player items white as they are now, so it would look like this:

div .mejs-container, div .mejs-embed, div .mejs-embed body, div .mejs-container div .mejs-controls { background: #bd1229; } .mejs-button>button { background-color: #bd1229; }It is kind of hard to test with your custom css in place, but I believe this is the correct css, if it doesn’t work correctly like the image above, please remove it and you other custom css so we can check again.
Best regards,
MikeFebruary 14, 2024 at 12:37 pm #1434293Hey Munford,
Thanks for the link to your test page, when I check the background video on Windows desktop and Android mobile the video plays correctly, IOS typically blocks videos from auto playing on mobile, they have become more aggressive and the best option is to use a fallback image for mobile or a small gif.
Background videos don’t have sound, the thread you linked to is from 2016 and the browsers have changed a lot since then. Perhaps you can try the LayerSlider instead, but with each update the browsers limit these actions more, so you may be better to design to what is allowed now so you don’t need to redesign later.
The WordPress media player, when it used by Enfold, doesn’t have volume controls on mobile by design, WordPress points out that mobile devices have manual volume buttons so they removed the controls. The only way around this is to use a different media player plugin.Best regards,
MikeFebruary 13, 2024 at 12:12 pm #1434169Topic: Google maps apikey
in forum EnfoldEmpatica
ParticipantHi,
We have an isseu with Google Maps. A few days ago, it stopped to work. The error on the console is “Google Maps JavaScript API warning: NoApiKeys”.
I try to fix it with this solutions but it doesn’t work:– Check if you typed the key correctly.
– If you use the restriction setting on Google try to remove that, wait a few minutes for google to apply your changes and then check again if the key works here. If it does, you probably have a syntax error in your referrer url
– If none of this helps: deactivate all plugins and then check if the API works by using the button above. If thats the case then one of your plugins is interfering.Now if I introduce the apikey, it doesn’t save on the enfold option.
Could you help me to fix the issue.
Thanks in advance,
Jordi
February 12, 2024 at 3:31 am #1434043In reply to: Mobile Radio buttons on cart
Hey designmek,
Thank you for the inquiry.
Please add this css code to adjust the space between the radio buttons and the input label.
@media only screen and (max-width: 767px) { /* Add your Mobile Styles here */ .wp-block-woocommerce-cart-order-summary-shipping-block .wc-block-components-radio-control .wc-block-components-radio-control__input { margin-left: -10px; } }You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings to make sure that the changes take effect.
Best regards,
IsmaelFebruary 11, 2024 at 8:47 pm #1434025In reply to: Full transperent Cookie-Banner
Hey northorie,
Try starting with the theme options to have the cookie bar at the bottom of the page, and then add this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:#top .avia-cookie-consent.avia-cookiemessage-bottom { bottom: unset; left: unset; margin: 0; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); background-color: rgba(0,0,0,0.3); } #top .avia-cookie-consent .avia-cookie-consent-button { display: block; width: 60%; margin: 10px auto; } #top .avia-cookie-consent p { display: block; padding-bottom: 20px; } #top .avia-cookie-consent-button { border-radius: 50px; } @media only screen and (max-width: 767px) { #top .avia-cookie-consent.avia-cookiemessage-bottom { width: 80%; } } @media only screen and (min-width: 768px) { #top .avia-cookie-consent.avia-cookiemessage-bottom { width: 25%; } }the desktop results:

tablet:

mobile:

Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
After applying the css, please clear your browser cache and check.Best regards,
MikeFebruary 11, 2024 at 5:21 pm #1434000In reply to: blog page customize
Hey rqn,
If you want to hide the prev / next post navigation and add a new blog post navigation to the bottom of the posts, above the share buttons, try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:add_filter( 'the_content', 'prev_next_post_nav' ); function prev_next_post_nav( $content ) { if ( is_singular('post') ) { $content .= '<div style="clear:both;"></div>'; $content .= '<div class="prev-next-nav-container">'; $content .= '<div class="prev-nav">'; $content .= get_previous_post_link(); $content .= '</div>'; $content .= '<div class="next-nav">'; $content .= get_next_post_link(); $content .= '</div>'; $content .= '</div>'; return $content; } else { return $content; } }Then add this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:
.prev-next-nav-container { width: 100%; height: 70px; padding-top: 20px; padding-bottom: 10px; } .prev-next-nav-container .prev-nav { display: inline-block; float: left; border-style: solid; border-width: 2px; border-radius: 0px; text-align: center; padding: 5px; text-decoration: none; } .prev-next-nav-container .next-nav { display: inline-block; float: right; border-style: solid; border-width: 2px; border-radius: 0px; text-align: center; padding: 5px; text-decoration: none; } .prev-next-nav-container .prev-nav:hover, .prev-next-nav-container .next-nav:hover { background-color: rgba(0,0,0,.2); color: #fff; } .prev-next-nav-container .prev-nav:hover a, .prev-next-nav-container .next-nav:hover a { color: #fff; } .prev-next-nav-container .prev-nav a, .prev-next-nav-container .next-nav a { display: inline-block; } .prev-next-nav-container .prev-nav:empty, .prev-next-nav-container .next-nav:empty, .single-post .avia-post-nav.avia-post-prev, .single-post .avia-post-nav.avia-post-next { display: none; }This will make post navigation buttons like this:

The buttons only have a light styling, you can adjust to suit.
On Advanced Layout Builder posts they will show at the bottom of the post page:

Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.Best regards,
MikeFebruary 9, 2024 at 12:13 pm #1433804In reply to: BackgroundColor for Menu “Button Style Colorted”
Hey Rikard,
of course. Please find it in the private content area.What you see there:
Now the navigation link “Kontakt” has the “Button Style Colored” orange background – which is set in Enfold’s “general styling” settings.
When I move the mouse over it, the colors changes a little bit.With Yigit’s code I can change the background to any other color – but unfortunately I can’t change the color slightly when mouse-over.
In other words: for me, the font color of “Kontakt” should remain white, the background should be black, and when hovering, the background should turn orange.
That’s definitely possible, isn’t it?
:-)Thanks for help and best regards
GrobiFebruary 8, 2024 at 11:41 am #1433663petrab20
ParticipantHallo liebes Kriesi-Team,
ich habe folgende Anliegen, bei denen ich eine Lösung benötige:
1. Generell Button (Inhaltselement)
Es unterscheiden sich der Sendenbutton (Kontaktformular) in Größe und Hovereinstellungen zu dem Button (Inhaltselemente). Ich hätte gern generell die Buttons wie den Sendenbutton im Kontaktformular. Wie und wo kann ich das einstellen?
Als Workaround hatte ich überlegt, den Button als Custom Element anzulegen, aber der Reiter fehlt mir. (Es laufen noch 3 weitere Webseiten jeweils mit derselben Enfold-Version, bei manchen ist der Custom Reiter da, bei anderen nicht.)2. Teammember mit Social-Media bzw. zusätzliches E-Mail-Element und Telefonnummer
Ich habe hier ein zusätzliches E-Mail-Element angelegt. Die Ansicht bei Mauskontakt unterscheidet sich zu dem Social-Media-Element LinkedIn bzw. es gibt keinen Hover-Effekt. Warum?In der Mitgliedsbeschreibung habe ist eine Telefonnummer angelegt. Beispiel: +49 9721 12 12 12. Hier bekomme ich folgende Warnmeldung: Warning: Characters <,>,[,] might break ALB backend or frontend.
Ich freu mich über einen Lösungsvorschlag. Kommunikation gern in Deutsch.
Vielen Dank und beste Grüße, PetraFebruary 6, 2024 at 7:35 am #1433182In reply to: portfolio catagory page adjust
Hey Yaphoon,
Thank you for the inquiry.
You can use this css code to adjust the style of the masonry title.
.av-masonry-entry .av-masonry-entry-title { line-height: 1.3em; margin: 0; font-size: 20px; font-family: Verdana; }To adjust the hover color of the menu button, add this.
#top #wrap_all .header_color #menu-item-174:hover > a .avia-menu-text { background-color: #3f75e9; color: #ffffff; border-color: #3f59e9; }And to adjust the size of the images in the archive pages, you have to edit the enfold/taxonomy-portfolio_entries.php and adjust the parameters in the avia_post_grid instance around line 38.
$grid = new avia_post_grid( array( 'linking' => '', 'columns' => '3', 'contents' => 'title', 'sort' => 'no', 'paginate' => 'yes', 'set_breadcrumb' => false, 'preview_mode' => 'custom', 'image_size' => 'full' ));If you have any additional questions at this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.
Thanks!
Best regards,
IsmaelFebruary 3, 2024 at 8:43 pm #1432895Hi,
I have checked your homepage on Windows in Chrome, Firefox, & Edge and the slider at the top with the button seems to be the same in each browser. I didn’t see any “zooming” on hover in the slider, but I did on a image lower on the page that looks like a office.
Above you write that the “zooming” only works when you are logged in, typically this would point to an error in the cached files since typically when you are logged in you are not served any cached files. Often when the theme and a plugin minifys the files an error can occur due to the nature of “minifying” which removes spaces & certain characters. It looks like your site is also using a CDN, cloudflare which could be serving the bad files.
Try disabling the Enfold Theme Options ▸ Performance ▸ JS & CSS file merging and compression and enable Enfold Theme Options ▸ Performance ▸ Delete old CSS and JS files, then clear and disable your caching plugin and your server cache and your CDN, it could take a few hours your your site to start serving the same files as when you are logged it, especially for cloudflare which can take up to 24 hours.Best regards,
MikeFebruary 3, 2024 at 7:12 pm #1432886In reply to: Magazine List should not show all
Hey rixi,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:.av-magazine-sort .all_sort_button { display: none; } .av-magazine-sort .all_sort_button ~ span.text-sep:first-of-type { display: none; }After applying the css, please clear your browser cache and check.
Best regards,
MikeFebruary 3, 2024 at 4:43 pm #1432881In reply to: HTML for Turning On Audio?
Hi,
Thank you Guenni007 for your examples, the private page that clbdcnpafe linked to uses a video element with a vimeo video link, and unfortunately the video mute option is from vimeo inside of an iframe. So as you pointed out, the videos must be self-hosted.
Based on Guenni007’s script I modified it some to create a button to enabled the sound on self-hosted videos, this is my example page, and this is what the button looks like:

This is the css for the Enfold Theme Options ▸ General Styling ▸ Quick CSS field:.custom-mute { display: block; color: #fff; font-size: 40px; padding: 20px; border: solid 2px #fff; position: absolute; bottom: 50%; right: 36%; z-index: 50; } .custom-mute.sound-on { display: none; }This is the code for the end of the child theme functions.php file in Appearance ▸ Editor:
function custom_script() { ?> <script> (function($) { $('.avia-video').prepend('<div class="custom-mute">Click to unmute</div>'); $('.avia-video').on('click', '.custom-mute', function() { $('video').prop('muted', !$("video").prop('muted')); }); $('.avia-video').on('click', '.custom-mute', function() { $(this).toggleClass("sound-on"); }); })(jQuery); </script> <?php } add_action( 'wp_footer', 'custom_script', 99 );This doesn’t require any theme files to be modified because it is only for the video element and not a background video in a color section or the slider element as Guenni007’s examples, in these cases please follow Guenni007’s post.
Best regards,
MikeFebruary 2, 2024 at 12:14 pm #1432821Hey bemodesign,
Please try the following in Quick CSS under Enfold->General Styling:
#top .av-custom-form-color .button { border-color: green; } #top .av-custom-form-color .button:hover { border-color: blue; background-color: red; color: white; }Best regards,
RikardFebruary 1, 2024 at 8:04 am #1432679In reply to: Fatal error with button row
Hi,
Thank you for the update.
We can’t reproduce the same error on our installation. Did you add any scripts or custom code to the Button Row element? Please set the builder to debug mode to make the shortcodes accessible from the shortcodes field.
// https://kriesi.at/documentation/enfold/intro-to-layout-builder/#debug-mode
After adding the filter, you’ll find another field below the Advanced Layout Builder containing shortcodes. You can remove the shortcode of the Button Row element manually from the field, then update the page. Please create a site backup before proceeding.
Best regards,
IsmaelFebruary 1, 2024 at 1:56 am #1432657In reply to: Fatal error with button row
Dettagli dell’errore
Un errore di E_ERROR è stato causato nella linea 876 del file /home/swfpkapi/public_html/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/buttonrow/buttonrow.php. Messaggio di errore: Uncaught Error: Cannot unset string offsets in /home/swfpkapi/public_html/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/buttonrow/buttonrow.php:876
Stack trace:
0 /home/swfpkapi/public_html/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/buttonrow/buttonrow.php(1024): avia_sc_buttonrow->get_element_styles_item(Array)
1 /home/swfpkapi/public_html/wp-includes/shortcodes.php(433): avia_sc_buttonrow->av_buttonrow_item(”, ”, ‘av_buttonrow_it…’)
2 [internal function]: do_shortcode_tag(Array)
3 /home/swfpkapi/public_html/wp-includes/shortcodes.php(273): preg_replace_callback(‘/\[(\[?)(av_but…’, ‘do_shortcode_ta…’, ‘\n[av_butt…’)
4 /home/swfpkapi/public_html/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-shortcode-helper.php(559): do_shortcode(‘\n[av_butt…’)
5 /home/swfpkapi/public_html/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/buttonrow/buttonrow.php(998): ShortcodeHelper::avia_remove_autop(‘\n[av_butt…’, true)
6 /home/swfpkapi/public_html/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-shortcode-template.php(1181): avia_sc_buttonrow->shortcode_handler(Array, ‘\n[av_butt…’, ‘av_buttonrow’, Array)
7 /home/swfpkapi/public_html/wp-includes/shortcodes.php(433): aviaShortcodeTemplate->shortcode_handler_prepare(Array, ‘\n[av_butt…’, ‘av_buttonrow’)
8 [internal function]: do_shortcode_tag(Array)
9 /home/swfpkapi/public_html/wp-includes/shortcodes.php(273): preg_replace_callback(‘/\[(\[?)(av_but…’, ‘do_shortcode_ta…’, ‘[av_textbloc…’)
10 /home/swfpkapi/public_html/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-shortcode-helper.php(580): do_shortcode(‘[av_textbloc…’)
11 /home/swfpkapi/public_html/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/columns/columns.php(2072): ShortcodeHelper::avia_apply_autop(‘[av_textbloc…’)
12 /home/swfpkapi/public_html/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-shortcode-template.php(1181): avia_sc_columns->shortcode_handler(Array, ‘\n[av_textblock …’, ‘av_one_half’, Array)
13 /home/swfpkapi/public_html/wp-includes/shortcodes.php(433): aviaShortcodeTemplate->shortcode_handler_prepare(Array, ‘\n[av_textblock …’, ‘av_one_half’)
14 [internal function]: do_shortcode_tag(Array)
15 /home/swfpkapi/public_html/wp-includes/shortcodes.php(273): preg_replace_callback(‘/\[(\[?)(av_but…’, ‘do_shortcode_ta…’, ‘\n[av_hr class=’…’)
16 /home/swfpkapi/public_html/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-shortcode-helper.php(559): do_shortcode(‘\n[av_hr class=’…’)
17 /home/swfpkapi/public_html/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/section/section.php(1466): ShortcodeHelper::avia_remove_autop(‘\n[av_hr class=’…’, true)
18 /home/swfpkapi/public_html/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-shortcode-template.php(1181): avia_sc_section->shortcode_handler(Array, ‘\n[av_hr class=’…’, ‘av_section’, Array)
19 /home/swfpkapi/public_html/wp-includes/shortcodes.php(433): aviaShortcodeTemplate->shortcode_handler_prepare(Array, ‘\n[av_hr class=’…’, ‘av_section’)
20 [internal function]: do_shortcode_tag(Array)
21 /home/swfpkapi/public_html/wp-includes/shortcodes.php(273): preg_replace_callback(‘/\[(\[?)(av_but…’, ‘do_shortcode_ta…’, ‘[av_layerslider…’)
22 /home/swfpkapi/public_html/wp-includes/class-wp-hook.php(324): do_shortcode(‘[av_layerslider…’)
23 /home/swfpkapi/public_html/wp-includes/plugin.php(205): WP_Hook->apply_filters(‘[av_layerslider…’, Array)
24 /home/swfpkapi/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php(1863): apply_filters(‘the_content’, ‘February 1, 2024 at 1:48 am #1432656In reply to: Fatal error with button row
Hello,
I followed your instructions, changed the PHP version to 8.3 and corrected the homepage URL from http to https, clearly the problem remained unchanged. Below is the error log encountered:[Thu Feb 01 01:43:48.339618 2024] [:error] [pid 1231808:tid 47169805854464] [remote 79.49.222.78:6391] PHP Warning: Trying to access array offset on false in /home/swfpkapi/public_html/wp-includes/class-wp-recovery-mode-email-service.php on line 368, referer: https://www.romacittaperta.com/wp-admin/edit.php?post_type=page
[Thu Feb 01 01:43:48.339450 2024] [:error] [pid 1231808:tid 47169805854464] [remote 79.49.222.78:6391] PHP Warning: Trying to access array offset on false in /home/swfpkapi/public_html/wp-includes/class-wp-recovery-mode-email-service.php on line 367, referer: https://www.romacittaperta.com/wp-admin/edit.php?post_type=page
[Thu Feb 01 01:43:48.308957 2024] [:error] [pid 1231808:tid 47169805854464] [remote 79.49.222.78:6391] thrown in /home/swfpkapi/public_html/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/buttonrow/buttonrow.php on line 876, referer: https://www.romacittaperta.com/wp-admin/edit.php?post_type=page
[Thu Feb 01 01:43:48.308820 2024] [:error] [pid 1231808:tid 47169805854464] [remote 79.49.222.78:6391] #33 /home/swfpkapi/public_html/wp-admin/post.php(187): require(‘/home/swfpkapi/…’), referer: https://www.romacittaperta.com/wp-admin/edit.php?post_type=page
[Thu Feb 01 01:43:48.308744 2024] [:error] [pid 1231808:tid 47169805854464] [remote 79.49.222.78:6391] #32 /home/swfpkapi/public_html/wp-admin/edit-form-blocks.php(77): block_editor_rest_api_preload(), referer: https://www.romacittaperta.com/wp-admin/edit.php?post_type=page
[Thu Feb 01 01:43:48.308657 2024] [:error] [pid 1231808:tid 47169805854464] [remote 79.49.222.78:6391] #31 /home/swfpkapi/public_html/wp-includes/block-editor.php(750): array_reduce(), referer: https://www.romacittaperta.com/wp-admin/edit.php?post_type=page
[Thu Feb 01 01:43:48.308530 2024] [:error] [pid 1231808:tid 47169805854464] [remote 79.49.222.78:6391] #29 /home/swfpkapi/public_html/wp-includes/rest-api.php(2918): rest_do_request(), referer: https://www.romacittaperta.com/wp-admin/edit.php?post_type=page
[Thu Feb 01 01:43:48.308450 2024] [:error] [pid 1231808:tid 47169805854464] [remote 79.49.222.78:6391] #28 /home/swfpkapi/public_html/wp-includes/rest-api.php(551): WP_REST_Server->dispatch(), referer: https://www.romacittaperta.com/wp-admin/edit.php?post_type=page
[Thu Feb 01 01:43:48.308370 2024] [:error] [pid 1231808:tid 47169805854464] [remote 79.49.222.78:6391] #27 /home/swfpkapi/public_html/wp-includes/rest-api/class-wp-rest-server.php(1041): WP_REST_Server->respond_to_request(), referer: https://www.romacittaperta.com/wp-admin/edit.php?post_type=page
[Thu Feb 01 01:43:48.308260 2024] [:error] [pid 1231808:tid 47169805854464] [remote 79.49.222.78:6391] #26 /home/swfpkapi/public_html/wp-includes/rest-api/class-wp-rest-server.php(1193): WP_REST_Posts_Controller->get_item(), referer: https://www.romacittaperta.com/wp-admin/edit.php?post_type=page
[Thu Feb 01 01:43:48.308153 2024] [:error] [pid 1231808:tid 47169805854464] [remote 79.49.222.78:6391] #25 /home/swfpkapi/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php(569): WP_REST_Posts_Controller->prepare_item_for_response(), referer: https://www.romacittaperta.com/wp-admin/edit.php?post_type=page
[Thu Feb 01 01:43:48.308015 2024] [:error] [pid 1231808:tid 47169805854464] [remote 79.49.222.78:6391] #24 /home/swfpkapi/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php(1863): apply_filters(), referer: https://www.romacittaperta.com/wp-admin/edit.php?post_type=page
[Thu Feb 01 01:43:48.307910 2024] [:error] [pid 1231808:tid 47169805854464] [remote 79.49.222.78:6391] #23 /home/swfpkapi/public_html/wp-includes/plugin.php(205): WP_Hook->apply_filters(), referer: https://www.romacittaperta.com/wp-admin/edit.php?post_type=page
[Thu Feb 01 01:43:48.307834 2024] [:error] [pid 1231808:tid 47169805854464] [remote 79.49.222.78:6391] #22 /home/swfpkapi/public_html/wp-includes/class-wp-hook.php(324): do_shortcode(), referer: https://www.romacittaperta.com/wp-admin/edit.php?post_type=page
[Thu Feb 01 01:43:48.307761 2024] [:error] [pid 1231808:tid 47169805854464] [remote 79.49.222.78:6391] #21 /home/swfpkapi/public_html/wp-includes/shortcodes.php(273): preg_replace_callback(), referer: https://www.romacittaperta.com/wp-admin/edit.php?post_type=page
[Thu Feb 01 01:43:48.307641 2024] [:error] [pid 1231808:tid 47169805854464] [remote 79.49.222.78:6391] #19 /home/swfpkapi/public_html/wp-includes/shortcodes.php(433): aviaShortcodeTemplate->shortcode_handler_prepare(), referer: https://www.romacittaperta.com/wp-admin/edit.php?post_type=page
[Thu Feb 01 01:43:48.307535 2024] [:error] [pid 1231808:tid 47169805854464] [remote 79.49.222.78:6391] #18 /home/swfpkapi/public_html/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-shortcode-template.php(1181): avia_sc_section->shortcode_handler(), referer: https://www.romacittaperta.com/wp-admin/edit.php?post_type=page
[Thu Feb 01 01:43:48.307358 2024] [:error] [pid 1231808:tid 47169805854464] [remote 79.49.222.78:6391] #17 /home/swfpkapi/public_html/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/section/section.php(1466): ShortcodeHelper::avia_remove_autop(), referer: https://www.romacittaperta.com/wp-admin/edit.php?post_type=page
[Thu Feb 01 01:43:48.307215 2024] [:error] [pid 1231808:tid 47169805854464] [remote 79.49.222.78:6391] #16 /home/swfpkapi/public_html/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-shortcode-helper.php(559): do_shortcode(), referer: https://www.romacittaperta.com/wp-admin/edit.php?post_type=page
[Thu Feb 01 01:43:48.307081 2024] [:error] [pid 1231808:tid 47169805854464] [remote 79.49.222.78:6391] #15 /home/swfpkapi/public_html/wp-includes/shortcodes.php(273): preg_replace_callback(), referer: https://www.romacittaperta.com/wp-admin/edit.php?post_type=page
[Thu Feb 01 01:43:48.306962 2024] [:error] [pid 1231808:tid 47169805854464] [remote 79.49.222.78:6391] #13 /home/swfpkapi/public_html/wp-includes/shortcodes.php(433): aviaShortcodeTemplate->shortcode_handler_prepare(), referer: https://www.romacittaperta.com/wp-admin/edit.php?post_type=page
[Thu Feb 01 01:43:48.306854 2024] [:error] [pid 1231808:tid 47169805854464] [remote 79.49.222.78:6391] #12 /home/swfpkapi/public_html/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-shortcode-template.php(1181): avia_sc_columns->shortcode_handler(), referer: https://www.romacittaperta.com/wp-admin/edit.php?post_type=page
[Thu Feb 01 01:43:48.306694 2024] [:error] [pid 1231808:tid 47169805854464] [remote 79.49.222.78:6391] #11 /home/swfpkapi/public_html/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/columns/columns.php(2072): ShortcodeHelper::avia_apply_autop(), referer: https://www.romacittaperta.com/wp-admin/edit.php?post_type=page
[Thu Feb 01 01:43:48.306554 2024] [:error] [pid 1231808:tid 47169805854464] [remote 79.49.222.78:6391] #10 /home/swfpkapi/public_html/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-shortcode-helper.php(580): do_shortcode(), referer: https://www.romacittaperta.com/wp-admin/edit.php?post_type=page
[Thu Feb 01 01:43:48.306414 2024] [:error] [pid 1231808:tid 47169805854464] [remote 79.49.222.78:6391] #9 /home/swfpkapi/public_html/wp-includes/shortcodes.php(273): preg_replace_callback(), referer: https://www.romacittaperta.com/wp-admin/edit.php?post_type=page
[Thu Feb 01 01:43:48.306296 2024] [:error] [pid 1231808:tid 47169805854464] [remote 79.49.222.78:6391] #7 /home/swfpkapi/public_html/wp-includes/shortcodes.php(433): aviaShortcodeTemplate->shortcode_handler_prepare(), referer: https://www.romacittaperta.com/wp-admin/edit.php?post_type=page
[Thu Feb 01 01:43:48.306195 2024] [:error] [pid 1231808:tid 47169805854464] [remote 79.49.222.78:6391] #6 /home/swfpkapi/public_html/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-shortcode-template.php(1181): avia_sc_buttonrow->shortcode_handler(), referer: https://www.romacittaperta.com/wp-admin/edit.php?post_type=page
[Thu Feb 01 01:43:48.306037 2024] [:error] [pid 1231808:tid 47169805854464] [remote 79.49.222.78:6391] #5 /home/swfpkapi/public_html/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/buttonrow/buttonrow.php(998): ShortcodeHelper::avia_remove_autop(), referer: https://www.romacittaperta.com/wp-admin/edit.php?post_type=page
[Thu Feb 01 01:43:48.305896 2024] [:error] [pid 1231808:tid 47169805854464] [remote 79.49.222.78:6391] #4 /home/swfpkapi/public_html/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-shortcode-helper.php(559): do_shortcode(), referer: https://www.romacittaperta.com/wp-admin/edit.php?post_type=page
[Thu Feb 01 01:43:48.305762 2024] [:error] [pid 1231808:tid 47169805854464] [remote 79.49.222.78:6391] #3 /home/swfpkapi/public_html/wp-includes/shortcodes.php(273): preg_replace_callback(), referer: https://www.romacittaperta.com/wp-admin/edit.php?post_type=page
[Thu Feb 01 01:43:48.305629 2024] [:error] [pid 1231808:tid 47169805854464] [remote 79.49.222.78:6391] #1 /home/swfpkapi/public_html/wp-includes/shortcodes.php(433): avia_sc_buttonrow->av_buttonrow_item(), referer: https://www.romacittaperta.com/wp-admin/edit.php?post_type=page
[Thu Feb 01 01:43:48.305535 2024] [:error] [pid 1231808:tid 47169805854464] [remote 79.49.222.78:6391] #0 /home/swfpkapi/public_html/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/buttonrow/buttonrow.php(1024): avia_sc_buttonrow->get_element_styles_item(), referer: https://www.romacittaperta.com/wp-admin/edit.php?post_type=page
[Thu Feb 01 01:43:48.305323 2024] [:error] [pid 1231808:tid 47169805854464] [remote 79.49.222.78:6391] PHP Fatal error: Uncaught Error: Cannot unset string offsets in /home/swfpkapi/public_html/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/buttonrow/buttonrow.php:876, referer: https://www.romacittaperta.com/wp-admin/edit.php?post_type=page
[Thu Feb 01 00:10:18.017888 2024] [security2:error] [pid 1075987:tid 47169793246976] [remote 79.49.222.78:4988] [client 79.49.222.78] ModSecurity: Warning. Match of “rx \\\\/wc-api\\\\/KCO_WC_Validation\\\\/” against “REQUEST_URI” required. [file “/etc/apache2/conf.d/modsec_vendor_configs/imunify360-full-apache/005_i360_4_custom.conf”] [line “33”] [id “77140164”] [msg “IM360 WAF: PHP Injection Low value||T:APACHE||SC:/home/swfpkapi/public_html/wp-admin/admin-ajax.php”] [severity “DEBUG”] [tag “service_im360”] [hostname “www.romacittaperta.com”] [uri “/wp-admin/admin-ajax.php”] [unique_id “ZbrTVQtseN1D-0b6HemS_wAC1xA”], referer: https://www.romacittaperta.com/wp-admin/post.php?post=3&action=editThanks for your support
AndreaJanuary 31, 2024 at 11:14 am #1432588Hi,
You could add that button to a widget area in the header: https://kriesi.at/documentation/enfold/header/#adding-a-header-widget-area
Best regards,
RikardJanuary 31, 2024 at 11:11 am #1432586In reply to: Video Media Element not showing video
Hi,
Here are the shortcodes for the page:
[av_layout_row min_height_percent='percent' min_height_pc='85' min_height='0' border='' color='main_color' mobile='av-flex-cells' mobile_breaking='' mobile_column_order='' id='' custom_class='' template_class='' aria_label='' av_element_hidden_in_editor='0' av_uid='av-l3szq1xv' sc_version='1.0'] [av_cell_one_half vertical_align='middle' padding='0' padding_sync='true' background='bg_color' background_color='' background_gradient_direction='vertical' background_gradient_color1='#000000' background_gradient_color2='#ffffff' background_gradient_color3='' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat' link='' linktarget='' link_hover='' mobile_display='' mobile_col_pos='0' custom_class='' template_class='' av_uid='av-l3szpg70' sc_version='1.0'] [av_one_full first min_height='av-equal-height-column' vertical_alignment='av-align-middle' space='no_margin' row_boxshadow_width='10' row_boxshadow_color='' margin='0px' margin_sync='true' mobile_breaking='' mobile_column_order='' border='' border_style='solid' border_color='' radius='' radius_sync='true' min_col_height='100%' padding='30px' padding_sync='true' svg_div_top='' svg_div_top_color='#333333' svg_div_top_width='100' svg_div_top_height='50' svg_div_top_max_height='none' svg_div_top_opacity='' svg_div_bottom='' svg_div_bottom_color='#333333' svg_div_bottom_width='100' svg_div_bottom_height='50' svg_div_bottom_max_height='none' svg_div_bottom_opacity='' column_boxshadow_width='10' column_boxshadow_color='' background='bg_color' background_color='' background_gradient_direction='vertical' background_gradient_color1='#000000' background_gradient_color2='#ffffff' background_gradient_color3='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' highlight_size='1.1' animation='curtain-reveal-ttb' animation_duration='' animation_custom_bg_color='#f8f8f8' animation_z_index_curtain='1' parallax_parallax='bottom_top' parallax_parallax_speed='' av-medium-parallax_parallax='' av-medium-parallax_parallax_speed='' av-small-parallax_parallax='' av-small-parallax_parallax_speed='' av-mini-parallax_parallax='' av-mini-parallax_parallax_speed='' css_position='' css_position_location=',,,' css_position_z_index='' av-medium-css_position='' av-medium-css_position_location=',,,' av-medium-css_position_z_index='' av-small-css_position='' av-small-css_position_location=',,,' av-small-css_position_z_index='' av-mini-css_position='' av-mini-css_position_location=',,,' av-mini-css_position_z_index='' link='' linktarget='' link_hover='' title_attr='' alt_attr='' mobile_display='' mobile_col_pos='0' id='' custom_class='' template_class='' aria_label='' av_uid='av-l3t6vrtm' sc_version='1.0'] [av_image src='https://kriesi.at/themes/enfold-parallax/wp-content/uploads/sites/87/2022/05/main-enfold.png' attachment='2047' attachment_size='full' copyright='' caption='' image_size='' styling='' box_shadow='none' box_shadow_width='10' box_shadow_color='' align='center' font_size='' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff' animation='fade-in' animation_duration='' animation_custom_bg_color='' animation_z_index_curtain='100' parallax_parallax='right_left' parallax_parallax_speed='' av-medium-parallax_parallax='' av-medium-parallax_parallax_speed='' av-small-parallax_parallax='' av-small-parallax_parallax_speed='' av-mini-parallax_parallax='' av-mini-parallax_parallax_speed='' hover='' appearance='' css_position='' css_position_location=',,,' css_position_z_index='' av-medium-css_position='' av-medium-css_position_location=',,,' av-medium-css_position_z_index='' av-small-css_position='' av-small-css_position_location=',,,' av-small-css_position_z_index='' av-mini-css_position='' av-mini-css_position_location=',,,' av-mini-css_position_z_index='' transform_perspective='' transform_rotation=',,,' transform_scale=',,' transform_skew=',' transform_translate=',,' av-medium-transform_perspective='' av-medium-transform_rotation=',,,' av-medium-transform_scale=',,' av-medium-transform_skew=',' av-medium-transform_translate=',,' av-small-transform_perspective='' av-small-transform_rotation=',,,' av-small-transform_scale=',,' av-small-transform_skew=',' av-small-transform_translate=',,' av-mini-transform_perspective='' av-mini-transform_rotation=',,,' av-mini-transform_scale=',,' av-mini-transform_skew=',' av-mini-transform_translate=',,' link='' target='' title_attr='' alt_attr='' img_scrset='' lazy_loading='disabled' id='' custom_class='' template_class='' av_element_hidden_in_editor='0' av_uid='av-z26fk' sc_version='1.0' admin_preview_bg=''][/av_image] [/av_one_full][/av_cell_one_half][av_cell_one_half vertical_align='middle' padding='0' padding_sync='true' background='bg_color' background_color='' background_gradient_direction='vertical' background_gradient_color1='#000000' background_gradient_color2='#ffffff' background_gradient_color3='' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat' link='' linktarget='' link_hover='' mobile_display='' mobile_col_pos='0' custom_class='' template_class='' av_uid='av-l3szplqc' sc_version='1.0'] [av_one_full first min_height='av-equal-height-column' vertical_alignment='av-align-middle' space='' row_boxshadow_width='10' row_boxshadow_color='' margin='0px' margin_sync='true' mobile_breaking='' mobile_column_order='' border='' border_style='solid' border_color='' radius='' radius_sync='true' min_col_height='100%' padding='30px' padding_sync='true' svg_div_top='' svg_div_top_color='#333333' svg_div_top_width='100' svg_div_top_height='50' svg_div_top_max_height='none' svg_div_top_opacity='' svg_div_bottom='' svg_div_bottom_color='#333333' svg_div_bottom_width='100' svg_div_bottom_height='50' svg_div_bottom_max_height='none' svg_div_bottom_opacity='' column_boxshadow_width='10' column_boxshadow_color='' background='bg_color' background_color='' background_gradient_direction='vertical' background_gradient_color1='#000000' background_gradient_color2='#ffffff' background_gradient_color3='' src='https://kriesi.at/themes/enfold-parallax/wp-content/uploads/sites/87/2022/05/startup_dark.jpg' attachment='2030' attachment_size='full' background_position='center left' background_repeat='stretch' highlight_size='1.1' animation='curtain-reveal-btt' animation_duration='' animation_custom_bg_color='#ffffff' animation_z_index_curtain='1' parallax_parallax='' parallax_parallax_speed='' av-medium-parallax_parallax='' av-medium-parallax_parallax_speed='' av-small-parallax_parallax='' av-small-parallax_parallax_speed='' av-mini-parallax_parallax='' av-mini-parallax_parallax_speed='' css_position='' css_position_location=',,,' css_position_z_index='' av-medium-css_position='' av-medium-css_position_location=',,,' av-medium-css_position_z_index='' av-small-css_position='' av-small-css_position_location=',,,' av-small-css_position_z_index='' av-mini-css_position='' av-mini-css_position_location=',,,' av-mini-css_position_z_index='' link='' linktarget='' link_hover='' title_attr='' alt_attr='' mobile_display='' mobile_col_pos='0' id='' custom_class='' template_class='' aria_label='' av_uid='av-l3szqp26' sc_version='1.0'] [av_image src='https://kriesi.at/themes/enfold-parallax/wp-content/uploads/sites/87/2022/05/main-parallax.png' attachment='2048' attachment_size='full' copyright='' caption='' image_size='' styling='' box_shadow='none' box_shadow_width='10' box_shadow_color='' align='center' font_size='' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff' animation='fade-in' animation_duration='' animation_custom_bg_color='' animation_z_index_curtain='100' parallax_parallax='left_right' parallax_parallax_speed='' av-medium-parallax_parallax='' av-medium-parallax_parallax_speed='' av-small-parallax_parallax='' av-small-parallax_parallax_speed='' av-mini-parallax_parallax='' av-mini-parallax_parallax_speed='' hover='' appearance='' css_position='' css_position_location=',,,' css_position_z_index='' av-medium-css_position='' av-medium-css_position_location=',,,' av-medium-css_position_z_index='' av-small-css_position='' av-small-css_position_location=',,,' av-small-css_position_z_index='' av-mini-css_position='' av-mini-css_position_location=',,,' av-mini-css_position_z_index='' transform_perspective='' transform_rotation=',,,' transform_scale=',,' transform_skew=',' transform_translate=',,' av-medium-transform_perspective='' av-medium-transform_rotation=',,,' av-medium-transform_scale=',,' av-medium-transform_skew=',' av-medium-transform_translate=',,' av-small-transform_perspective='' av-small-transform_rotation=',,,' av-small-transform_scale=',,' av-small-transform_skew=',' av-small-transform_translate=',,' av-mini-transform_perspective='' av-mini-transform_rotation=',,,' av-mini-transform_scale=',,' av-mini-transform_skew=',' av-mini-transform_translate=',,' link='' target='' title_attr='' alt_attr='' img_scrset='' lazy_loading='disabled' id='' custom_class='' template_class='' av_element_hidden_in_editor='0' av_uid='av-q2u00' sc_version='1.0' admin_preview_bg='rgb(34, 34, 34)'][/av_image] [/av_one_full][/av_cell_one_half] [/av_layout_row] [av_section min_height='' min_height_pc='25' min_height_px='500px' shadow='no-border-styling' bottom_border='no-border-styling' bottom_border_diagonal_color='#333333' bottom_border_diagonal_direction='' bottom_border_style='' padding='default' margin='aviaTBmargin' custom_margin='0px,80px' svg_div_top='' svg_div_top_color='#333333' svg_div_top_width='100' svg_div_top_height='50' svg_div_top_max_height='none' svg_div_top_opacity='' svg_div_bottom='' svg_div_bottom_color='#333333' svg_div_bottom_width='100' svg_div_bottom_height='50' svg_div_bottom_max_height='none' svg_div_bottom_opacity='' color='main_color' background='bg_color' custom_bg='' background_gradient_direction='vertical' background_gradient_color1='#000000' background_gradient_color2='#ffffff' background_gradient_color3='' src='' attachment='' attachment_size='' attach='scroll' position='top left' repeat='no-repeat' video='' video_ratio='16:9' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern='' custom_arrow_bg='' css_position_z_index='10' av-medium-css_position_z_index='' av-small-css_position_z_index='' av-mini-css_position_z_index='' id='service' custom_class='' template_class='' aria_label='' av_element_hidden_in_editor='0' av_uid='av-kz5g1n7y' sc_version='1.0'] [av_one_third first min_height='av-equal-height-column' vertical_alignment='av-align-middle' space='no_margin' row_boxshadow_width='10' row_boxshadow_color='rgba(0,0,0,0.26)' custom_margin='aviaTBcustom_margin' margin='-80px,0px' av-desktop-margin='' av-desktop-margin_sync='true' av-medium-margin='' av-medium-margin_sync='true' av-small-margin='' av-small-margin_sync='true' av-mini-margin='' av-mini-margin_sync='true' mobile_breaking='av-break-at-tablet' mobile_column_order='' border='' border_style='solid' border_color='' radius='' radius_sync='true' min_col_height='' padding='50px' padding_sync='true' av-desktop-padding='' av-desktop-padding_sync='true' av-medium-padding='' av-medium-padding_sync='true' av-small-padding='' av-small-padding_sync='true' av-mini-padding='' av-mini-padding_sync='true' svg_div_top='' svg_div_top_color='#333333' svg_div_top_width='100' svg_div_top_height='50' svg_div_top_max_height='none' svg_div_top_opacity='' svg_div_bottom='' svg_div_bottom_color='#333333' svg_div_bottom_width='100' svg_div_bottom_height='50' svg_div_bottom_max_height='none' svg_div_bottom_opacity='' column_boxshadow='aviaTBcolumn_boxshadow' column_boxshadow_width='5' column_boxshadow_color='rgba(0,0,0,0.2)' background='bg_color' background_color='#ffffff' background_gradient_direction='vertical' background_gradient_color1='#000000' background_gradient_color2='#ffffff' background_gradient_color3='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' highlight_size='1.1' animation='' animation_duration='' animation_custom_bg_color='' animation_z_index_curtain='100' parallax_parallax='' parallax_parallax_speed='0' av-desktop-parallax_parallax='bottom_top' av-desktop-parallax_parallax_speed='70' av-medium-parallax_parallax='' av-medium-parallax_parallax_speed='' av-small-parallax_parallax='' av-small-parallax_parallax_speed='' av-mini-parallax_parallax='' av-mini-parallax_parallax_speed='' css_position='relative' css_position_location=',,,' css_position_z_index='99' av-desktop-css_position='' av-desktop-css_position_location=',,,' av-desktop-css_position_z_index='' av-medium-css_position='' av-medium-css_position_location=',,,' av-medium-css_position_z_index='' av-small-css_position='' av-small-css_position_location=',,,' av-small-css_position_z_index='' av-mini-css_position='' av-mini-css_position_location=',,,' av-mini-css_position_z_index='' link='' linktarget='' link_hover='' title_attr='' alt_attr='' mobile_display='' mobile_col_pos='0' id='' custom_class='' template_class='' aria_label='' av_uid='av-kz5hamof' sc_version='1.0'] [av_heading heading='Planning & Consulting' tag='h2' style='blockquote modern-quote modern-centered' subheading_active='' show_icon='' icon='ue800' font='entypo-fontello' size='' av-medium-font-size-title='' av-small-font-size-title='' av-mini-font-size-title='' subheading_size='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' icon_size='' av-medium-font-size-1='' av-small-font-size-1='' av-mini-font-size-1='' color='' custom_font='' subheading_color='' seperator_color='' icon_color='' margin='' margin_sync='true' padding='10' icon_padding='10' headline_padding='' headline_padding_sync='true' link='' link_target='' id='' custom_class='' template_class='' av_uid='av-dj574' sc_version='1.0' admin_preview_bg=''][/av_heading] [av_textblock textblock_styling_align='' textblock_styling='' textblock_styling_gap='' textblock_styling_mobile='' size='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' font_color='' color='' id='' custom_class='' template_class='' av_uid='av-anksw' sc_version='1.0' admin_preview_bg=''] Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam egestas a nulla a molestie. Duis a sapien ac orci dictum sodales. Vivamus vitae feugiat elit. Fusce a eros laoreet, bibendum lectus id, euismod nulla. [/av_textblock] [av_hr class='invisible' icon_select='yes' icon='ue808' font='entypo-fontello' position='center' shadow='no-shadow' height='30' custom_border='av-border-thin' custom_width='50px' custom_margin_top='30px' custom_margin_bottom='30px' custom_border_color='' custom_icon_color='' id='' custom_class='' template_class='' av_uid='av-15ly34' sc_version='1.0' admin_preview_bg=''] [av_button label='Learn more' icon_select='yes-right-icon' icon='ue875' font='entypo-fontello' icon_hover='aviaTBicon_hover' link='manually,http://' link_target='' size='large' position='center' label_display='' title_attr='' color_options='' color='theme-color' custom_bg='#40bfd5' custom_font='#ffffff' btn_color_bg='theme-color' btn_custom_grad_direction='vertical' btn_custom_grad_1='#000000' btn_custom_grad_2='#ffffff' btn_custom_grad_3='' btn_custom_grad_opacity='0.7' btn_custom_bg='#444444' btn_color_bg_hover='theme-color-highlight' btn_custom_bg_hover='#444444' btn_color_font='theme-color' btn_custom_font='#ffffff' btn_color_font_hover='white' btn_custom_font_hover='#ffffff' border='' border_width='' border_width_sync='true' border_color='' border_radius='4px' border_radius_sync='true' box_shadow='' box_shadow_style='0px,0px,0px,0px' box_shadow_color='' animation='' animation_duration='' animation_custom_bg_color='' animation_z_index_curtain='100' hover_opacity='' sonar_effect_effect='' sonar_effect_color='' sonar_effect_duration='1' sonar_effect_scale='' sonar_effect_opac='0.5' css_position='' css_position_location=',,,' css_position_z_index='' av-medium-css_position='' av-medium-css_position_location=',,,' av-medium-css_position_z_index='' av-small-css_position='' av-small-css_position_location=',,,' av-small-css_position_z_index='' av-mini-css_position='' av-mini-css_position_location=',,,' av-mini-css_position_z_index='' id='' custom_class='' template_class='' av_uid='av-wmepk' sc_version='1.0' admin_preview_bg='rgb(34, 34, 34)'] [/av_one_third][av_one_third min_height='av-equal-height-column' vertical_alignment='av-align-middle' space='no_margin' row_boxshadow_width='10' row_boxshadow_color='rgba(0,0,0,0.26)' margin='0px' margin_sync='true' av-desktop-margin='' av-desktop-margin_sync='true' av-medium-margin='' av-medium-margin_sync='true' av-small-margin='' av-small-margin_sync='true' av-mini-margin='' av-mini-margin_sync='true' mobile_breaking='' mobile_column_order='' border='' border_style='solid' border_color='' radius='' radius_sync='true' min_col_height='' padding='50px' padding_sync='true' av-desktop-padding='' av-desktop-padding_sync='true' av-medium-padding='' av-medium-padding_sync='true' av-small-padding='' av-small-padding_sync='true' av-mini-padding='' av-mini-padding_sync='true' svg_div_top='' svg_div_top_color='#333333' svg_div_top_width='100' svg_div_top_height='50' svg_div_top_max_height='none' svg_div_top_opacity='' svg_div_bottom='' svg_div_bottom_color='#333333' svg_div_bottom_width='100' svg_div_bottom_height='50' svg_div_bottom_max_height='none' svg_div_bottom_opacity='' column_boxshadow='aviaTBcolumn_boxshadow' column_boxshadow_width='5' column_boxshadow_color='rgba(0,0,0,0.2)' background='bg_gradient' background_color='#ffffff' background_gradient_direction='diagonal_tb' background_gradient_color1='#2d2d2d' background_gradient_color2='#383838' background_gradient_color3='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' highlight='aviaTBhighlight' highlight_size='1.1' animation='' animation_duration='' animation_custom_bg_color='' animation_z_index_curtain='100' parallax_parallax='' parallax_parallax_speed='100' av-desktop-parallax_parallax='bottom_top' av-desktop-parallax_parallax_speed='100' av-medium-parallax_parallax='' av-medium-parallax_parallax_speed='' av-small-parallax_parallax='' av-small-parallax_parallax_speed='' av-mini-parallax_parallax='' av-mini-parallax_parallax_speed='' css_position='relative' css_position_location=',,,' css_position_z_index='110' av-desktop-css_position='' av-desktop-css_position_location=',,,' av-desktop-css_position_z_index='' av-medium-css_position='' av-medium-css_position_location=',,,' av-medium-css_position_z_index='' av-small-css_position='' av-small-css_position_location=',,,' av-small-css_position_z_index='' av-mini-css_position='' av-mini-css_position_location=',,,' av-mini-css_position_z_index='' link='' linktarget='' link_hover='' title_attr='' alt_attr='' mobile_display='' mobile_col_pos='0' id='' custom_class='' template_class='' aria_label='' av_uid='av-kz5gwrwj' sc_version='1.0'] [av_heading heading='Design & Production' tag='h2' style='blockquote modern-quote modern-centered' subheading_active='' show_icon='' icon='ue800' font='entypo-fontello' size='' av-medium-font-size-title='' av-small-font-size-title='' av-mini-font-size-title='' subheading_size='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' icon_size='' av-medium-font-size-1='' av-small-font-size-1='' av-mini-font-size-1='' color='custom-color-heading' custom_font='#ffffff' subheading_color='' seperator_color='' icon_color='' margin='' margin_sync='true' padding='10' icon_padding='10' headline_padding='' headline_padding_sync='true' link='' link_target='' id='' custom_class='' template_class='' av_uid='av-kz5h2s5l' sc_version='1.0' admin_preview_bg='rgb(34, 34, 34)'][/av_heading] [av_textblock textblock_styling_align='' textblock_styling='' textblock_styling_gap='' textblock_styling_mobile='' size='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' font_color='custom' color='#ffffff' id='' custom_class='' template_class='' av_uid='av-kz5h37os' sc_version='1.0' admin_preview_bg='rgb(34, 34, 34)'] Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam egestas a nulla a molestie. Duis a sapien ac orci dictum sodales. Vivamus vitae feugiat elit. Fusce a eros laoreet, bibendum lectus id, euismod nulla. [/av_textblock] [av_hr class='invisible' icon_select='yes' icon='ue808' font='entypo-fontello' position='center' shadow='no-shadow' height='30' custom_border='av-border-thin' custom_width='50px' custom_margin_top='30px' custom_margin_bottom='30px' custom_border_color='' custom_icon_color='' id='' custom_class='' template_class='' av_uid='av-kz5k342g' sc_version='1.0' admin_preview_bg=''] [av_button label='Learn more' icon_select='yes-right-icon' icon='ue875' font='entypo-fontello' icon_hover='aviaTBicon_hover' link='manually,http://' link_target='' size='large' position='center' label_display='' title_attr='' color_options='' color='light' custom_bg='#40bfd5' custom_font='#ffffff' btn_color_bg='theme-color' btn_custom_grad_direction='vertical' btn_custom_grad_1='#000000' btn_custom_grad_2='#ffffff' btn_custom_grad_3='' btn_custom_grad_opacity='0.7' btn_custom_bg='#444444' btn_color_bg_hover='theme-color-highlight' btn_custom_bg_hover='#444444' btn_color_font='theme-color' btn_custom_font='#ffffff' btn_color_font_hover='white' btn_custom_font_hover='#ffffff' border='' border_width='' border_width_sync='true' border_color='' border_radius='4px' border_radius_sync='true' box_shadow='' box_shadow_style='0px,0px,0px,0px' box_shadow_color='' animation='' animation_duration='' animation_custom_bg_color='' animation_z_index_curtain='100' hover_opacity='' sonar_effect_effect='' sonar_effect_color='' sonar_effect_duration='1' sonar_effect_scale='' sonar_effect_opac='0.5' css_position='' css_position_location=',,,' css_position_z_index='' av-medium-css_position='' av-medium-css_position_location=',,,' av-medium-css_position_z_index='' av-small-css_position='' av-small-css_position_location=',,,' av-small-css_position_z_index='' av-mini-css_position='' av-mini-css_position_location=',,,' av-mini-css_position_z_index='' id='' custom_class='' template_class='' av_uid='av-kz5k24rj' sc_version='1.0' admin_preview_bg='rgb(34, 34, 34)'] [/av_one_third][av_one_third min_height='av-equal-height-column' vertical_alignment='av-align-middle' space='no_margin' row_boxshadow_width='10' row_boxshadow_color='rgba(0,0,0,0.26)' custom_margin='aviaTBcustom_margin' margin='-80px,0px' av-desktop-margin='' av-desktop-margin_sync='true' av-medium-margin='' av-medium-margin_sync='true' av-small-margin='' av-small-margin_sync='true' av-mini-margin='' av-mini-margin_sync='true' mobile_breaking='' mobile_column_order='' border='' border_style='solid' border_color='' radius='' radius_sync='true' min_col_height='' padding='50px' padding_sync='true' av-desktop-padding='' av-desktop-padding_sync='true' av-medium-padding='' av-medium-padding_sync='true' av-small-padding='' av-small-padding_sync='true' av-mini-padding='' av-mini-padding_sync='true' svg_div_top='' svg_div_top_color='#333333' svg_div_top_width='100' svg_div_top_height='50' svg_div_top_max_height='none' svg_div_top_opacity='' svg_div_bottom='' svg_div_bottom_color='#333333' svg_div_bottom_width='100' svg_div_bottom_height='50' svg_div_bottom_max_height='none' svg_div_bottom_opacity='' column_boxshadow='aviaTBcolumn_boxshadow' column_boxshadow_width='5' column_boxshadow_color='rgba(0,0,0,0.2)' background='bg_color' background_color='#ffffff' background_gradient_direction='vertical' background_gradient_color1='#000000' background_gradient_color2='#ffffff' background_gradient_color3='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' highlight_size='1.1' animation='' animation_duration='' animation_custom_bg_color='' animation_z_index_curtain='100' parallax_parallax='' parallax_parallax_speed='70' av-desktop-parallax_parallax='bottom_top' av-desktop-parallax_parallax_speed='70' av-medium-parallax_parallax='' av-medium-parallax_parallax_speed='' av-small-parallax_parallax='' av-small-parallax_parallax_speed='' av-mini-parallax_parallax='' av-mini-parallax_parallax_speed='' css_position='relative' css_position_location=',,,' css_position_z_index='99' av-desktop-css_position='' av-desktop-css_position_location=',,,' av-desktop-css_position_z_index='' av-medium-css_position='' av-medium-css_position_location=',,,' av-medium-css_position_z_index='' av-small-css_position='' av-small-css_position_location=',,,' av-small-css_position_z_index='' av-mini-css_position='' av-mini-css_position_location=',,,' av-mini-css_position_z_index='' link='' linktarget='' link_hover='' title_attr='' alt_attr='' mobile_display='' mobile_col_pos='0' id='' custom_class='' template_class='' aria_label='' av_uid='av-kz5gvtyq' sc_version='1.0'] [av_heading heading='Shipping & Managing' tag='h2' style='blockquote modern-quote modern-centered' subheading_active='' show_icon='' icon='ue800' font='entypo-fontello' size='' av-medium-font-size-title='' av-small-font-size-title='' av-mini-font-size-title='' subheading_size='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' icon_size='' av-medium-font-size-1='' av-small-font-size-1='' av-mini-font-size-1='' color='' custom_font='' subheading_color='' seperator_color='' icon_color='' margin='' margin_sync='true' padding='10' icon_padding='10' headline_padding='' headline_padding_sync='true' link='' link_target='' id='' custom_class='' template_class='' av_uid='av-kz5gfgzs' sc_version='1.0' admin_preview_bg=''][/av_heading] [av_textblock textblock_styling_align='' textblock_styling='' textblock_styling_gap='' textblock_styling_mobile='' size='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' font_color='' color='' id='' custom_class='' template_class='' av_uid='av-kz5gq51m' sc_version='1.0' admin_preview_bg=''] Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam egestas a nulla a molestie. Duis a sapien ac orci dictum sodales. Vivamus vitae feugiat elit. Fusce a eros laoreet, bibendum lectus id, euismod nulla. [/av_textblock] [av_hr class='invisible' icon_select='yes' icon='ue808' font='entypo-fontello' position='center' shadow='no-shadow' height='30' custom_border='av-border-thin' custom_width='50px' custom_margin_top='30px' custom_margin_bottom='30px' custom_border_color='' custom_icon_color='' id='' custom_class='' template_class='' av_uid='av-oqxgo' sc_version='1.0' admin_preview_bg=''] [av_button label='Learn more' icon_select='yes-right-icon' icon='ue875' font='entypo-fontello' icon_hover='aviaTBicon_hover' link='manually,http://' link_target='' size='large' position='center' label_display='' title_attr='' color_options='' color='theme-color' custom_bg='#40bfd5' custom_font='#ffffff' btn_color_bg='theme-color' btn_custom_grad_direction='vertical' btn_custom_grad_1='#000000' btn_custom_grad_2='#ffffff' btn_custom_grad_3='' btn_custom_grad_opacity='0.7' btn_custom_bg='#444444' btn_color_bg_hover='theme-color-highlight' btn_custom_bg_hover='#444444' btn_color_font='theme-color' btn_custom_font='#ffffff' btn_color_font_hover='white' btn_custom_font_hover='#ffffff' border='' border_width='' border_width_sync='true' border_color='' border_radius='4px' border_radius_sync='true' box_shadow='' box_shadow_style='0px,0px,0px,0px' box_shadow_color='' animation='' animation_duration='' animation_custom_bg_color='' animation_z_index_curtain='100' hover_opacity='' sonar_effect_effect='' sonar_effect_color='' sonar_effect_duration='1' sonar_effect_scale='' sonar_effect_opac='0.5' css_position='' css_position_location=',,,' css_position_z_index='' av-medium-css_position='' av-medium-css_position_location=',,,' av-medium-css_position_z_index='' av-small-css_position='' av-small-css_position_location=',,,' av-small-css_position_z_index='' av-mini-css_position='' av-mini-css_position_location=',,,' av-mini-css_position_z_index='' id='' custom_class='' template_class='' av_uid='av-kz5jzepf' sc_version='1.0' admin_preview_bg='rgb(34, 34, 34)'] [/av_one_third][av_one_full first min_height='' vertical_alignment='av-align-middle' space='no_margin' row_boxshadow_width='10' row_boxshadow_color='rgba(0,0,0,0.26)' custom_margin='aviaTBcustom_margin' margin='-80px,0px' mobile_breaking='' mobile_column_order='' border='' border_style='solid' border_color='' radius='' radius_sync='true' min_col_height='' padding='0px' padding_sync='true' svg_div_top='' svg_div_top_color='#333333' svg_div_top_width='100' svg_div_top_height='50' svg_div_top_max_height='none' svg_div_top_opacity='' svg_div_bottom='' svg_div_bottom_color='#333333' svg_div_bottom_width='100' svg_div_bottom_height='50' svg_div_bottom_max_height='none' svg_div_bottom_opacity='' column_boxshadow_width='5' column_boxshadow_color='rgba(0,0,0,0.2)' background='bg_color' background_color='' background_gradient_direction='vertical' background_gradient_color1='#000000' background_gradient_color2='#ffffff' background_gradient_color3='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' highlight_size='1.1' animation='curtain-reveal-rtl' animation_duration='2' animation_custom_bg_color='#ffffff' animation_z_index_curtain='100' parallax_parallax='bottom_top' parallax_parallax_speed='-10' av-medium-parallax_parallax='' av-medium-parallax_parallax_speed='' av-small-parallax_parallax='' av-small-parallax_parallax_speed='' av-mini-parallax_parallax='' av-mini-parallax_parallax_speed='' css_position='relative' css_position_location=',,,' css_position_z_index='99' av-medium-css_position='' av-medium-css_position_location=',,,' av-medium-css_position_z_index='' av-small-css_position='' av-small-css_position_location=',,,' av-small-css_position_z_index='' av-mini-css_position='' av-mini-css_position_location=',,,' av-mini-css_position_z_index='' link='' linktarget='' link_hover='' title_attr='' alt_attr='' mobile_display='' mobile_col_pos='0' id='' custom_class='' template_class='' aria_label='' av_uid='av-l3hiswcr' sc_version='1.0'] [av_headline_rotator before_rotating='Say hello to a<br/>' after_rotating='Enfold!' margin='' margin_sync='true' align='center' custom_title='#000000' size='5vw' av-medium-font-size-title='' av-small-font-size-title='' av-mini-font-size-title='' tag='h2' interval='5' animation='typewriter' alb_description='' id='' custom_class='' template_class='' av_uid='av-kz5jge9h' sc_version='1.0' admin_preview_bg=''] [av_rotator_item title='recently upgraded' custom_title='' link='' linktarget='' av_uid='av-kcg7s' sc_version='1.0'] [av_rotator_item title='heavily improved' custom_title='' link='' linktarget='' av_uid='av-heiy0' sc_version='1.0'] [av_rotator_item title='simply better' custom_title='' link='' linktarget='' av_uid='av-au3dc' sc_version='1.0'] [/av_headline_rotator] [/av_one_full][/av_section][av_layout_row min_height_percent='' min_height_pc='25' min_height='0' border='' color='main_color' mobile='av-flex-cells' mobile_breaking='' mobile_column_order='' id='about' custom_class='' template_class='' aria_label='' av_element_hidden_in_editor='0' av_uid='av-2ruoc8' sc_version='1.0'] [av_cell_one_half vertical_align='middle' padding='120px' padding_sync='true' av-desktop-padding='' av-desktop-padding_sync='true' av-medium-padding='' av-medium-padding_sync='true' av-small-padding='' av-small-padding_sync='true' av-mini-padding='60px' av-mini-padding_sync='true' background='bg_color' background_color='' background_gradient_direction='vertical' background_gradient_color1='#000000' background_gradient_color2='#ffffff' background_gradient_color3='' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat' link='' linktarget='' link_hover='' mobile_display='' mobile_col_pos='0' custom_class='' template_class='' av_uid='av-l3sm2j2d' sc_version='1.0'] [av_heading heading='About Us...' tag='h2' style='blockquote modern-quote modern-centered' subheading_active='' show_icon='' icon='ue800' font='entypo-fontello' size='' av-medium-font-size-title='' av-small-font-size-title='' av-mini-font-size-title='' subheading_size='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' icon_size='' av-medium-font-size-1='' av-small-font-size-1='' av-mini-font-size-1='' color='' custom_font='' subheading_color='' seperator_color='' icon_color='' margin='' margin_sync='true' padding='10' icon_padding='10' headline_padding='' headline_padding_sync='true' link='' link_target='' id='' custom_class='' template_class='' av_uid='av-l3sm88y3' sc_version='1.0' admin_preview_bg=''][/av_heading] [av_textblock textblock_styling_align='' textblock_styling='' textblock_styling_gap='' textblock_styling_mobile='' size='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' font_color='' color='' id='' custom_class='' template_class='' av_uid='av-2mr6mo' sc_version='1.0' admin_preview_bg=''] Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam egestas a nulla a molestie. Duis a sapien ac orci dictum sodales. Vivamus vitae feugiat elit. Fusce a eros laoreet, bibendum lectus id, euismod nulla. [/av_textblock] [av_one_half first min_height='' vertical_alignment='av-align-top' space='' row_boxshadow='' row_boxshadow_width='10' row_boxshadow_color='' custom_margin='' margin='0px' mobile_breaking='' mobile_column_order='' border='' border_style='solid' border_color='' radius='' min_col_height='' padding='' svg_div_top='' svg_div_top_color='#333333' svg_div_top_width='100' svg_div_top_height='50' svg_div_top_max_height='none' svg_div_top_flip='' svg_div_top_invert='' svg_div_top_front='' svg_div_top_opacity='' svg_div_top_preview='' svg_div_bottom='' svg_div_bottom_color='#333333' svg_div_bottom_width='100' svg_div_bottom_height='50' svg_div_bottom_max_height='none' svg_div_bottom_flip='' svg_div_bottom_invert='' svg_div_bottom_front='' svg_div_bottom_opacity='' svg_div_bottom_preview='' column_boxshadow='' column_boxshadow_width='10' column_boxshadow_color='' background='bg_color' background_color='' background_gradient_direction='vertical' background_gradient_color1='#000000' background_gradient_color2='#ffffff' background_gradient_color3='' src='' background_position='top left' background_repeat='no-repeat' highlight='' highlight_size='' animation='' animation_duration='' animation_custom_bg_color='' animation_z_index_curtain='100' parallax_parallax='' parallax_parallax_speed='' av-medium-parallax_parallax='' av-medium-parallax_parallax_speed='' av-small-parallax_parallax='' av-small-parallax_parallax_speed='' av-mini-parallax_parallax='' av-mini-parallax_parallax_speed='' css_position='' css_position_location='' css_position_z_index='' av-medium-css_position='' av-medium-css_position_location='' av-medium-css_position_z_index='' av-small-css_position='' av-small-css_position_location='' av-small-css_position_z_index='' av-mini-css_position='' av-mini-css_position_location='' av-mini-css_position_z_index='' link='' linktarget='' link_hover='' title_attr='' alt_attr='' mobile_display='' mobile_col_pos='0' id='' custom_class='' template_class='' aria_label='' av_uid='av-2cdbiw' sc_version='1.0'] [av_animated_numbers number='12' start_from='' icon_select='no' icon='ue800' font='entypo-fontello' number_format='' circle='' circle_custom='' circle_border_style='none' circle_border_color='' circle_bg_color='' circle_border_width='' circle_size='' box_shadow='none' box_shadow_style='0px,0px,0px,0px' box_shadow_color='' circle_mobile='' font_size='' av-medium-font-size-number='' av-small-font-size-number='' av-mini-font-size-number='' font_size_description='' av-medium-font-size-text='' av-small-font-size-text='' av-mini-font-size-text='' color='' custom_color='#444444' custom_color_desc='#444444' timer='15' link='' linktarget='' sonar_effect_effect='' sonar_effect_color='' sonar_effect_duration='1' sonar_effect_scale='' sonar_effect_opac='0.5' id='' custom_class='' template_class='' av_uid='av-l3slvfgg' sc_version='1.0' admin_preview_bg=''] Team Member [/av_animated_numbers] [/av_one_half][av_one_half min_height='' vertical_alignment='av-align-top' space='' row_boxshadow='' row_boxshadow_width='10' row_boxshadow_color='' custom_margin='' margin='0px' mobile_breaking='' mobile_column_order='' border='' border_style='solid' border_color='' radius='' min_col_height='' padding='' svg_div_top='' svg_div_top_color='#333333' svg_div_top_width='100' svg_div_top_height='50' svg_div_top_max_height='none' svg_div_top_flip='' svg_div_top_invert='' svg_div_top_front='' svg_div_top_opacity='' svg_div_top_preview='' svg_div_bottom='' svg_div_bottom_color='#333333' svg_div_bottom_width='100' svg_div_bottom_height='50' svg_div_bottom_max_height='none' svg_div_bottom_flip='' svg_div_bottom_invert='' svg_div_bottom_front='' svg_div_bottom_opacity='' svg_div_bottom_preview='' column_boxshadow='' column_boxshadow_width='10' column_boxshadow_color='' background='bg_color' background_color='' background_gradient_direction='vertical' background_gradient_color1='#000000' background_gradient_color2='#ffffff' background_gradient_color3='' src='' background_position='top left' background_repeat='no-repeat' highlight='' highlight_size='' animation='' animation_duration='' animation_custom_bg_color='' animation_z_index_curtain='100' parallax_parallax='' parallax_parallax_speed='' av-medium-parallax_parallax='' av-medium-parallax_parallax_speed='' av-small-parallax_parallax='' av-small-parallax_parallax_speed='' av-mini-parallax_parallax='' av-mini-parallax_parallax_speed='' css_position='' css_position_location='' css_position_z_index='' av-medium-css_position='' av-medium-css_position_location='' av-medium-css_position_z_index='' av-small-css_position='' av-small-css_position_location='' av-small-css_position_z_index='' av-mini-css_position='' av-mini-css_position_location='' av-mini-css_position_z_index='' link='' linktarget='' link_hover='' title_attr='' alt_attr='' mobile_display='' mobile_col_pos='0' id='' custom_class='' template_class='' aria_label='' av_uid='av-27016w' sc_version='1.0'] [av_animated_numbers number='73' start_from='' icon_select='no' icon='ue800' font='entypo-fontello' number_format='' circle='' circle_custom='' circle_border_style='none' circle_border_color='' circle_bg_color='' circle_border_width='' circle_size='' box_shadow='none' box_shadow_style='0px,0px,0px,0px' box_shadow_color='' circle_mobile='' font_size='' av-medium-font-size-number='' av-small-font-size-number='' av-mini-font-size-number='' font_size_description='' av-medium-font-size-text='' av-small-font-size-text='' av-mini-font-size-text='' color='' custom_color='#444444' custom_color_desc='#444444' timer='15' link='' linktarget='' sonar_effect_effect='' sonar_effect_color='' sonar_effect_duration='1' sonar_effect_scale='' sonar_effect_opac='0.5' id='' custom_class='' template_class='' av_uid='av-l3slvool' sc_version='1.0' admin_preview_bg=''] Happy Clients [/av_animated_numbers] [/av_one_half][av_hr class='invisible' icon_select='yes' icon='ue808' font='entypo-fontello' position='center' shadow='no-shadow' height='60' custom_border='av-border-thin' custom_width='50px' custom_margin_top='30px' custom_margin_bottom='30px' custom_border_color='' custom_icon_color='' id='' custom_class='' template_class='' av_uid='av-259qwo' sc_version='1.0' admin_preview_bg=''] [av_button label='Learn more' icon_select='yes-right-icon' icon='ue875' font='entypo-fontello' icon_hover='aviaTBicon_hover' link='manually,http://' link_target='' size='large' position='center' label_display='' title_attr='' color_options='' color='dark' custom_bg='#40bfd5' custom_font='#ffffff' btn_color_bg='theme-color' btn_custom_grad_direction='vertical' btn_custom_grad_1='#000000' btn_custom_grad_2='#ffffff' btn_custom_grad_3='' btn_custom_grad_opacity='0.7' btn_custom_bg='#444444' btn_color_bg_hover='theme-color-highlight' btn_custom_bg_hover='#444444' btn_color_font='theme-color' btn_custom_font='#ffffff' btn_color_font_hover='white' btn_custom_font_hover='#ffffff' border='' border_width='' border_width_sync='true' border_color='' border_radius='4px' border_radius_sync='true' box_shadow='' box_shadow_style='0px,0px,0px,0px' box_shadow_color='' animation='' animation_duration='' animation_custom_bg_color='' animation_z_index_curtain='100' hover_opacity='' sonar_effect_effect='' sonar_effect_color='' sonar_effect_duration='1' sonar_effect_scale='' sonar_effect_opac='0.5' css_position='' css_position_location=',,,' css_position_z_index='' av-medium-css_position='' av-medium-css_position_location=',,,' av-medium-css_position_z_index='' av-small-css_position='' av-small-css_position_location=',,,' av-small-css_position_z_index='' av-mini-css_position='' av-mini-css_position_location=',,,' av-mini-css_position_z_index='' id='' custom_class='' template_class='' av_uid='av-l3sn0oe2' sc_version='1.0' admin_preview_bg='rgb(255, 255, 255)'] [/av_cell_one_half][av_cell_one_half vertical_align='middle' padding='70px' padding_sync='true' background='bg_color' background_color='' background_gradient_direction='vertical' background_gradient_color1='#000000' background_gradient_color2='#ffffff' background_gradient_color3='' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat' link='' linktarget='' link_hover='' mobile_display='' mobile_col_pos='0' custom_class='' template_class='' av_uid='av-l3sm2rrf' sc_version='1.0'] [av_image src='https://kriesi.at/themes/enfold-parallax/wp-content/uploads/sites/87/2022/05/ubiq-2Hq0WvL2Yc4-unsplash-845x684.jpg' attachment='2031' attachment_size='gallery' copyright='' caption='' image_size='' styling='no-styling' box_shadow='none' box_shadow_width='10' box_shadow_color='' align='center' font_size='' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff' animation='curtain-reveal-ltr' animation_duration='' animation_custom_bg_color='#ffffff' animation_z_index_curtain='100' parallax_parallax='bottom_top' parallax_parallax_speed='20' av-medium-parallax_parallax='' av-medium-parallax_parallax_speed='' av-small-parallax_parallax='' av-small-parallax_parallax_speed='' av-mini-parallax_parallax='' av-mini-parallax_parallax_speed='' hover='' appearance='' css_position='' css_position_location=',,,' css_position_z_index='110' av-medium-css_position='' av-medium-css_position_location=',,,' av-medium-css_position_z_index='' av-small-css_position='' av-small-css_position_location=',,,' av-small-css_position_z_index='' av-mini-css_position='' av-mini-css_position_location=',,,' av-mini-css_position_z_index='' transform_perspective='' transform_rotation=',,,' transform_scale=',,' transform_skew=',' transform_translate=',,' av-medium-transform_perspective='' av-medium-transform_rotation=',,,' av-medium-transform_scale=',,' av-medium-transform_skew=',' av-medium-transform_translate=',,' av-small-transform_perspective='' av-small-transform_rotation=',,,' av-small-transform_scale=',,' av-small-transform_skew=',' av-small-transform_translate=',,' av-mini-transform_perspective='' av-mini-transform_rotation=',,,' av-mini-transform_scale=',,' av-mini-transform_skew=',' av-mini-transform_translate=',,' link='' target='' title_attr='' alt_attr='' img_scrset='' lazy_loading='disabled' id='' custom_class='' template_class='' av_element_hidden_in_editor='0' av_uid='av-l3sluu0i' sc_version='1.0' admin_preview_bg=''][/av_image] [av_image src='https://kriesi.at/themes/enfold-parallax/wp-content/uploads/sites/87/2022/05/dusan-jovic-4JpCi9jWaOA-unsplash-200x300.jpg' attachment='2027' attachment_size='medium' copyright='' caption='' image_size='' styling='no-styling' box_shadow='outside' box_shadow_width='17' box_shadow_color='rgba(0,0,0,0.3)' align='center' font_size='' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff' animation='curtain-reveal-rtl' animation_duration='' animation_custom_bg_color='#ffffff' animation_z_index_curtain='100' parallax_parallax='bottom_top' parallax_parallax_speed='10' av-medium-parallax_parallax='' av-medium-parallax_parallax_speed='' av-small-parallax_parallax='' av-small-parallax_parallax_speed='' av-mini-parallax_parallax='' av-mini-parallax_parallax_speed='' hover='' appearance='' css_position='absolute' css_position_location='40px,,,-50px' css_position_z_index='110' av-medium-css_position='' av-medium-css_position_location=',,,' av-medium-css_position_z_index='' av-small-css_position='' av-small-css_position_location=',,,' av-small-css_position_z_index='' av-mini-css_position='' av-mini-css_position_location=',,,' av-mini-css_position_z_index='' transform_perspective='' transform_rotation=',,,' transform_scale=',,' transform_skew=',' transform_translate=',,' av-medium-transform_perspective='' av-medium-transform_rotation=',,,' av-medium-transform_scale=',,' av-medium-transform_skew=',' av-medium-transform_translate=',,' av-small-transform_perspective='' av-small-transform_rotation=',,,' av-small-transform_scale=',,' av-small-transform_skew=',' av-small-transform_translate=',,' av-mini-transform_perspective='' av-mini-transform_rotation=',,,' av-mini-transform_scale=',,' av-mini-transform_skew=',' av-mini-transform_translate=',,' link='' target='' title_attr='' alt_attr='' img_scrset='' lazy_loading='disabled' id='' custom_class='' template_class='' av_element_hidden_in_editor='0' av_uid='av-l3slz2ga' sc_version='1.0' admin_preview_bg=''][/av_image] [/av_cell_one_half][/av_layout_row][av_layout_row min_height_percent='' min_height_pc='25' min_height='0' border='' color='main_color' mobile='av-flex-cells' mobile_breaking='' mobile_column_order='' id='' custom_class='' template_class='' aria_label='' av_element_hidden_in_editor='0' av_uid='av-1y0avc' sc_version='1.0'] [av_cell_one_half vertical_align='middle' padding='70px' padding_sync='true' background='bg_color' background_color='' background_gradient_direction='vertical' background_gradient_color1='#000000' background_gradient_color2='#ffffff' background_gradient_color3='' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat' link='' linktarget='' link_hover='' mobile_display='' mobile_col_pos='0' custom_class='' template_class='' av_uid='av-1oaef4' sc_version='1.0'] [av_image src='https://kriesi.at/themes/enfold-parallax/wp-content/uploads/sites/87/2022/05/amr-taha-UOMrO-JN-XQ-unsplash-845x684.jpg' attachment='2026' attachment_size='gallery' copyright='' caption='' image_size='' styling='no-styling' box_shadow='none' box_shadow_width='10' box_shadow_color='' align='center' font_size='' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff' animation='curtain-reveal-rtl' animation_duration='' animation_custom_bg_color='#ffffff' animation_z_index_curtain='100' parallax_parallax='bottom_top' parallax_parallax_speed='20' av-medium-parallax_parallax='' av-medium-parallax_parallax_speed='' av-small-parallax_parallax='' av-small-parallax_parallax_speed='' av-mini-parallax_parallax='' av-mini-parallax_parallax_speed='' hover='' appearance='' css_position='' css_position_location=',,,' css_position_z_index='110' av-medium-css_position='' av-medium-css_position_location=',,,' av-medium-css_position_z_index='' av-small-css_position='' av-small-css_position_location=',,,' av-small-css_position_z_index='' av-mini-css_position='' av-mini-css_position_location=',,,' av-mini-css_position_z_index='' transform_perspective='' transform_rotation=',,,' transform_scale=',,' transform_skew=',' transform_translate=',,' av-medium-transform_perspective='' av-medium-transform_rotation=',,,' av-medium-transform_scale=',,' av-medium-transform_skew=',' av-medium-transform_translate=',,' av-small-transform_perspective='' av-small-transform_rotation=',,,' av-small-transform_scale=',,' av-small-transform_skew=',' av-small-transform_translate=',,' av-mini-transform_perspective='' av-mini-transform_rotation=',,,' av-mini-transform_scale=',,' av-mini-transform_skew=',' av-mini-transform_translate=',,' link='' target='' title_attr='' alt_attr='' img_scrset='' lazy_loading='disabled' id='' custom_class='' template_class='' av_element_hidden_in_editor='0' av_uid='av-l3smwbbb' sc_version='1.0' admin_preview_bg=''][/av_image] [av_image src='https://kriesi.at/themes/enfold-parallax/wp-content/uploads/sites/87/2022/05/kevin-canlas-e_mbJ0T0mes-unsplash-200x300.jpg' attachment='2029' attachment_size='medium' copyright='' caption='' image_size='' styling='no-styling' box_shadow='outside' box_shadow_width='20' box_shadow_color='rgba(0,0,0,0.3)' align='center' font_size='' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff' animation='curtain-reveal-ltr' animation_duration='' animation_custom_bg_color='#ffffff' animation_z_index_curtain='100' parallax_parallax='bottom_top' parallax_parallax_speed='10' av-medium-parallax_parallax='' av-medium-parallax_parallax_speed='' av-small-parallax_parallax='' av-small-parallax_parallax_speed='' av-mini-parallax_parallax='' av-mini-parallax_parallax_speed='' hover='' appearance='' css_position='absolute' css_position_location='40px,-50px,,' css_position_z_index='110' av-medium-css_position='' av-medium-css_position_location=',,,' av-medium-css_position_z_index='' av-small-css_position='' av-small-css_position_location=',,,' av-small-css_position_z_index='' av-mini-css_position='' av-mini-css_position_location=',,,' av-mini-css_position_z_index='' transform_perspective='' transform_rotation=',,,' transform_scale=',,' transform_skew=',' transform_translate=',,' av-medium-transform_perspective='' av-medium-transform_rotation=',,,' av-medium-transform_scale=',,' av-medium-transform_skew=',' av-medium-transform_translate=',,' av-small-transform_perspective='' av-small-transform_rotation=',,,' av-small-transform_scale=',,' av-small-transform_skew=',' av-small-transform_translate=',,' av-mini-transform_perspective='' av-mini-transform_rotation=',,,' av-mini-transform_scale=',,' av-mini-transform_skew=',' av-mini-transform_translate=',,' link='' target='' title_attr='' alt_attr='' img_scrset='' lazy_loading='disabled' id='' custom_class='' template_class='' av_element_hidden_in_editor='0' av_uid='av-l3smyzp5' sc_version='1.0' admin_preview_bg=''][/av_image] [/av_cell_one_half][av_cell_one_half vertical_align='middle' padding='120px' padding_sync='true' av-desktop-padding='' av-desktop-padding_sync='true' av-medium-padding='' av-medium-padding_sync='true' av-small-padding='' av-small-padding_sync='true' av-mini-padding='60px' av-mini-padding_sync='true' background='bg_color' background_color='' background_gradient_direction='vertical' background_gradient_color1='#000000' background_gradient_color2='#ffffff' background_gradient_color3='' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat' link='' linktarget='' link_hover='' mobile_display='' mobile_col_pos='0' custom_class='' template_class='' av_uid='av-l3sn2t3l' sc_version='1.0'] [av_heading heading='What we do...' tag='h2' style='blockquote modern-quote modern-centered' subheading_active='' show_icon='' icon='ue800' font='entypo-fontello' size='' av-medium-font-size-title='' av-small-font-size-title='' av-mini-font-size-title='' subheading_size='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' icon_size='' av-medium-font-size-1='' av-small-font-size-1='' av-mini-font-size-1='' color='' custom_font='' subheading_color='' seperator_color='' icon_color='' margin='' margin_sync='true' padding='10' icon_padding='10' headline_padding='' headline_padding_sync='true' link='' link_target='' id='' custom_class='' template_class='' av_uid='av-1jsd34' sc_version='1.0' admin_preview_bg=''][/av_heading] [av_textblock textblock_styling_align='' textblock_styling='' textblock_styling_gap='' textblock_styling_mobile='' size='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' font_color='' color='' id='' custom_class='' template_class='' av_uid='av-1easfk' sc_version='1.0' admin_preview_bg=''] Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam egestas a nulla a molestie. Duis a sapien ac orci dictum sodales. Vivamus vitae feugiat elit. Fusce a eros laoreet, bibendum lectus id, euismod nulla. [/av_textblock] [av_one_half first min_height='' vertical_alignment='av-align-top' space='' row_boxshadow='' row_boxshadow_width='10' row_boxshadow_color='' custom_margin='' margin='0px' mobile_breaking='' mobile_column_order='' border='' border_style='solid' border_color='' radius='' min_col_height='' padding='' svg_div_top='' svg_div_top_color='#333333' svg_div_top_width='100' svg_div_top_height='50' svg_div_top_max_height='none' svg_div_top_flip='' svg_div_top_invert='' svg_div_top_front='' svg_div_top_opacity='' svg_div_top_preview='' svg_div_bottom='' svg_div_bottom_color='#333333' svg_div_bottom_width='100' svg_div_bottom_height='50' svg_div_bottom_max_height='none' svg_div_bottom_flip='' svg_div_bottom_invert='' svg_div_bottom_front='' svg_div_bottom_opacity='' svg_div_bottom_preview='' column_boxshadow='' column_boxshadow_width='10' column_boxshadow_color='' background='bg_color' background_color='' background_gradient_direction='vertical' background_gradient_color1='#000000' background_gradient_color2='#ffffff' background_gradient_color3='' src='' background_position='top left' background_repeat='no-repeat' highlight='' highlight_size='' animation='' animation_duration='' animation_custom_bg_color='' animation_z_index_curtain='100' parallax_parallax='' parallax_parallax_speed='' av-medium-parallax_parallax='' av-medium-parallax_parallax_speed='' av-small-parallax_parallax='' av-small-parallax_parallax_speed='' av-mini-parallax_parallax='' av-mini-parallax_parallax_speed='' css_position='' css_position_location='' css_position_z_index='' av-medium-css_position='' av-medium-css_position_location='' av-medium-css_position_z_index='' av-small-css_position='' av-small-css_position_location='' av-small-css_position_z_index='' av-mini-css_position='' av-mini-css_position_location='' av-mini-css_position_z_index='' link='' linktarget='' link_hover='' title_attr='' alt_attr='' mobile_display='' mobile_col_pos='0' id='' custom_class='' template_class='' aria_label='' av_uid='av-192lqo' sc_version='1.0'] [av_animated_numbers number='212' start_from='' icon_select='no' icon='ue800' font='entypo-fontello' number_format='' circle='' circle_custom='' circle_border_style='none' circle_border_color='' circle_bg_color='' circle_border_width='' circle_size='' box_shadow='none' box_shadow_style='0px,0px,0px,0px' box_shadow_color='' circle_mobile='' font_size='' av-medium-font-size-number='' av-small-font-size-number='' av-mini-font-size-number='' font_size_description='' av-medium-font-size-text='' av-small-font-size-text='' av-mini-font-size-text='' color='' custom_color='#444444' custom_color_desc='#444444' timer='15' link='' linktarget='' sonar_effect_effect='' sonar_effect_color='' sonar_effect_duration='1' sonar_effect_scale='' sonar_effect_opac='0.5' id='' custom_class='' template_class='' av_uid='av-159r1k' sc_version='1.0' admin_preview_bg=''] Finished Projects [/av_animated_numbers] [/av_one_half][av_one_half min_height='' vertical_alignment='av-align-top' space='' row_boxshadow='' row_boxshadow_width='10' row_boxshadow_color='' custom_margin='' margin='0px' mobile_breaking='' mobile_column_order='' border='' border_style='solid' border_color='' radius='' min_col_height='' padding='' svg_div_top='' svg_div_top_color='#333333' svg_div_top_width='100' svg_div_top_height='50' svg_div_top_max_height='none' svg_div_top_flip='' svg_div_top_invert='' svg_div_top_front='' svg_div_top_opacity='' svg_div_top_preview='' svg_div_bottom='' svg_div_bottom_color='#333333' svg_div_bottom_width='100' svg_div_bottom_height='50' svg_div_bottom_max_height='none' svg_div_bottom_flip='' svg_div_bottom_invert='' svg_div_bottom_front='' svg_div_bottom_opacity='' svg_div_bottom_preview='' column_boxshadow='' column_boxshadow_width='10' column_boxshadow_color='' background='bg_color' background_color='' background_gradient_direction='vertical' background_gradient_color1='#000000' background_gradient_color2='#ffffff' background_gradient_color3='' src='' background_position='top left' background_repeat='no-repeat' highlight='' highlight_size='' animation='' animation_duration='' animation_custom_bg_color='' animation_z_index_curtain='100' parallax_parallax='' parallax_parallax_speed='' av-medium-parallax_parallax='' av-medium-parallax_parallax_speed='' av-small-parallax_parallax='' av-small-parallax_parallax_speed='' av-mini-parallax_parallax='' av-mini-parallax_parallax_speed='' css_position='' css_position_location='' css_position_z_index='' av-medium-css_position='' av-medium-css_position_location='' av-medium-css_position_z_index='' av-small-css_position='' av-small-css_position_location='' av-small-css_position_z_index='' av-mini-css_position='' av-mini-css_position_location='' av-mini-css_position_z_index='' link='' linktarget='' link_hover='' title_attr='' alt_attr='' mobile_display='' mobile_col_pos='0' id='' custom_class='' template_class='' aria_label='' av_uid='av-wq820' sc_version='1.0'] [av_animated_numbers number='4144' start_from='' icon_select='no' icon='ue800' font='entypo-fontello' number_format='' circle='' circle_custom='' circle_border_style='none' circle_border_color='' circle_bg_color='' circle_border_width='' circle_size='' box_shadow='none' box_shadow_style='0px,0px,0px,0px' box_shadow_color='' circle_mobile='' font_size='' av-medium-font-size-number='' av-small-font-size-number='' av-mini-font-size-number='' font_size_description='' av-medium-font-size-text='' av-small-font-size-text='' av-mini-font-size-text='' color='' custom_color='#444444' custom_color_desc='#444444' timer='15' link='' linktarget='' sonar_effect_effect='' sonar_effect_color='' sonar_effect_duration='1' sonar_effect_scale='' sonar_effect_opac='0.5' id='' custom_class='' template_class='' av_uid='av-t1ia0' sc_version='1.0' admin_preview_bg=''] Hours of Work [/av_animated_numbers] [/av_one_half][av_hr class='invisible' icon_select='yes' icon='ue808' font='entypo-fontello' position='center' shadow='no-shadow' height='60' custom_border='av-border-thin' custom_width='50px' custom_margin_top='30px' custom_margin_bottom='30px' custom_border_color='' custom_icon_color='' id='' custom_class='' template_class='' av_uid='av-ipoh4' sc_version='1.0' admin_preview_bg=''] [av_button label='Learn more' icon_select='yes-right-icon' icon='ue875' font='entypo-fontello' icon_hover='aviaTBicon_hover' link='manually,http://' link_target='' size='large' position='center' label_display='' title_attr='' color_options='' color='dark' custom_bg='#40bfd5' custom_font='#ffffff' btn_color_bg='theme-color' btn_custom_grad_direction='vertical' btn_custom_grad_1='#000000' btn_custom_grad_2='#ffffff' btn_custom_grad_3='' btn_custom_grad_opacity='0.7' btn_custom_bg='#444444' btn_color_bg_hover='theme-color-highlight' btn_custom_bg_hover='#444444' btn_color_font='theme-color' btn_custom_font='#ffffff' btn_color_font_hover='white' btn_custom_font_hover='#ffffff' border='' border_width='' border_width_sync='true' border_color='' border_radius='4px' border_radius_sync='true' box_shadow='' box_shadow_style='0px,0px,0px,0px' box_shadow_color='' animation='' animation_duration='' animation_custom_bg_color='' animation_z_index_curtain='100' hover_opacity='' sonar_effect_effect='' sonar_effect_color='' sonar_effect_duration='1' sonar_effect_scale='' sonar_effect_opac='0.5' css_position='' css_position_location=',,,' css_position_z_index='' av-medium-css_position='' av-medium-css_position_location=',,,' av-medium-css_position_z_index='' av-small-css_position='' av-small-css_position_location=',,,' av-small-css_position_z_index='' av-mini-css_position='' av-mini-css_position_location=',,,' av-mini-css_position_z_index='' id='' custom_class='' template_class='' av_uid='av-l3sn1k2r' sc_version='1.0' admin_preview_bg='rgb(255, 255, 255)'] [/av_cell_one_half][/av_layout_row][av_layout_row min_height_percent='' min_height_pc='25' min_height='0' border='' color='main_color' mobile='av-flex-cells' mobile_breaking='av-break-at-tablet' mobile_column_order='' id='' custom_class='' template_class='' aria_label='' av_element_hidden_in_editor='0' av_uid='av-l3sz5uq1' sc_version='1.0'] [av_cell_one_third vertical_align='middle' padding='100px,0px,100px,0px' background='bg_color' background_color='#f8f8f8' background_gradient_direction='vertical' background_gradient_color1='#000000' background_gradient_color2='#ffffff' background_gradient_color3='' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat' link='' linktarget='' link_hover='' mobile_display='' mobile_col_pos='0' custom_class='' template_class='' av_uid='av-l3syods3' sc_version='1.0'] [av_one_full first min_height='' vertical_alignment='av-align-top' space='no_margin' row_boxshadow_width='10' row_boxshadow_color='' margin='0px' margin_sync='true' mobile_breaking='' mobile_column_order='' border='' border_style='solid' border_color='' radius='' radius_sync='true' min_col_height='' padding='100px' padding_sync='true' svg_div_top='' svg_div_top_color='#333333' svg_div_top_width='100' svg_div_top_height='50' svg_div_top_max_height='none' svg_div_top_opacity='' svg_div_bottom='' svg_div_bottom_color='#333333' svg_div_bottom_width='100' svg_div_bottom_height='50' svg_div_bottom_max_height='none' svg_div_bottom_opacity='' column_boxshadow='aviaTBcolumn_boxshadow' column_boxshadow_width='15' column_boxshadow_color='rgba(0,0,0,0.3)' background='bg_color' background_color='#ffffff' background_gradient_direction='vertical' background_gradient_color1='#000000' background_gradient_color2='#ffffff' background_gradient_color3='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' highlight_size='1.1' animation='' animation_duration='' animation_custom_bg_color='' animation_z_index_curtain='100' parallax_parallax='left_right' parallax_parallax_speed='10' av-medium-parallax_parallax='none' av-medium-parallax_parallax_speed='' av-small-parallax_parallax='none' av-small-parallax_parallax_speed='' av-mini-parallax_parallax='none' av-mini-parallax_parallax_speed='' css_position='relative' css_position_location=',,,200px' css_position_z_index='' av-medium-css_position='relative' av-medium-css_position_location=',,,0' av-medium-css_position_z_index='' av-small-css_position='relative' av-small-css_position_location=',,,0' av-small-css_position_z_index='' av-mini-css_position='relative' av-mini-css_position_location=',,,0' av-mini-css_position_z_index='' link='' linktarget='' link_hover='' title_attr='' alt_attr='' mobile_display='' mobile_col_pos='0' id='' custom_class='' template_class='' aria_label='' av_uid='av-l3sys9uw' sc_version='1.0'] [av_heading heading='Last but not least...' tag='h2' style='blockquote modern-quote modern-centered' subheading_active='' show_icon='' icon='ue800' font='entypo-fontello' size='' av-medium-font-size-title='' av-small-font-size-title='' av-mini-font-size-title='' subheading_size='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' icon_size='' av-medium-font-size-1='' av-small-font-size-1='' av-mini-font-size-1='' color='' custom_font='' subheading_color='' seperator_color='' icon_color='' margin='' margin_sync='true' padding='10' icon_padding='10' headline_padding='' headline_padding_sync='true' link='' link_target='' id='' custom_class='' template_class='' av_uid='av-1jn8w' sc_version='1.0' admin_preview_bg=''][/av_heading] [av_textblock textblock_styling_align='' textblock_styling='' textblock_styling_gap='' textblock_styling_mobile='' size='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' font_color='' color='' id='' custom_class='' template_class='' av_uid='av-9rhpk' sc_version='1.0' admin_preview_bg=''] Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam egestas a nulla a molestie. Duis a sapien ac orci dictum sodales. Vivamus vitae feugiat elit. Fusce a eros laoreet, bibendum lectus id, euismod nulla. [/av_textblock] [/av_one_full][/av_cell_one_third][av_cell_two_third vertical_align='middle' padding='120px' padding_sync='true' background='bg_color' background_color='' background_gradient_direction='vertical' background_gradient_color1='#000000' background_gradient_color2='#ffffff' background_gradient_color3='' src='https://kriesi.at/themes/enfold-parallax/wp-content/uploads/sites/87/2022/05/ubiq-2Hq0WvL2Yc4-unsplash.jpg' attachment='2031' attachment_size='full' background_attachment='scroll' background_position='center center' background_repeat='stretch' link='' linktarget='' link_hover='' mobile_display='av-hide-on-mobile' mobile_col_pos='0' custom_class='' template_class='' av_uid='av-l3sypxl7' sc_version='1.0'] [/av_cell_two_third] [/av_layout_row] [av_masonry_gallery ids='2032,2033,2034,2035,2036,2037,2038,2039' caption_elements='title excerpt' caption_styling='' caption_display='always' size='fixed' orientation='av-orientation-portrait' image_size='masonry' gap='large' columns='4' av-medium-columns='' av-small-columns='2' av-mini-columns='' items='24' paginate='none' color='custom' custom_bg='#2d2d2d' animation='curtain-reveal-ttb' animation_duration='1' animation_custom_bg_color='#2d2d2d' animation_custom_bg_color_multi_list='' animation_z_index_curtain='100' overlay_fx='active' container_links='active' link_dest='' lightbox_text='' img_scrset='' lazy_loading='disabled' id='portfolio' custom_class='' template_class='' av_uid='av-l3t0hp54' sc_version='1.0'] [av_layout_row min_height_percent='' min_height_pc='25' min_height='0' border='' color='main_color' mobile='av-flex-cells' mobile_breaking='av-break-at-tablet' mobile_column_order='' id='contact' custom_class='' template_class='' aria_label='' av_element_hidden_in_editor='0' av_uid='av-mb4yw' sc_version='1.0'] [av_cell_three_fifth vertical_align='middle' padding='120px' padding_sync='true' background='bg_color' background_color='' background_gradient_direction='vertical' background_gradient_color1='#000000' background_gradient_color2='#ffffff' background_gradient_color3='' src='https://kriesi.at/themes/enfold-parallax/wp-content/uploads/sites/87/2022/05/amr-taha-UOMrO-JN-XQ-unsplash.jpg' attachment='2026' attachment_size='full' background_attachment='scroll' background_position='center center' background_repeat='stretch' link='' linktarget='' link_hover='' mobile_display='av-hide-on-mobile' mobile_col_pos='0' custom_class='' template_class='' av_uid='av-l3t0eyup' sc_version='1.0'] [/av_cell_three_fifth][av_cell_two_fifth vertical_align='middle' padding='100px,0,100px,0' background='bg_color' background_color='#2d2d2d' background_gradient_direction='vertical' background_gradient_color1='#000000' background_gradient_color2='#ffffff' background_gradient_color3='' src='https://kriesi.at/themes/enfold-parallax/wp-content/uploads/sites/87/2022/05/parallax_light.png' attachment='2024' attachment_size='full' background_attachment='scroll' background_position='center right' background_repeat='contain' link='' linktarget='' link_hover='' mobile_display='' mobile_col_pos='0' custom_class='' template_class='' av_uid='av-l3t075ls' sc_version='1.0'] [av_one_full first min_height='' vertical_alignment='av-align-top' space='no_margin' row_boxshadow_width='10' row_boxshadow_color='' margin='0px' margin_sync='true' mobile_breaking='' mobile_column_order='' border='' border_style='solid' border_color='' radius='' radius_sync='true' min_col_height='' padding='50px' padding_sync='true' svg_div_top='' svg_div_top_color='#333333' svg_div_top_width='100' svg_div_top_height='50' svg_div_top_max_height='none' svg_div_top_opacity='' svg_div_bottom='' svg_div_bottom_color='#333333' svg_div_bottom_width='100' svg_div_bottom_height='50' svg_div_bottom_max_height='none' svg_div_bottom_opacity='' column_boxshadow='aviaTBcolumn_boxshadow' column_boxshadow_width='15' column_boxshadow_color='rgba(0,0,0,0.3)' background='bg_color' background_color='#ffffff' background_gradient_direction='vertical' background_gradient_color1='#000000' background_gradient_color2='#ffffff' background_gradient_color3='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' highlight_size='1.1' animation='' animation_duration='' animation_custom_bg_color='' animation_z_index_curtain='100' parallax_parallax='right_left' parallax_parallax_speed='20' av-medium-parallax_parallax='none' av-medium-parallax_parallax_speed='' av-small-parallax_parallax='none' av-small-parallax_parallax_speed='' av-mini-parallax_parallax='none' av-mini-parallax_parallax_speed='' css_position='' css_position_location=',,,' css_position_z_index='' av-medium-css_position='' av-medium-css_position_location=',0,,' av-medium-css_position_z_index='' av-small-css_position='' av-small-css_position_location=',0,,' av-small-css_position_z_index='' av-mini-css_position='' av-mini-css_position_location=',0,,' av-mini-css_position_z_index='' link='' linktarget='' link_hover='' title_attr='' alt_attr='' mobile_display='' mobile_col_pos='0' id='' custom_class='' template_class='' aria_label='' av_uid='av-l3t08rf8' sc_version='1.0'] [av_heading heading='Get in Touch' tag='h2' style='blockquote modern-quote modern-centered' subheading_active='' show_icon='' icon='ue800' font='entypo-fontello' size='' av-medium-font-size-title='' av-small-font-size-title='' av-mini-font-size-title='' subheading_size='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' icon_size='' av-medium-font-size-1='' av-small-font-size-1='' av-mini-font-size-1='' color='' custom_font='' subheading_color='' seperator_color='' icon_color='' margin='' margin_sync='true' padding='10' icon_padding='10' headline_padding='' headline_padding_sync='true' link='' link_target='' id='' custom_class='' template_class='' av_uid='av-l3t037w6' sc_version='1.0' admin_preview_bg=''][/av_heading] [av_contact title='' button='Submit' on_send='' sent='Your message has been sent!' link='manually,http://' captcha='' captcha_theme='light' captcha_size='normal' captcha_score='0.5' (Email address hidden if logged out) ' from_email='' subject='' (Email address hidden if logged out) ' autoresponder_reply_to='' autoresponder_subject='' autorespond='' autorespond_after='' hide_labels='aviaTBhide_labels' form_align='' color='av-custom-form-color av-dark-form' heading_tag='' heading_class='' alb_description='' id='' custom_class='' template_class='' aria_label='' av_uid='av-l3t05k5j' sc_version='1.0' admin_preview_bg=''] [av_contact_field label='E-Mail' type='text' check='is_email' options='' multi_select='' av_contact_preselect='' element_display='' width='' headline_tag='h3' av_uid='av-flbq0' sc_version='1.0'][/av_contact_field] [av_contact_field label='Message' type='textarea' check='is_empty' options='' multi_select='' av_contact_preselect='' element_display='' width='' headline_tag='h3' av_uid='av-9lrow' sc_version='1.0'][/av_contact_field] [/av_contact] [/av_one_full][/av_cell_two_fifth] [/av_layout_row]Best regards,
RikardJanuary 30, 2024 at 7:58 am #1432454Did you belong to my post or to the others?
Because my workaround is based on creating an enfold button on that page directly under the easy slider element. This button will be set to display none via quick css – but is the Source for the buttons inside the slider. It will be cloned. So every styling you do to the source button will be the styling of the slider button!see an image of the layout under that example page: https://webers-testseite.de/easy-slider/
________
btw. if you do not append that cloned button to : av-slideshow-caption – but to : avia-slide-wrap
you can place that cloned button absolutely to every place you like in that slider.January 29, 2024 at 9:46 pm #1432428Topic: URGENT: homepage reverting to blog after theme update
in forum Enfoldsophiasbiti
ParticipantHi,
I recently updated to latest Enfold theme. I had exported the theme settings and reimported right after the update. But now my website homepage is showing the blog, even though I’ve tried to change this in the child theme general styling & appearance>customize>home page.
Please help as this is URGENT
Styling in some sections, like background color, buttons, tab colors, accordion colors, padding/spacing were affected too.
I am seeing all of this when not logged in as admin and looking through incognito, on different devices, or even safari; however when i am logged in as admin, everything looks fine.Also, updates I’m making on the site now are not showing. (see private)
Is there a way to rollback the theme update? I only have a backup from the staging site. Which would be fine but I’d lose a week’s worth of work, including:
– changes to content (mainly changing sentences and wording here and there)
– updated H1, H2, H3, etc. tags
– page titles and meta descriptions with AIOSEO (may be salvageable)
– added a portfolio item and privacy policy page
– changed the formatting within an accordionMaybe if there were a way to just revert the styling of the staging site without changing the content?
Please help!!
Login details below.
Thanks!
-
This topic was modified 2 years, 1 month ago by
sophiasbiti.
-
This topic was modified 2 years, 1 month ago by
sophiasbiti.
-
This topic was modified 2 years, 1 month ago by
sophiasbiti.
-
This topic was modified 2 years, 1 month ago by
sophiasbiti.
January 29, 2024 at 1:22 pm #1432384Topic: Fatal error with button row
in forum Pre Sale QuestionsAndrea
GuestHeelo,
After adding several buttons in the “button row” I saved the home page, but there was an error. From then on, it was no longer possible to access the avia block editor, because as soon as the page was opened it went into a fatal error. All the rest of the site and pages continue to function normally.
Thanks in advance
AndreaPS Perhaps you could consider publishing the following among the sites made with Enfold, I think it is very choreographic. https://www.alfieridellatuscia.it/
January 28, 2024 at 8:15 pm #1432298In reply to: woocommerce color product
Hi,
To change the color of your button, Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:.cart .single_add_to_cart_button.button { background-color: #fc6c12; }After applying the css, please clear your browser cache and check.
Best regards,
MikeJanuary 28, 2024 at 4:41 pm #1432268In reply to: Metadata element – possible to add default settings?
Günter,
Great to see your post and thank you! After 7 years using Enfold I had never used the custom element and have been using templates instead… wow, this is great! I will start using them for buttons, etc. Wonderful!However in the case of the custom element for post metadata, it appears when customizing on the content tab then gonig to the “edit metadata element” and the first box “Metadata” which says “Select the metadata you want to display, if empty or not available your selection will be skipped. On the regular (non customized element) this opens a dropdown with “add/edit metadata” and a “+” so you can stack the metadata elements like “author” and “publishing date”.
However with the custom element for post metadata, this same field is just a dropdown without the “+” so it lets you select only one element such as “Last Modified Date” but there is no way to string them together (that I can see) like there is on the original non-custom element.
Am I doing something wrong?
Thanks,
RobJanuary 24, 2024 at 8:48 pm #1431942In reply to: Color sectiom on tablets problem
Hi Lion,
I’m sorry for the delayed response.
Please add the following code to the Quick CSS in Enfold theme options > General Styling:
/* To fix the background images on tablet */ @media only screen and (max-width: 1024px) { .touch-device #top .avia-section.avia-bg-style-fixed { background-attachment: scroll; } } /* To fix the Social Share icons on mobile */ @media only screen and (max-width: 480px) { .av-social-sharing-box:not(.av-social-sharing-box-rounded, .av-social-sharing-box-buttons, .av-social-sharing-box-default, .av-social-sharing-box-minimal) .av-share-box ul li { display: inline-block; } .av-social-sharing-box-circle .av-share-box ul li, .av-social-sharing-box-icon .av-share-box ul li { margin-bottom: 2px; } }After adding the code, please make sure to clear any server-side, plugin-based, and browser caches.
Best regards,
Yigit-
This reply was modified 2 years, 1 month ago by
Yigit.
January 24, 2024 at 5:11 pm #1431922ebenanders
ParticipantHi,
on my website the wrong colors for frames and buttons are displayed – only when I am logged out and when WP Fastest Cache is active. I have already deleted the cache of the plugin and deactivated Delete old CSS and JS files under Enfold/Performance.
Thank you very much for your help!
kind regards,
ebenandersJanuary 20, 2024 at 5:23 pm #1431583In reply to: Populate via databse and add “items”?
Hi,
I believe you are referring to changing the content of the pages after they have been created by some other way instead of editing the pages themselves, such as though the database with an import file such as, xml, csv, or json. Such as your opening post.
I don’t know of any plugins that can do this.
We do have a Custom Element Templates option, and these elements have a group level ability, such as changing the text of a custom button, or the color and size this might work for you if all of your galleries and content was the same on every page.Best regards,
MikeJanuary 19, 2024 at 7:44 pm #1431520Topic: Gravity Forms Not Working in Enfold
in forum Enfolddavecate
ParticipantWe recently built a new form on our website running Enfold. For some reason, the Gravity Forms do not appear in the editor any longer. Additionally, when you access the Text Editor in a block or section, the Gravity Form button is there, but it is not active.
I have turned off all plugins. THE ONLY THING that seems to work is to turn off Enfold, both our Child Theme. The Enfold primary theme also results in the same problem. Gravity Forms does not appear to work with the publishing tools in Enfold.
In addition to the above checks, Google Chrome, Firefox and Safari all result in the same issue as well.
Can you provide any assistance to why this may happened?
January 17, 2024 at 12:23 pm #1431271In reply to: Enfold Chilg (DE) Theme on our website nrgkick.com
Hey Laura,
The code you have on your website is a Personal Token. To register to our support forum, you’d need to enter your Purchase Code.
You can go to the Downloads page ( https://themeforest.net/downloads ), click the Download button, and select the License Certificate option to find your Purchase Code:

After registering to our support forum ( https://kriesi.at/support/register/ ), you can start new threads under Enfold sub forum ( https://kriesi.at/support/forum/enfold#new-post ).
Best regards,
YigitJanuary 17, 2024 at 12:22 pm #1431270Topic: The code shows in textblock in enfold layout builder
in forum Enfoldsifix
ParticipantThe code shows in textblock in enfold layout builder and on site. It looks like this.
theme, php and wp is up to date.[et_pb_section bb_built=”1″ fullwidth=”on” _builder_version=”3.0.51″][et_pb_fullwidth_slider admin_label=”Tillbehör bild” auto=”on” auto_speed=”5000″ _builder_version=”3.0.51″ header_font=”Nunito||||” header_font_size=”46px” header_font_size_last_edited=”on|desktop” header_letter_spacing_last_edited=”on|desktop” header_line_height=”1.2em” body_line_height=”1.4em” show_arrows=”on” show_pagination=”on” parallax=”off” parallax_method=”off” remove_inner_shadow=”off” custom_button=”off” button_letter_spacing=”0″ button_icon_placement=”right” button_letter_spacing_hover=”0″ auto_ignore_hover=”off” hide_content_on_mobile=”off” hide_cta_on_mobile=”off” show_image_video_mobile=”off” disabled=”off” disabled_on=”on||” show_inner_shadow=”on” show_content_on_mobile=”on”
-
This topic was modified 2 years, 1 month ago by
sifix.
-
This topic was modified 2 years, 1 month ago by
-
AuthorSearch Results
-
Search Results
-
Topic: Google maps apikey
Hi,
We have an isseu with Google Maps. A few days ago, it stopped to work. The error on the console is “Google Maps JavaScript API warning: NoApiKeys”.
I try to fix it with this solutions but it doesn’t work:– Check if you typed the key correctly.
– If you use the restriction setting on Google try to remove that, wait a few minutes for google to apply your changes and then check again if the key works here. If it does, you probably have a syntax error in your referrer url
– If none of this helps: deactivate all plugins and then check if the API works by using the button above. If thats the case then one of your plugins is interfering.Now if I introduce the apikey, it doesn’t save on the enfold option.
Could you help me to fix the issue.
Thanks in advance,
Jordi
Hallo liebes Kriesi-Team,
ich habe folgende Anliegen, bei denen ich eine Lösung benötige:
1. Generell Button (Inhaltselement)
Es unterscheiden sich der Sendenbutton (Kontaktformular) in Größe und Hovereinstellungen zu dem Button (Inhaltselemente). Ich hätte gern generell die Buttons wie den Sendenbutton im Kontaktformular. Wie und wo kann ich das einstellen?
Als Workaround hatte ich überlegt, den Button als Custom Element anzulegen, aber der Reiter fehlt mir. (Es laufen noch 3 weitere Webseiten jeweils mit derselben Enfold-Version, bei manchen ist der Custom Reiter da, bei anderen nicht.)2. Teammember mit Social-Media bzw. zusätzliches E-Mail-Element und Telefonnummer
Ich habe hier ein zusätzliches E-Mail-Element angelegt. Die Ansicht bei Mauskontakt unterscheidet sich zu dem Social-Media-Element LinkedIn bzw. es gibt keinen Hover-Effekt. Warum?In der Mitgliedsbeschreibung habe ist eine Telefonnummer angelegt. Beispiel: +49 9721 12 12 12. Hier bekomme ich folgende Warnmeldung: Warning: Characters <,>,[,] might break ALB backend or frontend.
Ich freu mich über einen Lösungsvorschlag. Kommunikation gern in Deutsch.
Vielen Dank und beste Grüße, PetraHi,
I recently updated to latest Enfold theme. I had exported the theme settings and reimported right after the update. But now my website homepage is showing the blog, even though I’ve tried to change this in the child theme general styling & appearance>customize>home page.
Please help as this is URGENT
Styling in some sections, like background color, buttons, tab colors, accordion colors, padding/spacing were affected too.
I am seeing all of this when not logged in as admin and looking through incognito, on different devices, or even safari; however when i am logged in as admin, everything looks fine.Also, updates I’m making on the site now are not showing. (see private)
Is there a way to rollback the theme update? I only have a backup from the staging site. Which would be fine but I’d lose a week’s worth of work, including:
– changes to content (mainly changing sentences and wording here and there)
– updated H1, H2, H3, etc. tags
– page titles and meta descriptions with AIOSEO (may be salvageable)
– added a portfolio item and privacy policy page
– changed the formatting within an accordionMaybe if there were a way to just revert the styling of the staging site without changing the content?
Please help!!
Login details below.
Thanks!
Topic: Fatal error with button row
Heelo,
After adding several buttons in the “button row” I saved the home page, but there was an error. From then on, it was no longer possible to access the avia block editor, because as soon as the page was opened it went into a fatal error. All the rest of the site and pages continue to function normally.
Thanks in advance
AndreaPS Perhaps you could consider publishing the following among the sites made with Enfold, I think it is very choreographic. https://www.alfieridellatuscia.it/
Hi,
on my website the wrong colors for frames and buttons are displayed – only when I am logged out and when WP Fastest Cache is active. I have already deleted the cache of the plugin and deactivated Delete old CSS and JS files under Enfold/Performance.
Thank you very much for your help!
kind regards,
ebenandersWe recently built a new form on our website running Enfold. For some reason, the Gravity Forms do not appear in the editor any longer. Additionally, when you access the Text Editor in a block or section, the Gravity Form button is there, but it is not active.
I have turned off all plugins. THE ONLY THING that seems to work is to turn off Enfold, both our Child Theme. The Enfold primary theme also results in the same problem. Gravity Forms does not appear to work with the publishing tools in Enfold.
In addition to the above checks, Google Chrome, Firefox and Safari all result in the same issue as well.
Can you provide any assistance to why this may happened?
The code shows in textblock in enfold layout builder and on site. It looks like this.
theme, php and wp is up to date.[et_pb_section bb_built=”1″ fullwidth=”on” _builder_version=”3.0.51″][et_pb_fullwidth_slider admin_label=”Tillbehör bild” auto=”on” auto_speed=”5000″ _builder_version=”3.0.51″ header_font=”Nunito||||” header_font_size=”46px” header_font_size_last_edited=”on|desktop” header_letter_spacing_last_edited=”on|desktop” header_line_height=”1.2em” body_line_height=”1.4em” show_arrows=”on” show_pagination=”on” parallax=”off” parallax_method=”off” remove_inner_shadow=”off” custom_button=”off” button_letter_spacing=”0″ button_icon_placement=”right” button_letter_spacing_hover=”0″ auto_ignore_hover=”off” hide_content_on_mobile=”off” hide_cta_on_mobile=”off” show_image_video_mobile=”off” disabled=”off” disabled_on=”on||” show_inner_shadow=”on” show_content_on_mobile=”on”
