-
AuthorSearch Results
-
June 26, 2015 at 7:19 pm #465106
Topic: Problem with plugin DV Team
in forum EnfoldArtemegorov
ParticipantHello. There is a problem with DV Team plugin:
I bought a plugin DV Team to display information about my products in a separate window. Good plugin.
But the theme Enfold automatically scrolls down a separate plugin window by about 50 pixels when the contents of the window larger than the height of the screen and I do not see the title bar of the plugin.
June 25, 2015 at 1:23 pm #464558In reply to: make mobile version more user friendly?
well first of all i used this logo for you:
and than i put in child-theme functions.php the following:
add_filter('avf_logo_subtext', 'kriesi_logo_addition'); function kriesi_logo_addition($sub) { $sub .= "<span class='logo-title'>“…the natural route to a healthy complexion <br /> and a younger-looking you…”</span>"; return $sub; }I used a custom header hight of 170px and the non shrinking header. This makes no sense for a slogan of that length! I did it with the non sticky header – because for Logo and Slogan and Normal Navigation i found no way to set up the data-scroll-offset for “main” And take the option : “Let logo and menu position adapt to browser window”
Here you can see the result: Guennis Testseite
this is the quick css :
#top .logo,#top .logo a { overflow:visible } #top .logo img { float:left } #top .subtext { float:left; font-size:32px; font-weight:300; color:#7f0afc; position:relative; font-family:"Dancing Script" } #top .logo-title { position:absolute; line-height:normal; text-align:center; left:15px; opacity:1; top:30px; transition:opacity .4s ease-out 0; white-space:nowrap } #header { display:block; visibility:visible; position:relative; right:0; left:0; top:0; transition:all .4s ease-in-out 0; width:100%; padding:0 } .header_color .inner-container::after { clear:both; content:""; display:table } .header_color .inner-container { padding-bottom:20px; padding-top:15px; position:relative; transition:all .4s ease-in-out 0; width:100%; margin:0 auto } .header_color .logo,.header_color .main_menu { display:inline-block; text-align:left; vertical-align:middle; height:auto; transition: all 0.5s ease-in-out 0s; } .header_color .logo { margin-bottom:0 } .logo img { max-height:150px!important; margin:0 auto } .main_menu { margin-top:-85px; position:absolute; right:30px; top:50%; transition:all .4s ease-in-out 0 } .responsive #top #wrap_all .container { float:none; max-width:100%; padding-left:0; padding-right:0; width:100%; margin:0 auto } #advanced_menu_toggle,#advanced_menu_hide { right:20px; top:20px; margin:0; padding:0; color: #7f0afc; } #advanced_menu_toggle:hover, #advanced_menu_hide:hover { background-color: #7f0afc !important; color: #fff !important; } .responsive .logo img { margin:0 auto } @media only screen and (max-width: 1150px) { #top #header_main > .container,#top #header_main > .container .main_menu ul:first-child > li > a { height:auto!important; line-height:auto!important } #header_main .container { visibility:visible } .av-main-nav li > a { height:auto!important; line-height:inherit!important } .header_color .logo,.header_color .main_menu { display:block; position:relative; text-align:center; width:100%; margin:0 auto 10px; padding:0 } .logo,.logo a { display:inline-block; height:100%; position:relative; width:100% } #top .logo img { float: none; height: 200px; margin: 0 auto; max-height: 250px !important; } .header_color .main_menu { position:relative; top:21px; right:inherit; margin:0 auto 30px!important } #top .subtext { font-size: 38px; } .av-main-nav-wrap { float:left; left:50%; position:relative } .av-main-nav-wrap ul { padding-top:15px; position:relative; right:50% } #top .subtext,#top .logo-title { width:100%; left:0; top:0 } } @media only screen and (max-width: 770px) { .header_color .inner-container { padding-bottom:30px; padding-top:0 } .responsive #top .logo { display:table; float:none; height:auto!important; width:100% } .responsive #top .logo img { float:none; display:inline-block } #top .subtext { float:none; display:block; font-size:28px; text-align:center; top:-70px } #top .logo-title { left:0; line-height:normal; position:absolute; text-align:center; white-space:normal; width:100%; right:50% } }June 24, 2015 at 1:19 pm #463988In reply to: Google Map Marker Descriptions
Hi Ismael,
thank you for your reply.I found the shortcodes.js file in my Enfold download.
I took the section just relating to the Google Maps and copied it into a new file called shortcodes.js
I edited the line in question and uploaded the new shortcodes.js file to my CHILD theme.The shortcodes.js file in the PARENT theme is still as it was.
The new file shows up in Filezilla VIA FTP in the child theme but not in the Admin – Appearance – Editor
in the WordPress backend, still just functions.php and style.css .It didn’t change the map markers tooltip appearance on the front end.
Will it only work if I edit the shortcodes.js file in the parent theme?
Here is the code in the new file in the child theme. I only included the piece relating to the Google Map.
(function($)
{
“use strict”;$.AviaMapsAPI = function(options, container)
{
if(typeof window.av_google_map == ‘undefined’)
{
$.avia_utilities.log(‘Map creation stopped, var av_google_map not found’); return
}// gatehr container and map data
this.container = container;
this.$container = $( container );
this.$body = $(‘body’);
this.$mapid = this.$container.data(‘mapid’) – 1;
this.$data = window.av_google_map[this.$mapid];
this.retina = window.devicePixelRatio > 1;// set up the whole api object
this._init( options );
}$.AviaMapsAPI.apiFiles =
{
loading: false,
finished: false,
src: ‘https://maps.googleapis.com/maps/api/js?v=3.6&sensor=false&callback=aviaOnGoogleMapsLoaded’
}$.AviaMapsAPI.prototype =
{
_init: function()
{
this._bind_execution();
this._getAPI();
},_getAPI: function( )
{
//make sure the api file is loaded only once
if((typeof window.google == ‘undefined’ || typeof window.google.maps == ‘undefined’) && $.AviaMapsAPI.apiFiles.loading == false)
{
$.AviaMapsAPI.apiFiles.loading = true;
var script = document.createElement(‘script’);
script.type = ‘text/javascript’;
script.src = $.AviaMapsAPI.apiFiles.src;document.body.appendChild(script);
}
else if((typeof window.google != ‘undefined’ && typeof window.google.maps != ‘undefined’) || $.AviaMapsAPI.apiFiles.loading == false)
//else if($.AviaMapsAPI.apiFiles.finished === true)
{
this._applyMap();
}
},_bind_execution: function()
{
this.$body.on(‘av-google-maps-api-loaded’, $.proxy( this._applyMap, this) );
},_applyMap: function()
{
if(typeof this.map != ‘undefined’) return;
if(!this.$data.marker || !this.$data.marker[0] || !this.$data.marker[0].long || !this.$data.marker[0].long)
{
$.avia_utilities.log(‘Latitude or Longitude missing’, ‘map-error’);
return;
}var _self = this,
mobile_drag = $.avia_utilities.isMobile ? this.$data.mobile_drag_control : true,
zoomValue = this.$data.zoom == “auto” ? 10 : this.$data.zoom;this.mapVars = {
mapMaker: false, //mapmaker tiles are user generated content maps. might hold more info but also be inaccurate
mapTypeControl: false,
backgroundColor:’transparent’,
streetViewControl: false,
panControl: this.$data.pan_control,
zoomControl: this.$data.zoom_control,
draggable: mobile_drag,
scrollwheel: false,
zoom: zoomValue,
mapTypeId:google.maps.MapTypeId.ROADMAP,
center: new google.maps.LatLng(this.$data.marker[0].lat, this.$data.marker[0].long),
styles:[{featureType: “poi”, elementType: “labels”, stylers: [ { visibility: “off” }] }]
};this.map = new google.maps.Map(this.container, this.mapVars);
this._applyMapStyle();
if(this.$data.zoom == “auto”)
{
this._setAutoZoom();
}google.maps.event.addListenerOnce(this.map, ’tilesloaded’, function() {
_self._addMarkers();
});
},_setAutoZoom: function()
{
var bounds = new google.maps.LatLngBounds();for (var key in this.$data.marker)
{
bounds.extend( new google.maps.LatLng (this.$data.marker[key].lat , this.$data.marker[key].long) );
}this.map.fitBounds(bounds);
},_applyMapStyle: function()
{
var stylers = [], style = [], mapType;if(this.$data.hue != “”) stylers.push({hue: this.$data.hue});
if(this.$data.saturation != “”) stylers.push({saturation: this.$data.saturation});if(stylers.length)
{
style = [{
featureType: “all”,
elementType: “all”,
stylers: stylers
}, {
featureType: “poi”,
stylers: [
{ visibility: “off” }
]
}];mapType = new google.maps.StyledMapType(style, { name:”av_map_style” });
this.map.mapTypes.set(‘av_styled_map’, mapType);
this.map.setMapTypeId(‘av_styled_map’);
}
},_addMarkers: function()
{
for (var key in this.$data.marker)
{
var _self = this;(function(key, _self)
{
setTimeout(function()
{
var marker = “”;if(!_self.$data.marker[key] || !_self.$data.marker[key].long || !_self.$data.marker[key].long)
{
$.avia_utilities.log(‘Latitude or Longitude for single marker missing’, ‘map-error’);
return;
}_self.$data.LatLng = new google.maps.LatLng(_self.$data.marker[key].lat, _self.$data.marker[key].long);
var markerArgs = {
flat: false,
position: _self.$data.LatLng,
animation: google.maps.Animation.BOUNCE,
map: _self.map,
title: _self.$data.marker[key].address,
optimized: false
};//set a custom marker image if available. also set the size and reduce the marker on retina size so its sharp
if(_self.$data.marker[key].icon && _self.$data.marker[key].imagesize)
{
var size = _self.$data.marker[key].imagesize, half = “”, full = “”;if(_self.retina && size > 40) size = 40; //retina downsize to at least half the px size
half = new google.maps.Point(size / 2, size ) ; //used to position the marker
full = new google.maps.Size(size , size ) ; //marker size
markerArgs.icon = new google.maps.MarkerImage(_self.$data.marker[key].icon, null, null, half, full);
}marker = new google.maps.Marker(markerArgs);
setTimeout(function(){ marker.setAnimation(null); _self._infoWindow(_self.map, marker, _self.$data.marker[key]); },500);
},200 * (parseInt(key,10) + 1));
}(key, _self));
}
},_infoWindow: function(map, marker, data)
{
var info = $.trim(data.content);if(info != “”)
{
var infowindow = new google.maps.InfoWindow({
content: info
});infowindow.open(map,marker);
if(data.tooltip_display) infowindow.open(map,marker);
}
}}
//simple wrapper to call the api. makes sure that the api data is not applied twice
$.fn.aviaMaps = function( options )
{
return this.each(function()
{
var self = $.data( this, ‘aviaMapsApi’ );if(!self)
{
self = $.data( this, ‘aviaMapsApi’, new $.AviaMapsAPI( options, this ) );
}
});
}})( jQuery );
//this function is executed once the api file is loaded
window.aviaOnGoogleMapsLoaded = function(){ $(‘body’).trigger(‘av-google-maps-api-loaded’); $.AviaMapsAPI.apiFiles.finished = true; };June 23, 2015 at 9:46 pm #463658Topic: Responsive graphics
in forum EnfoldSimijonovic
ParticipantHello,
Hope you like long massages.
First of all I have to say that you made a great theme, but since I am novice, I will have some questions for you. Instead of just posting my questions here, I will of course first try to find my answers by my self.
I had problem with parallax background not showing images as I want. When I upload images (all of them are 1920 px wide) just part of the image is shown, and to be worse enlarged so that picture, because of low resolution, looks bad. I have found some topic where some of your customers fixed this with changing from parallax to scroll, and that worked for me also. But now all images and slider are not responsive and not scaling when I resize browser window. Can you please help me with this?
——————————————————————————————————————————————————————————————————————
Edit 01: I found that when color section is set to 25% image is shrinking, but when it is set to 50% resizing is not so obvious. I guess that it is shrinking until it covers 50% of assumed display. But can image cover 50% of desktop, but less on mobile so it can still be visible in full or almost full width? And can I somehow control how much of image is visible? Same is with full screen slider – it is stop shrinking after some size…
——————————————————————————————————————————————————————————————————————
Edit 02: When I set color section to 100% of display size, or set one to 25% and other to 75%, result is in having sections that are more than 100% of desktop display (for example, if I add arrow on the bottom it is not visible because it is under visible area). I found your answer about editing avia.js, but that didn’t help…
——————————————————————————————————————————————————————————————————————
Edit 03: When I add Fullwidth submenu and deselect Sticky Submenu, submenu is in wrong place, two sections above, in frontend (in pagebuilder is at the right place).
——————————————————————————————————————————————————————————————————————
Other thing that you already answered in https://kriesi.at/support/topic/add-custom-name-to-contact-form-autoresponder/ is how to add customer name that he/ she entered in contact form (reservation or contact) to the reply mail. If adding this code to functions.php is valid solution – great! Could you tell me where (what line, or some other orientation) should I paste that code, and how/ where to find “the name of the field you want to catch”, as you say.And, last (for now): I see that you made some really nice online order system in Enfold Classic Restaurant demo. I would like to have similar layout on my website. Is it complicated to style woocommerce to look, let’s say same like in your theme, and how could I manage multiply locations with different menus (products). I suppose that it is not problem if I have product that comes in different sizes (like big, small and medium pizza) or products that have add-on options. And is it problem that I am using one page layout.
Thank you in advance!
-
This topic was modified 10 years, 6 months ago by
Simijonovic.
June 23, 2015 at 12:47 pm #463312Topic: Automatic scroll to a selected section.
in forum Enfoldvikrantshukla1
ParticipantHi All,
The more I am working with Enfold, feels like exploring more and more options within this wonderful theme.
Just wanted to check if it is possible to add an automatic scroll functionality to the home page which scrolls after 5 seconds to the next section. Which in this case is /#av_section_2.June 18, 2015 at 8:58 am #461176In reply to: Display tables on mobile
Hi!
Thank you did it.
The forum found the code:table { overflow: auto !important; display: block !important; }Yesterday this code was working, but today it stopped scrolling :(
There are working versions?June 17, 2015 at 9:34 pm #460982Topic: Form success message isn't seen unless you scroll
in forum EnfoldSandy
ParticipantWhen a form is successfully submitted, the success message shows at the top of the page – all good. The problem is that you can’t see the message unless you know to scroll to the top of the page. When the submit button is clicked for a correctly completed form, I would like the page to auto auto scroll so the message can be seen. How is this accomplished?
June 16, 2015 at 10:11 pm #460443Topic: Infinite Scroll for Masonry
in forum Enfoldkdagnall
ParticipantHi,
I’ve only found a couple of closed threads on this issue, recommending this feature request. Apologies if I missed the development timeline posted somewhere. When OR how much would it cost to develop the infinite scrolling capability, so users don’t have to click “Load More” manually? I’m specifically looking for this feature in the Masonry Grid.
Thanks!
Kenthttps://kriesi.at/support/topic/automatic-load-more-for-portfolio-grid/#post-180699
June 11, 2015 at 8:16 am #457649elliotstiller
ParticipantI activated the Restaurant Demo of ENFOLD. I cannot get rid of the “Enfold Restaurant” picture… the picture of the moose + the word ENFOLD in caps.
When i scroll down, it automatically shows the logo that i had inserted– “Southern california muslim jewish forum”. Yet, when one lands on the page, before scrolling down, they still see the default logo for the demo– a picture of a moose + the word ENFOLD in caps.
This is one problem.
Secondly, I cannot change the COLOR of the DEFAULT menu that appears for the restaurant demo. Just like i cant get rid of the default logo, the default color for the menu items i have is WHITE, when i want it to be BLACK so it can stand out on the background that i selected.
Please advise. My website can be found here: http://www.scmjf.org/
June 10, 2015 at 8:48 am #457042In reply to: Enfold Demos
Hey!
1.
[av_section color='main_color' custom_bg='#307ecc' src='http://kriesi.at/themes/enfold-business-flat/files/2014/08/icon_bg_trans_wave.png' attachment='380' attachment_size='full' attach='scroll' position='bottom right' repeat='no-repeat' video='' video_ratio='16:9' min_height='custom' min_height_px='430px' padding='default' shadow='no-border-styling' bottom_border='border-extra-arrow-down' id='' custom_class=''] [av_heading heading='Howdy Guys!' tag='h2' style='blockquote modern-quote' size='72' subheading_active='subheading_below' subheading_size='20' padding='40' color='custom-color-heading' custom_font='#ffffff' custom_class=''] My name is Edward Nfold, my friends call me Enfold. I am designer by day and coder by night. [/av_heading] [/av_section] [av_section color='main_color' custom_bg='' src='' attachment='' attachment_size='' attach='scroll' position='top left' repeat='no-repeat' video='' video_ratio='16:9' min_height='' min_height_px='' padding='large' shadow='no-border-styling' bottom_border='border-extra-arrow-down' id='' custom_class=''] [av_one_fifth first] [/av_one_fifth][av_three_fifth] [av_heading tag='h2' padding='10' heading='Growing your Business' color='' style='blockquote modern-quote modern-centered' custom_font='' size='' subheading_active='subheading_above' subheading_size='15' custom_class=''] Devoted to [/av_heading] [av_textblock size='16' font_color='' color='' custom_class=''] <p style="text-align: center;">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, <strong>ultricies nec</strong>, pellen.</p> [/av_textblock] [/av_three_fifth][av_one_fifth] [/av_one_fifth][av_hr class='custom' height='50' shadow='no-shadow' position='center' custom_border='av-border-thin' custom_width='50px' custom_border_color='' custom_margin_top='30px' custom_margin_bottom='47px' icon_select='yes' custom_icon_color='#1e73be' icon='ue8b4' font='entypo-fontello' custom_class=''] [av_one_third first] [av_icon_box position='left_content' icon='ue80a' font='entypo-fontello' title='IconBox Title' link='' linktarget='' linkelement='' font_color='' custom_title='' custom_content='' color='custom' custom_bg='' custom_font='#307ecc' custom_border='#307ecc' custom_class=''] Aenean e penatibus et magnis dis parturient montes, nascetur ridiculus mus. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. [/av_icon_box] [/av_one_third][av_one_third] [av_icon_box position='left_content' icon='ue856' font='entypo-fontello' title='IconBox Title' link='' linktarget='' linkelement='' font_color='' custom_title='' custom_content='' color='custom' custom_bg='' custom_font='#307ecc' custom_border='#307ecc' custom_class=''] Aenean e penatibus et magnis dis parturient montes, nascetur ridiculus mus. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. [/av_icon_box] [/av_one_third][av_one_third] [av_icon_box position='left_content' icon='ue808' font='entypo-fontello' title='IconBox Title' link='' linktarget='' linkelement='' font_color='' custom_title='' custom_content='' color='custom' custom_bg='' custom_font='#307ecc' custom_border='#307ecc' custom_class=''] Aenean e penatibus et magnis dis parturient montes, nascetur ridiculus mus. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. [/av_icon_box] [/av_one_third] [/av_section] [av_section color='main_color' custom_bg='#f8f8f8' src='' attachment='' attachment_size='' attach='scroll' position='top left' repeat='no-repeat' video='' video_ratio='16:9' min_height='' min_height_px='' padding='large' shadow='no-border-styling' bottom_border='border-extra-arrow-down' id='' custom_class=''] [av_one_fifth first] [/av_one_fifth][av_three_fifth] [av_heading tag='h2' padding='10' heading='My most recent projects' color='' style='blockquote modern-quote modern-centered' custom_font='' size='' subheading_active='subheading_above' subheading_size='15' custom_class=''] Take a look at [/av_heading] [av_textblock size='16' font_color='' color='' custom_class=''] <p style="text-align: center;">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, <strong>ultricies nec</strong>, pellen.</p> [/av_textblock] [/av_three_fifth][av_one_fifth] [/av_one_fifth][av_hr class='custom' height='50' shadow='no-shadow' position='center' custom_border='av-border-thin' custom_width='50px' custom_border_color='' custom_margin_top='30px' custom_margin_bottom='47px' icon_select='yes' custom_icon_color='#1e73be' icon='ue8b4' font='entypo-fontello' custom_class=''] [av_image src='http://kriesi.at/themes/enfold-business-flat/files/2014/08/devices.jpg' attachment='387' attachment_size='full' align='center' animation='left-to-right' link='' target='' styling='' caption='' font_size='' appearance='' custom_class=''][/av_image] [/av_section] [av_masonry_entries link='portfolio_entries' sort='no' items='4' columns='4' paginate='none' size='fixed' gap='no' overlay_fx='active' caption_elements='none' caption_display='always' id='' custom_class=''] [av_section color='main_color' custom_bg='' src='' attachment='' attachment_size='' attach='scroll' position='top left' repeat='no-repeat' video='' video_ratio='16:9' min_height='' min_height_px='' padding='large' shadow='no-border-styling' bottom_border='border-extra-arrow-down' id='' custom_class=''] [av_heading tag='h2' padding='10' heading='What my customers say about me' color='' style='blockquote modern-quote modern-centered' custom_font='' size='' subheading_active='subheading_above' subheading_size='15' custom_class=''] Don't take my word for it [/av_heading] [av_hr class='custom' height='50' shadow='no-shadow' position='center' custom_border='av-border-thin' custom_width='50px' custom_border_color='' custom_margin_top='30px' custom_margin_bottom='40px' icon_select='yes' custom_icon_color='#1e73be' icon='ue8b4' font='entypo-fontello' custom_class=''] [av_testimonials style='slider_large' columns='2' interval='5' font_color='custom' custom_title='' custom_content='' custom_class=''] [av_testimonial_single src='384' name='Max Muster' subtitle='CEO' link='http://' linktext=''] Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. [/av_testimonial_single] [av_testimonial_single src='382' name='Enfold Business' subtitle='Company' link='' linktext=''] Vae sapien ut libero venenatis faucibus. Nullam quis ante. Etiam sit amet orci eget eros faucibus tincidunt. Duis leo. Sed fringilla mauris sit amet nibh. Donec sodales sagittis magna. Sed consequat, leo eget bibendum sodales, augue velit cursus nunc, quis gravida magna mi a libero. Fusce vulputate eleifend sapien. [/av_testimonial_single] [/av_testimonials] [/av_section] [av_button_big label='Get in Touch' description_pos='below' link='page,35' link_target='' icon_select='yes-right-icon' icon_hover='aviaTBicon_hover' icon='ue805' font='entypo-fontello' custom_font='#ffffff' color='custom' custom_bg='#307ecc' color_hover='custom' custom_bg_hover='#444444' custom_class=''] Let me know if you got an interesting project and want to work together! [/av_button_big]2.
[av_slideshow_full size='featured_large' stretch='' animation='fade' autoplay='false' interval='5' control_layout='av-control-minimal' src='' attachment='' attachment_size='' position='top left' repeat='no-repeat' attach='scroll'] [av_slide_full slide_type='image' id='268' video='http://' mobile_image='' video_format='' video_ratio='16:9' title='Enya Fold' custom_title_size='' custom_content_size='' caption_pos='caption_bottom' link_apply='' link='lightbox' link_target='' button_label='Click me' button_color='light' link1='manually,http://' link_target1='' button_label2='Click me' button_color2='light' link2='manually,http://' link_target2='' font_color='' custom_title='' custom_content=''] Yep - thats me... [/av_slide_full] [av_slide_full slide_type='image' id='269' video='' mobile_image='' video_format='' video_ratio='' title='Beach of Orange County' custom_title_size='' custom_content_size='' caption_pos='caption_bottom' link_apply='' link='lightbox' link_target='' button_label='' button_color='light' link1='manually,http://' link_target1='' button_label2='' button_color2='light' link2='manually,http://' link_target2='' font_color='' custom_title='' custom_content=''] Thats where I live [/av_slide_full] [/av_slideshow_full] [av_layout_row border='' min_height='0' color='main_color' mobile='av-flex-cells'] [av_cell_one_third vertical_align='top' padding='30px' padding_sync='true' background_color='' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat'] [av_heading tag='h3' padding='10' heading='What I do' color='' style='' custom_font='#ffffff' size='' subheading_active='' subheading_size='15' custom_class=''][/av_heading] [av_textblock size='' font_color='' color='#ffffff'] Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. [/av_textblock] [/av_cell_one_third][av_cell_one_third vertical_align='top' padding='30px' padding_sync='true' background_color='#f7f7f7' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat'] [av_heading heading='How I do it' tag='h3' style='' size='' subheading_active='' subheading_size='15' padding='10' color='' custom_font='#ffffff'][/av_heading] [av_textblock size='' font_color='' color=''] Aenean massa. Cum sociis natoque peontes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliq. [/av_textblock] [/av_cell_one_third][av_cell_one_third vertical_align='top' padding='30px' padding_sync='true' background_color='#eaeaea' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat'] [av_heading tag='h3' padding='10' heading='Where I live' color='' style='' custom_font='' size='' subheading_active='' subheading_size='15' custom_class=''][/av_heading] [av_textblock size='' font_color='' color=''] Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. [/av_textblock] [/av_cell_one_third][/av_layout_row][av_section color='main_color' custom_bg='#770000' src='' attachment='' attachment_size='' attach='scroll' position='top left' repeat='no-repeat' video='' video_ratio='16:9' min_height='' min_height_px='500px' padding='default' shadow='no-border-styling' bottom_border='border-extra-arrow-down' id=''] [av_one_fourth first] [av_animated_numbers number='97' icon_select='no' icon='ue800' font='entypo-fontello' font_size='' font_size_description='' link='' linktarget='no' color='font-light' custom_color='#444444'] Happy Clients [/av_animated_numbers] [/av_one_fourth][av_one_fourth] [av_animated_numbers number='12000' icon_select='no' icon='ue800' font='entypo-fontello' font_size='' font_size_description='' link='' linktarget='no' color='font-light' custom_color='#444444'] Hours of Work [/av_animated_numbers] [/av_one_fourth][av_one_fourth] [av_animated_numbers number='65000' icon_select='no' icon='ue800' font='entypo-fontello' font_size='' font_size_description='' link='' linktarget='no' color='font-light' custom_color='#444444'] Photos Taken [/av_animated_numbers] [/av_one_fourth][av_one_fourth] [av_animated_numbers number='214' icon_select='no' icon='ue800' font='entypo-fontello' font_size='' font_size_description='' link='' linktarget='no' color='font-light' custom_color='#444444'] Completed Projects [/av_animated_numbers] [/av_one_fourth] [/av_section] [av_layout_row border='' min_height='400' color='main_color' mobile='av-flex-cells'] [av_cell_one_half vertical_align='top' padding='30px' padding_sync='true' background_color='' src='http://kriesi.at/themes/enfold-photography/files/2014/08/sbg.jpg' attachment='284' attachment_size='full' background_attachment='scroll' background_position='center center' background_repeat='stretch'] [/av_cell_one_half][av_cell_one_half vertical_align='top' padding='30px' padding_sync='true' background_color='' src='http://kriesi.at/themes/enfold-photography/files/2014/08/darkened_cloudy-hills-1030x686.jpg' attachment='267' attachment_size='large' background_attachment='scroll' background_position='center center' background_repeat='stretch'] [/av_cell_one_half] [/av_layout_row] [av_layout_row border='' min_height='0' color='main_color' mobile='av-flex-cells'] [av_cell_one_half vertical_align='top' padding='40px' padding_sync='true' background_color='' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat'] [av_heading heading='Wedding Photography' tag='h3' style='' size='' subheading_active='' subheading_size='15' padding='10' color='' custom_font='#ffffff'][/av_heading] [av_textblock size='' font_color='' color='#ffffff'] Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. [/av_textblock] [/av_cell_one_half][av_cell_one_half vertical_align='top' padding='40px' padding_sync='true' background_color='#f7f7f7' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat'] [av_heading heading='Landscape Photography' tag='h3' style='' size='' subheading_active='' subheading_size='15' padding='10' color='' custom_font=''][/av_heading] [av_textblock size='' font_color='' color=''] Nulla consequat massa quis enim. Donec pede jontes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. [/av_textblock] [/av_cell_one_half] [/av_layout_row]3.
[av_section min_height='75' min_height_px='500px' padding='huge' shadow='no-border-styling' bottom_border='no-border-styling' scroll_down='aviaTBscroll_down' id='' color='main_color' custom_bg='' src='http://kriesi.at/themes/enfold-startup/files/2015/02/pricing_big.jpg' attachment='496' attachment_size='full' attach='parallax' position='top center' repeat='stretch' video='' video_ratio='16:9' overlay_enable='aviaTBoverlay_enable' overlay_opacity='0.7' overlay_color='#4ecac2' overlay_pattern='' overlay_custom_pattern=''] [av_one_fifth first] [/av_one_fifth][av_three_fifth] [av_heading heading='Plans built for every team. Start with <strong>30 days free</strong>' tag='h1' style='blockquote modern-quote modern-centered' size='40' subheading_active='' subheading_size='15' padding='10' color='custom-color-heading' custom_font='#ffffff'][/av_heading] [av_hr class='custom' height='50' shadow='no-shadow' position='center' custom_border='av-border-fat' custom_width='50px' custom_border_color='#ffffff' custom_margin_top='40px' custom_margin_bottom='40px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello'] [/av_three_fifth][av_one_fifth] [/av_one_fifth] [/av_section] [av_submenu which_menu='custom' menu='2' position='center' color='main_color' sticky='aviaTBsticky' mobile='active'] [av_submenu_item title='Top' link='manually,#top' linktarget='' button_style=''] [av_submenu_item title='Pricing' link='manually,#pricing' linktarget='' button_style=''] [av_submenu_item title='FAQ' link='manually,#faq' linktarget='' button_style=''] [av_submenu_item title='Pre Sale Questions' link='manually,#pre-sale' linktarget='' button_style='av-menu-button av-menu-button-bordered'] [/av_submenu] [av_section min_height='' min_height_px='500px' padding='default' shadow='no-border-styling' bottom_border='no-border-styling' id='pricing' color='main_color' custom_bg='' 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=''] [av_table purpose='pricing' pricing_table_design='avia_pricing_minimal' pricing_hidden_cells='avia_show_empty_cells' caption='' responsive_styling='avia_responsive_table'] [av_row row_style='avia-heading-row'][av_cell col_style='']Starter[/av_cell][av_cell col_style='']Regular[/av_cell][av_cell col_style='avia-highlight-col']Plus[/av_cell][av_cell col_style='']Enterprise[/av_cell][/av_row] [av_row row_style='avia-pricing-row'][av_cell col_style='']9.90$<small>per month</small>[/av_cell][av_cell col_style='']15$<small>per month</small>[/av_cell][av_cell col_style='avia-highlight-col']25$<small>per month</small>[/av_cell][av_cell col_style='']55$<small>per month</small>[/av_cell][/av_row] [av_row row_style=''][av_cell col_style='']1 Team Member[/av_cell][av_cell col_style='']3 Team Member[/av_cell][av_cell col_style='avia-highlight-col']5 Team Member[/av_cell][av_cell col_style='']50 Team Member[/av_cell][/av_row] [av_row row_style=''][av_cell col_style='']10 GB Data[/av_cell][av_cell col_style='']30 GB Data[/av_cell][av_cell col_style='avia-highlight-col']50 GB Data[/av_cell][av_cell col_style='']Unlimited Data[/av_cell][/av_row] [av_row row_style=''][av_cell col_style=''][/av_cell][av_cell col_style='']Time Tracking[/av_cell][av_cell col_style='avia-highlight-col']Time Tracking[/av_cell][av_cell col_style='']Time Tracking[/av_cell][/av_row] [av_row row_style=''][av_cell col_style=''][/av_cell][av_cell col_style=''][/av_cell][av_cell col_style='avia-highlight-col']E-Mail Notifications[/av_cell][av_cell col_style='']E-Mail Notifications[/av_cell][/av_row] [av_row row_style=''][av_cell col_style=''][/av_cell][av_cell col_style=''][/av_cell][av_cell col_style='avia-highlight-col'][/av_cell][av_cell col_style='']Elite Support[/av_cell][/av_row] [av_row row_style=''][av_cell col_style=''][/av_cell][av_cell col_style=''][/av_cell][av_cell col_style='avia-highlight-col'][/av_cell][av_cell col_style='']Multiple Tickets[/av_cell][/av_row] [av_row row_style='avia-button-row'][av_cell col_style=''][av_button label='Sign Up' link='manually,#' link_target='' size='x-large' position='center' icon_select='no' icon='ue800' font='entypo-fontello' color='theme-color' custom_bg='#444444' custom_font='#ffffff'] [/av_cell][av_cell col_style=''][av_button label='Sign Up' link='manually,#' link_target='' size='x-large' position='center' icon_select='no' icon='ue800' font='entypo-fontello' color='theme-color' custom_bg='#444444' custom_font='#ffffff'] [/av_cell][av_cell col_style='avia-highlight-col'][av_button label='Sign Up' link='manually,#' link_target='' size='x-large' position='center' icon_select='no' icon='ue800' font='entypo-fontello' color='theme-color' custom_bg='#444444' custom_font='#ffffff'] [/av_cell][av_cell col_style=''][av_button label='Sign Up' link='manually,#' link_target='' size='x-large' position='center' icon_select='no' icon='ue800' font='entypo-fontello' color='theme-color' custom_bg='#444444' custom_font='#ffffff'] [/av_cell][/av_row] [/av_table] [/av_section] [av_section min_height='' min_height_px='500px' padding='huge' shadow='no-border-styling' bottom_border='no-border-styling' id='faq' color='main_color' custom_bg='#fcfcfc' 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=''] [av_one_fifth first] [/av_one_fifth][av_three_fifth] [av_heading heading='Frequently Asked Questions' tag='h1' style='blockquote modern-quote modern-centered' size='40' subheading_active='' subheading_size='15' padding='10' color='' custom_font=''][/av_heading] [/av_three_fifth][av_one_fifth] [/av_one_fifth][av_hr class='custom' height='50' shadow='no-shadow' position='center' custom_border='av-border-fat' custom_width='50px' custom_border_color='#000000' custom_margin_top='70px' custom_margin_bottom='70px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello'] [av_one_half first] [av_textblock size='' font_color='' color=''] <h4>Nulla consequat massa quis enim?</h4> [av_dropcap1]D[/av_dropcap1]onec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. <h4>Vivamus elementum semper nisi?</h4> [av_dropcap1]A[/av_dropcap1]enean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus. Phasellus viverra nulla ut metus varius lallus. Phasellus viverra nulla ut metus varius laoreet. Quisque rutrum. <h4>Aenean imperdiet?</h4> [av_dropcap1]E[/av_dropcap1]tiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui. Etiam rhoncus. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum. [/av_textblock] [/av_one_half][av_one_half] [av_textblock size='' font_color='' color=''] <h4>Aenean imperdiet?</h4> Aenean commodo ligula eget dolor. Aenean <strong>massa</strong>. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. <h4>Nulla consequat massa quis enim?</h4> Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. <blockquote>Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui. Etiam rhoncus.</blockquote> Aenean commodo ligula eget dolor. Aenean <strong>massa</strong>. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. <h4></h4> [/av_textblock] [/av_one_half][av_toggle_container initial='0' mode='accordion' sort='true'] [av_toggle title='Are there additional costs?' tags='Installation, Misc'] Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. <strong>Aenean</strong> massa. Cum sociis natoque penatibus et magnis dis parturient montes, <strong>nascetur</strong> ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. [/av_toggle] [av_toggle title='Support Included?' tags='Installation'] Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. <strong>Vivamus</strong> elementum semper nisi. Aenean vulputate eleifend tellus. [/av_toggle] [av_toggle title='How to set up the theme?' tags='Pricing, Misc'] Nullam sagittis. Suspendisse pulvinar, augue ac venenatis <strong>condimentum</strong>, sem libero volutpat nibh, nec pellentesque velit pede quis nunc. Vestibulum ante <strong>ipsum</strong> primis in faucibus orci luctus et ultrices posuere cubilia Curae; Fusce id purus. Ut varius tincidunt libero. Phasellus dolor. Maecenas vestibulum mollis [/av_toggle] [av_toggle title='What about Refunds?' tags='Pricing'] Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et <strong>magnis</strong> dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. [/av_toggle] [av_toggle title='Can I change Plans or cancel at any time?' tags='Installation, Misc'] Lorem ipsum dolor sit amet, consectetuer adipiscing elit. <strong>Aenean</strong> commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. [/av_toggle] [av_toggle title='Support Included?' tags='Pre Sales'] Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. <strong>Vivamus</strong> elementum semper nisi. Aenean vulputate eleifend tellus. [/av_toggle] [av_toggle title='How to set up the theme?' tags='Installation, Pre Sales'] Nullam sagittis. Suspendisse pulvinar, augue ac venenatis <strong>condimentum</strong>, sem libero volutpat nibh, nec pellentesque velit pede quis nunc. Vestibulum ante <strong>ipsum</strong> primis in faucibus orci luctus et ultrices posuere cubilia Curae; Fusce id purus. Ut varius tincidunt libero. Phasellus dolor. Maecenas vestibulum mollis [/av_toggle] [av_toggle title='Can I change Plans or cancel at any time?' tags='Pre Sales, Pricing'] Lorem ipsum dolor sit amet, consectetuer adipiscing elit. <strong>Aenean</strong> commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. [/av_toggle] [av_toggle title='What about Refunds?' tags='Pre Sales'] Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et <strong>magnis</strong> dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. [/av_toggle] [av_toggle title='How to set up the theme?' tags='Pricing, Misc'] Nullam sagittis. Suspendisse pulvinar, augue ac venenatis <strong>condimentum</strong>, sem libero volutpat nibh, nec pellentesque velit pede quis nunc. Vestibulum ante <strong>ipsum</strong> primis in faucibus orci luctus et ultrices posuere cubilia Curae; Fusce id purus. Ut varius tincidunt libero. Phasellus dolor. Maecenas vestibulum mollis [/av_toggle] [av_toggle title='Are there additional costs?' tags=''] Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. <strong>Aenean</strong> massa. Cum sociis natoque penatibus et magnis dis parturient montes, <strong>nascetur</strong> ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. [/av_toggle] [av_toggle title='Can I change Plans or cancel at any time?' tags='Pre Sales'] Lorem ipsum dolor sit amet, consectetuer adipiscing elit. <strong>Aenean</strong> commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. [/av_toggle] [av_toggle title='Are there additional costs?' tags='Pricing'] Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. <strong>Aenean</strong> massa. Cum sociis natoque penatibus et magnis dis parturient montes, <strong>nascetur</strong> ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. [/av_toggle] [av_toggle title='Support Included?' tags='Pricing'] Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. <strong>Vivamus</strong> elementum semper nisi. Aenean vulputate eleifend tellus. [/av_toggle] [av_toggle title='What about Refunds?' tags=''] Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et <strong>magnis</strong> dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. [/av_toggle] [/av_toggle_container] [/av_section] [av_section min_height='' min_height_px='500px' padding='huge' shadow='no-border-styling' bottom_border='no-border-styling' id='pre-sale' color='main_color' custom_bg='' 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=''] [av_one_fifth first] [/av_one_fifth][av_three_fifth] [av_heading tag='h1' padding='10' heading='FAQ didn’t help? Feel free to ask us anything <strong>before purchasing</strong> here' color='' style='blockquote modern-quote modern-centered' custom_font='' size='40' subheading_active='' subheading_size='15' custom_class=''][/av_heading] [/av_three_fifth][av_one_fifth] [/av_one_fifth][av_hr class='custom' height='50' shadow='no-shadow' position='center' custom_border='av-border-fat' custom_width='50px' custom_border_color='#000000' custom_margin_top='70px' custom_margin_bottom='70px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello'] [av_contact email=' (Email address hidden if logged out) ' title='' button='Submit' on_send='' sent='Your question has been sent, we will reply as soon as possible!' link='manually,http://' subject='Pre Sale Question' autorespond='' captcha='' color=''] [av_contact_field label='Name' type='text' options='' check='is_empty' width='element_third' multi_select=''][/av_contact_field] [av_contact_field label='E-Mail' type='text' options='' check='is_email' width='element_third' multi_select=''][/av_contact_field] [av_contact_field label='Which Plan?' type='select' options='Starter, Regular, Plus, Enterprise' check='' width='element_third' multi_select=''][/av_contact_field] [av_contact_field label='Subject' type='text' check='is_empty' options='' width='' multi_select=''][/av_contact_field] [av_contact_field label='Message' type='textarea' check='is_empty' options='' width='' multi_select=''][/av_contact_field] [/av_contact] [/av_section]4.
[av_section min_height='75' min_height_px='500px' padding='huge' shadow='no-border-styling' bottom_border='no-border-styling' scroll_down='aviaTBscroll_down' id='' color='main_color' custom_bg='' src='http://kriesi.at/themes/enfold-startup/files/2015/02/cafe.jpg' attachment='489' attachment_size='full' attach='parallax' position='bottom center' repeat='stretch' video='' video_ratio='16:9' overlay_enable='aviaTBoverlay_enable' overlay_opacity='0.7' overlay_color='#4ecac2' overlay_pattern='' overlay_custom_pattern=''] [av_one_fifth first] [/av_one_fifth][av_three_fifth] [av_heading tag='h1' padding='10' heading='By far <strong>the best tool</strong> to improve your business performance! ' color='custom-color-heading' style='blockquote modern-quote modern-centered' custom_font='#ffffff' size='40' subheading_active='' subheading_size='15' custom_class=''][/av_heading] [av_hr class='custom' height='50' shadow='no-shadow' position='center' custom_border='av-border-fat' custom_width='50px' custom_border_color='#ffffff' custom_margin_top='40px' custom_margin_bottom='40px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello'] [/av_three_fifth][av_one_fifth] [/av_one_fifth] [/av_section] [av_submenu which_menu='custom' menu='2' position='center' color='main_color' sticky='aviaTBsticky' mobile='active'] [av_submenu_item title='Top' link='manually,#top' linktarget='' button_style=''] [av_submenu_item title='Introduction' link='manually,#intro' linktarget='' button_style=''] [av_submenu_item title='Demo Video' link='manually,#video' linktarget='' button_style=''] [av_submenu_item title='Features' link='manually,#features' linktarget='' button_style=''] [av_submenu_item title='Year in Numbers' link='manually,#year' linktarget='' button_style=''] [av_submenu_item title='Sign up now' link='page,320' linktarget='' button_style='av-menu-button av-menu-button-colored'] [/av_submenu] [av_layout_row border='' min_height='0' color='main_color' mobile='av-flex-cells' id='intro'] [av_cell_one_third vertical_align='middle' padding='30px' padding_sync='true' background_color='' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat'] [av_heading tag='h1' padding='10' heading='Simple and intuitive software focusing on usability & people, not paper.' color='' style='blockquote modern-quote modern-centered' custom_font='' size='40' subheading_active='' subheading_size='15' custom_class=''][/av_heading] [av_hr class='custom' height='50' shadow='no-shadow' position='center' custom_border='av-border-fat' custom_width='50px' custom_border_color='#000000' custom_margin_top='40px' custom_margin_bottom='40px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello'] [av_animated_numbers number='56.088' icon_select='no' icon='ue82d' font='entypo-fontello' font_size='70' font_size_description='19' link='' linktarget='no' color='' custom_color='#444444'] DOWNLOADS SO FAR! [/av_animated_numbers] [/av_cell_one_third][av_cell_two_third vertical_align='middle' padding='0px' padding_sync='true' background_color='#fcfcfc' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='center center' background_repeat='no-repeat'] [av_image_hotspot src='http://kriesi.at/themes/enfold-startup/files/2015/02/MBAir_big-1030x629.png' attachment='491' attachment_size='large' animation='fade-in' hotspot_layout='numbered' hotspot_tooltip_display='av-permanent-tooltip' hotspot_mobile='aviaTBhotspot_mobile'] [av_image_spot tooltip_pos='av-tt-pos-above av-tt-align-right' tooltip_width='av-tt-default-width' tooltip_style='main_color av-tooltip-shadow' link='' hotspot_color='custom' custom_bg='#4ecac2' custom_font='#ffffff' custom_pulse='' hotspot_pos='28.5,27.7'] A simple but powerful dashboard [/av_image_spot] [av_image_spot tooltip_pos='av-tt-pos-left av-tt-align-centered' tooltip_width='av-tt-default-width' tooltip_style='main_color av-tooltip-shadow' link='' hotspot_color='custom' custom_bg='#4ecac2' custom_font='#ffffff' custom_pulse='' hotspot_pos='49.2,30.2'] All important stats in one place [/av_image_spot] [av_image_spot tooltip_pos='av-tt-pos-above av-tt-align-right' tooltip_width='av-tt-large-width' tooltip_style='main_color av-tooltip-shadow' link='' hotspot_color='custom' custom_bg='#4ecac2' custom_font='#ffffff' custom_pulse='' hotspot_pos='40.5,78.6'] Tracks the performance for all key metrics [/av_image_spot] [av_image_spot tooltip_pos='av-tt-pos-below av-tt-align-centered' tooltip_width='av-tt-large-width' tooltip_style='main_color av-tooltip-shadow' link='' hotspot_color='custom' custom_bg='#4ecac2' custom_font='#ffffff' custom_pulse='' hotspot_pos='73.1,47.1'] Shows you all the new users that subscribed during the last week [/av_image_spot] [/av_image_hotspot] [/av_cell_two_third] [/av_layout_row] [av_section min_height='' min_height_px='500px' padding='huge' shadow='no-shadow' bottom_border='no-border-styling' id='video' color='main_color' custom_bg='' src='http://kriesi.at/themes/enfold-startup/files/2015/02/desat-gb_macbook.jpg' attachment='466' attachment_size='full' attach='parallax' position='top center' repeat='stretch' video='' video_ratio='16:9' overlay_enable='aviaTBoverlay_enable' overlay_opacity='0.7' overlay_color='#000000' overlay_pattern='' overlay_custom_pattern=''] [av_font_icon icon='ue897' font='entypo-fontello' style='border' caption='' link='manually,https://vimeo.com/64927358' linktarget='' size='40px' position='center' color='#ffffff'][/av_font_icon] [av_one_fifth first] [/av_one_fifth][av_three_fifth] [av_hr class='invisible' height='30' shadow='no-shadow' position='center' custom_border='av-border-thin' custom_width='50px' custom_border_color='' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='yes' custom_icon_color='' icon='ue808' font='entypo-fontello'] [av_heading tag='h1' padding='10' heading='Check out this <strong>small tutorial</strong> on how our App is set up and used' color='custom-color-heading' style='blockquote modern-quote modern-centered' custom_font='#ffffff' size='40' subheading_active='' subheading_size='15' custom_class=''][/av_heading] [/av_three_fifth][av_one_fifth] [/av_one_fifth] [/av_section] [av_layout_row border='' min_height='0' color='main_color' mobile='av-flex-cells' id='features'] [av_cell_two_third vertical_align='middle' padding='50px' padding_sync='true' background_color='' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat'] [av_one_half first] [av_icon_box position='left_content' boxed='' icon='ue86c' font='entypo-fontello' title='Easy Uploads ' link='' linktarget='' linkelement='' font_color='' custom_title='' custom_content='' color='' custom_bg='' custom_font='' custom_border=''] Loreula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. [/av_icon_box] [/av_one_half][av_one_half] [av_icon_box position='left_content' boxed='' icon='ue8b2' font='entypo-fontello' title='Cloud Sharing' link='' linktarget='' linkelement='' font_color='' custom_title='' custom_content='' color='' custom_bg='' custom_font='' custom_border=''] Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque peus. [/av_icon_box] [/av_one_half][av_one_half first] [av_icon_box position='left_content' boxed='' icon='ue80b' font='entypo-fontello' title='Unlimited Users' link='' linktarget='' linkelement='' font_color='' custom_title='' custom_content='' color='' custom_bg='' custom_font='' custom_border=''] Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque peus. [/av_icon_box] [/av_one_half][av_one_half] [av_icon_box position='left_content' boxed='' icon='ue8b9' font='entypo-fontello' title='24/7 Support' link='' linktarget='' linkelement='' font_color='' custom_title='' custom_content='' color='' custom_bg='' custom_font='' custom_border=''] Loreula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. [/av_icon_box] [/av_one_half][av_one_half first] [av_icon_box position='left_content' boxed='' icon='ue862' font='entypo-fontello' title='Time Tracking' link='' linktarget='' linkelement='' font_color='' custom_title='' custom_content='' color='' custom_bg='' custom_font='' custom_border=''] Loreula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. [/av_icon_box] [/av_one_half][av_one_half] [av_icon_box position='left_content' boxed='' icon='ue824' font='entypo-fontello' title='High Security' link='' linktarget='' linkelement='' font_color='' custom_title='' custom_content='' color='' custom_bg='' custom_font='' custom_border=''] Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque peus. [/av_icon_box] [/av_one_half][av_one_half first] [av_icon_box position='left_content' boxed='' icon='ue8de' font='entypo-fontello' title='Best Performance' link='' linktarget='' linkelement='' font_color='' custom_title='' custom_content='' color='' custom_bg='' custom_font='' custom_border=''] Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque peus. [/av_icon_box] [/av_one_half][av_one_half] [av_icon_box position='left_content' boxed='' icon='ue8f3' font='entypo-fontello' title='Social Media' link='' linktarget='' linkelement='' font_color='' custom_title='' custom_content='' color='' custom_bg='' custom_font='' custom_border=''] Loreula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. [/av_icon_box] [/av_one_half][/av_cell_two_third][av_cell_one_third vertical_align='middle' padding='50px' padding_sync='true' background_color='#fcfcfc' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='center center' background_repeat='stretch'] [av_image src='http://kriesi.at/themes/enfold-startup/files/2015/02/multi.png' attachment='493' attachment_size='full' align='center' animation='bottom-to-top' styling='' hover='' link='' target='' caption='' font_size='' appearance='' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff'][/av_image] [av_heading tag='h1' padding='10' heading='Great features that work on all stationary and mobile devices' color='' style='blockquote modern-quote modern-centered' custom_font='' size='40' subheading_active='' subheading_size='15' custom_class=''][/av_heading] [/av_cell_one_third] [/av_layout_row] [av_section min_height='75' min_height_px='500px' padding='huge' shadow='no-border-styling' bottom_border='no-border-styling' id='year' color='main_color' custom_bg='' src='http://kriesi.at/themes/enfold-startup/files/2015/02/blog.jpg' attachment='494' attachment_size='full' attach='parallax' position='bottom center' repeat='stretch' video='' video_ratio='16:9' overlay_enable='aviaTBoverlay_enable' overlay_opacity='0.5' overlay_color='#ffffff' overlay_pattern='' overlay_custom_pattern=''] [av_one_fifth first] [/av_one_fifth][av_three_fifth] [av_heading tag='h1' padding='10' heading='The app had a great year. Want to hear some numbers to convince you? <strong>Here we go:</strong>' color='' style='blockquote modern-quote modern-centered' custom_font='#ffffff' size='40' subheading_active='' subheading_size='15' custom_class=''][/av_heading] [av_hr class='custom' height='50' shadow='no-shadow' position='center' custom_border='av-border-fat' custom_width='50px' custom_border_color='#000000' custom_margin_top='40px' custom_margin_bottom='40px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello'] [/av_three_fifth][av_one_fifth] [/av_one_fifth][av_one_fourth first] [av_animated_numbers number='67' icon_select='no' icon='ue82d' font='entypo-fontello' font_size='70' font_size_description='19' link='' linktarget='no' color='font-dark' custom_color='#444444'] MAJOR UPDATES [/av_animated_numbers] [/av_one_fourth][av_one_fourth] [av_animated_numbers number='56.088' icon_select='no' icon='ue82d' font='entypo-fontello' font_size='70' font_size_description='19' link='' linktarget='no' color='font-dark' custom_color='#444444'] DOWNLOADS [/av_animated_numbers] [/av_one_fourth][av_one_fourth] [av_animated_numbers number='+88' icon_select='no' icon='ue82d' font='entypo-fontello' font_size='70' font_size_description='19' link='' linktarget='no' color='font-dark' custom_color='#444444'] NEW TEAM MEMBERS [/av_animated_numbers] [/av_one_fourth][av_one_fourth] [av_animated_numbers number='78%' icon_select='no' icon='ue82d' font='entypo-fontello' font_size='70' font_size_description='19' link='' linktarget='no' color='font-dark' custom_color='#444444'] MARKET SHARE [/av_animated_numbers] [/av_one_fourth] [/av_section]Cheers!
RikardJune 4, 2015 at 11:44 am #454379Topic: Load animated numbers when page loads
in forum Enfold110percent
ParticipantHello
Is it possible to change a setting so that the animated numbers load automatically when the page opens? Or alternatively, when they appear on screen?
At the moment, one of the numbers is appearing in the bottom 1/6th of a 15 inch laptop screen, but isn’t loading until you scroll a bit further down the page.
Thanks
June 1, 2015 at 5:48 pm #452676In reply to: Theme not working properly on ipad and iphone
Thanks Yigit. Now the mobile menu is not visible anymore. However, is it possible to make the submenu disappear and have the submenu titles displayed in the mobile menu instead? (only on smart phones of course)
The other issue I have is if I click on a submenu title, e.g. “News”, it scrolls down automatically to that section with the ID #News, but this doesn’t work on my iphone. It just reloads the homepage. Any thoughts?
Best,
MichelMay 30, 2015 at 12:39 pm #451988In reply to: Submenu to the section on the page on mobile devices
Hi again,
All your previous suggestions have not been successful.
It seems to me that only I have this problem (and Rikard?). I check on different phones (Nexus 6, Nexus 4, iPhone 6, LG L9), on different browsers (Android – Chrome, Firefox, Opera, “Next browser”, the iPad Air 2 – Chrome, Safari), and always the error is. Therefore, let me once again describe the point at which the error is visible.
You must visit the http://kramkom.pl/testy/ogienwkominku/cennik-drewna-koszty-transportu-i-dodatkowych-uslug/
Only on this page I created links like “#av_section_2”, “#av_section_5” etc.Clicking on this page submenu, for example “CENNIK I TRANSPORT > Koszty transportu” – automatically scrolls to address the link “av_section_5” and the menu will not hide – comes up with the right, and the page can be moved (left, right). Only reload the page can hide the menu. This behavior following on any mobile device and any browser (I found one exception “UC Browser” on Android).
Please specify whether you are able to fix the error or not. The problem is that this website I do for my client. If this error does not remove, I’ll have to convince him to another menu, and I do not want to do that.
Best regards,
KramkomMay 22, 2015 at 8:40 pm #448612In reply to: Cannot center popup window
Hi!
You’re missing
float: none, code should be:.white-popup { background: #fff none repeat scroll 0 0; margin: 10px auto; max-width: 650px; padding: 20px 30px; position: relative; text-align: center; float: none; }Cheers!
JosueMay 21, 2015 at 9:38 am #447626In reply to: Cannot center popup window
Hey 11digitLabs!
Maybe you can use this instead?
function pop(url) { var left = (screen.width/2)-(500/2); var top = (screen.height/2)-(300/2); if(screen.width>1024) { popupWindow = window.open( url,'popUpWindow','height=300,width=500,left='+left+',top='+top+',resizable=yes,scrollbars=yes,toolbar=no,menubar=no,location=no,directories=no,status=yes'); } else { popupWindow = window.open(url); } }Or maybe this CSS will work:
display:table; margin:0 auto;Regards,
Rikard-
This reply was modified 10 years, 7 months ago by
Rikard.
May 20, 2015 at 9:28 am #447004Topic: Cannot center popup window
in forum Enfold11digitLabs
ParticipantHello guys! First of all, congrats on this great work you have done with the theme and with the support forums.
I’ve searched around before posting this issue that I have, but didn’t find anything helpful.
I need to create a popup centered in the screen.
I have created a new color section with ID up-to-you and added the class mfp-hide
Then, on a button I have created, I added a manual link to #up-to-you
Unfortunately when I’m clicking on the button the popup appears but not horizontally centered.
Can you please help?p.s. I’ve noticed that the magnific plugin is quite old, 2013 version
Here is my code
function popup_inline() { ?> <script type="text/javascript"> jQuery(window).load(function () { jQuery('div.open-popup-link a').magnificPopup({ type: 'inline', midClick: true // Allow opening popup on middle mouse click. Always set it to true if you don't provide alternative source in href. }); }); </script> <?php } add_action( 'wp_head', 'popup_inline' );.white-popup { background: #fff none repeat scroll 0 0; margin: 40px auto; max-width: 650px; padding: 20px 30px; position: relative; text-align: center; }Hi ericpolin!
It’s because you have set a width to the logo in your CSS. I think your wanting to do this.
.header-scrolled .logo img { width: auto !important; }Regards,
ElliottMay 18, 2015 at 6:09 pm #445917In reply to: Ajax portfolio view in full screen gallery
Hi Vinicius!
So in this case instead of using the AJAX preview you want the images to open up in the magnific popup so you can scroll through them instead correct?
In this case it would be best to use the Masonry Gallery element instead as it does this automatically.
Best regards,
ElliottMay 18, 2015 at 5:18 pm #445864In reply to: Moving "back to top" button to left side
Hey kbasanti!
Thank you for using Enfold.
Please add this in the Quick CSS field:
#scroll-top-link { left: 50px; right: auto; }Best regards,
IsmaelMay 15, 2015 at 9:47 pm #445165Topic: Menu logo not scaling properly.
in forum Enfoldqeeqac
ParticipantHello
On my side of the upper logo does not decrease as you scroll through pages.
How can I fix this?
http://www.plan2.plQiuck CSS
.logo { margin-top: 14px; } .header-scrolled .logo{ margin-top: 0; } .page-id-2539 #av_section_2 .template-page.content.twelve.alpha.units { padding: 20px 0; } .avia-icon-list-container { margin-bottom: -20px; margin-top: 10; } @media only screen and (max-width: 767px) { .responsive .logo a, .responsive .logo img { max-width: 80%; height: auto !important; margin-top: 5px!important; }}May 14, 2015 at 5:37 pm #444459In reply to: Enfold shop demo – about page
Hi Sarah!
I’m not sure what your referring to but here is the shortcodes for the “Shop Demo” homepage.
[av_fullscreen size='extra_large' animation='fade' autoplay='false' interval='5' control_layout='' scroll_down='aviaTBscroll_down'] [av_fullscreen_slide slide_type='image' id='548' position='center center' video='http://' mobile_image='' video_cover='' title='New spring edition for women and men now available' custom_title_size='40' custom_content_size='18' caption_pos='caption_left' link_apply='button button-two' link='lightbox' link_target='' button_label='Women’s Collection' button_color='theme-color' link1='product_cat,13' link_target1='' button_label2='Men’s Collection' button_color2='dark' link2='product_cat,13' link_target2='' font_color='custom' custom_title='#2c2c2c' custom_content='#818181' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern=''] The new beautiful spring collection, created by star designer Konrad Kries is now available. [/av_fullscreen_slide] [av_fullscreen_slide slide_type='image' id='547' position='top left' video='http://' mobile_image='' video_cover='' title='Start with us into the new season!' custom_title_size='40' custom_content_size='18' caption_pos='caption_right' link_apply='button button-two' link='lightbox' link_target='' button_label='For Women' button_color='theme-color' link1='product_cat,12' link_target1='' button_label2='For Men' button_color2='dark' link2='product_cat,11' link_target2='' font_color='custom' custom_title='#2c2c2c' custom_content='#818181' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern=''] Those are the styles that you need for the next season. Make sure to grab your early bird coupon! [/av_fullscreen_slide] [av_fullscreen_slide slide_type='image' id='549' position='top left' video='http://' mobile_image='' video_cover='' title='Win a shopping trip<br/>with our styling experts' custom_title_size='40' custom_content_size='18' caption_pos='caption_center' link_apply='button' link='lightbox' link_target='' button_label='Sign up now!' button_color='dark' link1='page,76' link_target1='' button_label2='Click me' button_color2='light' link2='manually,http://' link_target2='' font_color='custom' custom_title='#2c2c2c' custom_content='#818181' overlay_enable='aviaTBaviaTBoverlay_enable' overlay_opacity='0.6' overlay_color='#ffffff' overlay_pattern='' overlay_custom_pattern=''] Fancy doing something a little different this autumn? Win this great shopping trip to London! We pay for everything! All expenses including flight and a meal at a gourmet restaurant of your choice will be paid for! [/av_fullscreen_slide] [av_fullscreen_slide slide_type='image' id='551' position='center right' video='' mobile_image='' video_cover='' title='Winter Collection coming soon!' custom_title_size='40' custom_content_size='18' caption_pos='caption_left' link_apply='button' link='lightbox' link_target='' button_label='Yes, notify me!' button_color='dark' link1='manually,#sign-up' link_target1='' button_label2='' button_color2='light' link2='manually,http://' link_target2='' font_color='custom' custom_title='#2c2c2c' custom_content='#818181' overlay_opacity='0.1' overlay_color='' overlay_pattern='' overlay_custom_pattern=''] Want to get notified once the new winter collection by Georgio Adriani is released? [/av_fullscreen_slide] [/av_fullscreen] [av_layout_row border='' min_height='0' color='main_color' mobile='av-flex-cells' id='collections'] [av_cell_one_fourth vertical_align='top' padding='0px' padding_sync='true' background_color='' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat'] [av_image src='http://kriesi.at/themes/enfold-shop/files/2015/03/winter-girl-small-495x400.jpg' attachment='551' attachment_size='portfolio' align='center' animation='no-animation' styling='no-styling' hover='av-hover-grow' link='product,66' target='' caption='yes' font_size='' appearance='' overlay_opacity='0.7' overlay_color='#6786a1' overlay_text_color='#ffffff'] NEW WINTER COLLECTION [/av_image] [/av_cell_one_fourth][av_cell_one_fourth vertical_align='top' padding='0px' padding_sync='true' background_color='' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat'] [av_image src='http://kriesi.at/themes/enfold-shop/files/2015/03/couple-sitting-495x400.jpg' attachment='546' attachment_size='portfolio' align='center' animation='no-animation' styling='no-styling' hover='av-hover-grow' link='product_cat,15' target='' caption='yes' font_size='' appearance='' overlay_opacity='0.7' overlay_color='#6786a1' overlay_text_color='#ffffff'] LATEST STREET CLOTHES [/av_image] [/av_cell_one_fourth][av_cell_one_fourth vertical_align='top' padding='0px' padding_sync='true' background_color='' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat'] [av_image src='http://kriesi.at/themes/enfold-shop/files/2015/03/girls-shopping-desat-495x400.jpg' attachment='549' attachment_size='portfolio' align='center' animation='no-animation' styling='no-styling' hover='av-hover-grow' link='product_cat,12' target='' caption='yes' font_size='' appearance='' overlay_opacity='0.7' overlay_color='#6786a1' overlay_text_color='#ffffff'] FRESH SPORTSWEAR [/av_image] [/av_cell_one_fourth][av_cell_one_fourth vertical_align='top' padding='0px' padding_sync='true' background_color='' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat'] [av_image src='http://kriesi.at/themes/enfold-shop/files/2015/03/hipster-girls-working-495x400.jpg' attachment='554' attachment_size='portfolio' align='center' animation='no-animation' styling='no-styling' hover='av-hover-grow' link='product_cat,10' target='' caption='yes' font_size='' appearance='' overlay_opacity='0.7' overlay_color='#6786a1' overlay_text_color='#ffffff'] FUNKY ACCECCOIRS [/av_image] [/av_cell_one_fourth] [/av_layout_row] [av_section min_height='' min_height_px='500px' padding='default' shadow='no-border-styling' bottom_border='no-border-styling' id='' color='alternate_color' custom_bg='' 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=''] [av_heading heading='Recent Top Sellers' tag='h3' style='blockquote modern-quote modern-centered' size='30' subheading_active='' subheading_size='15' padding='10' color='' custom_font=''][/av_heading] [av_productslider columns='4' items='8' offset='0' sort='0' autoplay='yes' interval='5'] [/av_section] [av_layout_row border='' min_height='0' color='alternate_color' mobile='av-flex-cells' id=''] [av_cell_one_half vertical_align='middle' padding='50px' padding_sync='true' background_color='#f8f8f8' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat'] [av_heading tag='h3' padding='10' heading='Lorem ipsum dolor sit amet, consectetuer adipiscing elit. ' color='' style='blockquote modern-quote' custom_font='' size='30' subheading_active='' subheading_size='15' custom_class=''][/av_heading] [av_textblock size='' font_color='' color=''] Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. [/av_textblock] [av_productgrid columns='3' items='6' offset='0' sort='0' paginate='no'] [/av_cell_one_half][av_cell_one_half vertical_align='top' padding='0px' padding_sync='true' background_color='#f8f8f8' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat'] [av_image_hotspot src='http://kriesi.at/themes/enfold-shop/files/2015/03/lady-in-blue.jpg' attachment='556' attachment_size='full' animation='fade-in' hotspot_layout='numbered' hotspot_tooltip_display='av-permanent-tooltip' hotspot_mobile='aviaTBhotspot_mobile'] [av_image_spot tooltip_pos='av-tt-pos-left av-tt-align-centered' tooltip_width='av-tt-default-width' tooltip_style='main_color av-tooltip-shadow' link='product,65' hotspot_color='custom' custom_bg='#6786a1' custom_font='#ffffff' custom_pulse='' hotspot_pos='6.5,56.9'] Hairdo by Roger Ramoni [/av_image_spot] [av_image_spot tooltip_pos='av-tt-pos-left av-tt-align-centered' tooltip_width='av-tt-default-width' tooltip_style='main_color av-tooltip-shadow' link='product,257' hotspot_color='custom' custom_bg='#6786a1' custom_font='#ffffff' custom_pulse='' hotspot_pos='19.8,53'] Glasses by Victor Secreni [/av_image_spot] [av_image_spot tooltip_pos='av-tt-pos-left av-tt-align-centered' tooltip_width='av-tt-default-width' tooltip_style='main_color av-tooltip-shadow' link='product,262' hotspot_color='custom' custom_bg='#6786a1' custom_font='#ffffff' custom_pulse='' hotspot_pos='38.9,58.4'] Nail polish by Sandra Sounders [/av_image_spot] [av_image_spot tooltip_pos='av-tt-pos-below av-tt-align-centered' tooltip_width='av-tt-default-width' tooltip_style='main_color av-tooltip-shadow' link='product,495' hotspot_color='' custom_bg='' custom_font='' custom_pulse='' hotspot_pos='70,54.3'] "Red Velvet" Dress by Varia Vereni [/av_image_spot] [/av_image_hotspot] [/av_cell_one_half] [/av_layout_row] [av_section min_height='' min_height_px='500px' padding='large' shadow='no-border-styling' bottom_border='no-border-styling' id='' color='alternate_color' custom_bg='' 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=''] [av_one_half first] [av_icon_box position='left_content' boxed='' icon='ue8b1' font='entypo-fontello' title='Worldwide delivery' link='' linktarget='' linkelement='' font_color='' custom_title='' custom_content='' color='' custom_bg='' custom_font='' custom_border=''] Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. [/av_icon_box] [/av_one_half][av_one_half] [av_icon_box position='left_content' boxed='' icon='ue8e2' font='entypo-fontello' title='Free shipping' link='' linktarget='' linkelement='' font_color='' custom_title='' custom_content='' color='' custom_bg='' custom_font='' custom_border=''] Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. [/av_icon_box] [/av_one_half][av_one_half first] [av_icon_box position='left_content' boxed='' icon='ue824' font='entypo-fontello' title='Secure Payment' link='' linktarget='' linkelement='' font_color='' custom_title='' custom_content='' color='' custom_bg='' custom_font='' custom_border=''] Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. [/av_icon_box] [/av_one_half][av_one_half] [av_icon_box position='left_content' boxed='' icon='ue8b9' font='entypo-fontello' title='24/7 Support' link='' linktarget='' linkelement='' font_color='' custom_title='' custom_content='' color='' custom_bg='' custom_font='' custom_border=''] enean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus. [/av_icon_box] [/av_one_half] [/av_section] [av_section min_height='' min_height_px='500px' padding='default' shadow='no-shadow' bottom_border='no-border-styling' id='sign-up' color='main_color' custom_bg='' src='http://kriesi.at/themes/enfold-shop/files/2015/03/hipster-girls-working.jpg' attachment='554' attachment_size='full' attach='parallax' position='top center' repeat='stretch' video='' video_ratio='16:9' overlay_enable='aviaTBoverlay_enable' overlay_opacity='0.7' overlay_color='#6786a1' overlay_pattern='' overlay_custom_pattern=''] [av_heading tag='h3' padding='10' heading='Want to stay up to date? Subscribe to our Newsletter!' color='custom-color-heading' style='blockquote modern-quote modern-centered' custom_font='#ffffff' size='30' subheading_active='' subheading_size='15' custom_class=''][/av_heading] [av_one_fifth first] [/av_one_fifth][av_three_fifth] [av_contact email=' (Email address hidden if logged out) ' title='' button='Subscribe' on_send='' sent='Thanks! You will receive an email soon!' link='page,74' subject='' autorespond='' captcha='' hide_labels='aviaTBhide_labels' color='av-custom-form-color av-light-form'] [av_contact_field label='Name' type='text' options='' check='is_empty' width='element_third' multi_select=''][/av_contact_field] [av_contact_field label='E-Mail' type='text' options='' check='is_email' width='element_third' multi_select=''][/av_contact_field] [/av_contact] [/av_three_fifth][av_one_fifth] [/av_one_fifth][/av_section]Can you take a screenshot and highlight the exact area your talking about? It sounds like your talking about the “overlay” option for color sections but there is none on that page.
Cheers!
ElliottMay 13, 2015 at 7:59 am #443585In reply to: Custom auto scroll plugin
Hi Rikard, this is what he said:
It is related to your theme. There is a custom auto scroll plugin on your website (because of the one page website structure). So I don’t have any idea about how it is working. You can contact your theme’s author. There may be an option to turn it off.
Thanks
May 13, 2015 at 5:23 am #443523Hey!
The problem with the partner logo element in your page is, the images have different size and proportions. You’re expecting the images to resize automatically. Look at the demo, http://kriesi.at/themes/enfold/, scroll at the very bottom of the page to see the logo/partner slider element. The slider doesn’t look that consistent by accident. All the logo images have been resized to a uniform dimension (705x350px) before using them in the element.
Regards,
IsmaelMay 12, 2015 at 10:50 am #442909In reply to: Custom auto scroll plugin
Hi Rikard
Thanks for taking a look. ideally i’d like no movement at all – the plugin DV Team will place the popup in the centre so by removing any auto scroll should work.
Thank
RichardMay 12, 2015 at 10:40 am #442901In reply to: Mobile Header not scrolling
Hey Rikard,
Thanks for your reply.
I remember having all the sites on mobile always showing up the sticky header and also the squared arrow on the bottom right corner of the screen that if tapped once you reached the bottom of the page would have scrolled the page automatically back up to the top.
Now they’re all disappeared on every site I built with enfold.Can you explain the reasoning behind that change? I honestly found the sticky header useful and would like to understand why I don’t see it anymore and if there is a way to get it back. And/or if there is a way to get the squared arrouw button on the bootm right corner of the mobile page to display again.
Thanks,
Antonio
May 8, 2015 at 8:23 pm #441757In reply to: Testimonial carousel expanding
Hi luckylobo10!
It looks like you have the testimonials inside a color section. Try setting a custom pixel height for the color section so it’s height does not change.
We have a smooth scrolling effect. It will automatically be used when you link to your color sections by giving them IDs.
Cheers!
ElliottMay 8, 2015 at 3:48 pm #441572Topic: Custom auto scroll plugin
in forum Enfoldraslade
ParticipantHi there
I’ve installed a plugin on the site which works fine except there’s some custom scrolling going on. I’ve been in touch with the plugin developer and they say it’s to do with the theme? Could you recommend a fix?
Thanks
RichardMay 6, 2015 at 4:37 am #440088In reply to: Product category page banner
Hey!
I’m unsure how you would like it to look like, but you can use this CSS if you want to try out yourself:
.av-parallax.avia-full-stretch.enabled-parallax.active-parallax{ top: auto !important; transform: translate3d(0px, 92px, 0px) !important; height: 372px !important; background-image: url(https://precisiongovernors-com.securec59.ezhostingserver.com/wp-content/uploads/2015/04/Actuators-bg2-1500x415.jpg) !important; background-attachment: scroll !important; background-position: 50% 50% !important; background-repeat: no-repeat !important; }Cheers!
RikardMay 1, 2015 at 12:15 pm #437985Topic: Logo Styling Problems on mobile Devices
in forum EnfoldAmselus
ParticipantHi,
first of all, great theme and your Forum work, really great stuff. I have found so much helpfull content over the time. Great great work.
For my acutal project I have some quetsions/issues I hope you can help.
As you see on the website, the logo should be vertical in this size, more height than width. So it must have bigger size, that we can read the text below the logo.
I have it adapted via Quick CSS, that it float into the layer and dissapear if i scroll down.
Unfortunately this styling works on iPad oder iPhone (6, iOS 6), i think also on other mobile devices (like Android Tablets).How I have to style the logo, that it dissapear also on the mobile devices when i scroll down?
How can I configurate it, that it minimize automatically to the correct screen size?Thanks in advance.
Regards
AndreasApril 30, 2015 at 10:44 pm #437835Topic: Product category page banner
in forum Enfoldignitionstudio
ParticipantI’ve enabled the shop banner and set unique banner images for my product categories and its appearing fine, however it looks as though the image is being stretched to fill both 100% of the width and height of the browser window and as a result, is cutting off a large portion of the images that I’ve created. How can I alter the CSS for these banners to just fill 100% of the width and not the height as well? It looks as if the CSS is added inline on the div tag.
<div class="av-parallax avia-full-stretch active-parallax enabled-parallax " data-avia-parallax-ratio="0.3" style="background-image: url(https://site.com/wp-content/uploads/2015/04/image.jpg); background-attachment: scroll; top: auto; -webkit-transform: translate3d(0px, 170px, 0px); height: 356px; background-position: 50% 50%; background-repeat: no-repeat no-repeat;"></div> -
This topic was modified 10 years, 6 months ago by
-
AuthorSearch Results
-
Search Results
-
Topic: Problem with plugin DV Team
Hello. There is a problem with DV Team plugin:
I bought a plugin DV Team to display information about my products in a separate window. Good plugin.
But the theme Enfold automatically scrolls down a separate plugin window by about 50 pixels when the contents of the window larger than the height of the screen and I do not see the title bar of the plugin.
Topic: Responsive graphics
Hello,
Hope you like long massages.
First of all I have to say that you made a great theme, but since I am novice, I will have some questions for you. Instead of just posting my questions here, I will of course first try to find my answers by my self.
I had problem with parallax background not showing images as I want. When I upload images (all of them are 1920 px wide) just part of the image is shown, and to be worse enlarged so that picture, because of low resolution, looks bad. I have found some topic where some of your customers fixed this with changing from parallax to scroll, and that worked for me also. But now all images and slider are not responsive and not scaling when I resize browser window. Can you please help me with this?
——————————————————————————————————————————————————————————————————————
Edit 01: I found that when color section is set to 25% image is shrinking, but when it is set to 50% resizing is not so obvious. I guess that it is shrinking until it covers 50% of assumed display. But can image cover 50% of desktop, but less on mobile so it can still be visible in full or almost full width? And can I somehow control how much of image is visible? Same is with full screen slider – it is stop shrinking after some size…
——————————————————————————————————————————————————————————————————————
Edit 02: When I set color section to 100% of display size, or set one to 25% and other to 75%, result is in having sections that are more than 100% of desktop display (for example, if I add arrow on the bottom it is not visible because it is under visible area). I found your answer about editing avia.js, but that didn’t help…
——————————————————————————————————————————————————————————————————————
Edit 03: When I add Fullwidth submenu and deselect Sticky Submenu, submenu is in wrong place, two sections above, in frontend (in pagebuilder is at the right place).
——————————————————————————————————————————————————————————————————————
Other thing that you already answered in https://kriesi.at/support/topic/add-custom-name-to-contact-form-autoresponder/ is how to add customer name that he/ she entered in contact form (reservation or contact) to the reply mail. If adding this code to functions.php is valid solution – great! Could you tell me where (what line, or some other orientation) should I paste that code, and how/ where to find “the name of the field you want to catch”, as you say.And, last (for now): I see that you made some really nice online order system in Enfold Classic Restaurant demo. I would like to have similar layout on my website. Is it complicated to style woocommerce to look, let’s say same like in your theme, and how could I manage multiply locations with different menus (products). I suppose that it is not problem if I have product that comes in different sizes (like big, small and medium pizza) or products that have add-on options. And is it problem that I am using one page layout.
Thank you in advance!
Hi All,
The more I am working with Enfold, feels like exploring more and more options within this wonderful theme.
Just wanted to check if it is possible to add an automatic scroll functionality to the home page which scrolls after 5 seconds to the next section. Which in this case is /#av_section_2.Topic: Infinite Scroll for Masonry
Hi,
I’ve only found a couple of closed threads on this issue, recommending this feature request. Apologies if I missed the development timeline posted somewhere. When OR how much would it cost to develop the infinite scrolling capability, so users don’t have to click “Load More” manually? I’m specifically looking for this feature in the Masonry Grid.
Thanks!
Kenthttps://kriesi.at/support/topic/automatic-load-more-for-portfolio-grid/#post-180699
I activated the Restaurant Demo of ENFOLD. I cannot get rid of the “Enfold Restaurant” picture… the picture of the moose + the word ENFOLD in caps.
When i scroll down, it automatically shows the logo that i had inserted– “Southern california muslim jewish forum”. Yet, when one lands on the page, before scrolling down, they still see the default logo for the demo– a picture of a moose + the word ENFOLD in caps.
This is one problem.
Secondly, I cannot change the COLOR of the DEFAULT menu that appears for the restaurant demo. Just like i cant get rid of the default logo, the default color for the menu items i have is WHITE, when i want it to be BLACK so it can stand out on the background that i selected.
Please advise. My website can be found here: http://www.scmjf.org/
Hello
Is it possible to change a setting so that the animated numbers load automatically when the page opens? Or alternatively, when they appear on screen?
At the moment, one of the numbers is appearing in the bottom 1/6th of a 15 inch laptop screen, but isn’t loading until you scroll a bit further down the page.
Thanks
Topic: Cannot center popup window
Hello guys! First of all, congrats on this great work you have done with the theme and with the support forums.
I’ve searched around before posting this issue that I have, but didn’t find anything helpful.
I need to create a popup centered in the screen.
I have created a new color section with ID up-to-you and added the class mfp-hide
Then, on a button I have created, I added a manual link to #up-to-you
Unfortunately when I’m clicking on the button the popup appears but not horizontally centered.
Can you please help?p.s. I’ve noticed that the magnific plugin is quite old, 2013 version
Here is my code
function popup_inline() { ?> <script type="text/javascript"> jQuery(window).load(function () { jQuery('div.open-popup-link a').magnificPopup({ type: 'inline', midClick: true // Allow opening popup on middle mouse click. Always set it to true if you don't provide alternative source in href. }); }); </script> <?php } add_action( 'wp_head', 'popup_inline' );.white-popup { background: #fff none repeat scroll 0 0; margin: 40px auto; max-width: 650px; padding: 20px 30px; position: relative; text-align: center; }Hello
On my side of the upper logo does not decrease as you scroll through pages.
How can I fix this?
http://www.plan2.plQiuck CSS
.logo { margin-top: 14px; } .header-scrolled .logo{ margin-top: 0; } .page-id-2539 #av_section_2 .template-page.content.twelve.alpha.units { padding: 20px 0; } .avia-icon-list-container { margin-bottom: -20px; margin-top: 10; } @media only screen and (max-width: 767px) { .responsive .logo a, .responsive .logo img { max-width: 80%; height: auto !important; margin-top: 5px!important; }}Topic: Custom auto scroll plugin
Hi there
I’ve installed a plugin on the site which works fine except there’s some custom scrolling going on. I’ve been in touch with the plugin developer and they say it’s to do with the theme? Could you recommend a fix?
Thanks
RichardHi,
first of all, great theme and your Forum work, really great stuff. I have found so much helpfull content over the time. Great great work.
For my acutal project I have some quetsions/issues I hope you can help.
As you see on the website, the logo should be vertical in this size, more height than width. So it must have bigger size, that we can read the text below the logo.
I have it adapted via Quick CSS, that it float into the layer and dissapear if i scroll down.
Unfortunately this styling works on iPad oder iPhone (6, iOS 6), i think also on other mobile devices (like Android Tablets).How I have to style the logo, that it dissapear also on the mobile devices when i scroll down?
How can I configurate it, that it minimize automatically to the correct screen size?Thanks in advance.
Regards
AndreasTopic: Product category page banner
I’ve enabled the shop banner and set unique banner images for my product categories and its appearing fine, however it looks as though the image is being stretched to fill both 100% of the width and height of the browser window and as a result, is cutting off a large portion of the images that I’ve created. How can I alter the CSS for these banners to just fill 100% of the width and not the height as well? It looks as if the CSS is added inline on the div tag.
<div class="av-parallax avia-full-stretch active-parallax enabled-parallax " data-avia-parallax-ratio="0.3" style="background-image: url(https://site.com/wp-content/uploads/2015/04/image.jpg); background-attachment: scroll; top: auto; -webkit-transform: translate3d(0px, 170px, 0px); height: 356px; background-position: 50% 50%; background-repeat: no-repeat no-repeat;"></div>

