Viewing 30 results - 181 through 210 (of 237 total)
  • Author
    Search Results
  • #570523
    Pas7o
    Participant

    hi, i use the content block “flap” to show all my products. into the cont of the first flap i put this code:

    [av_one_third first]
    [av_image src='http://www.pmm-montresor.com/wp-content/uploads/2016/01/maxi-lem-favicon.png' attachment='382' attachment_size='full' align='center' styling='no-styling' hover='' link='post,107' target='_blank' caption='' font_size='' appearance='' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff' animation='no-animation'][/av_image]
    <center><strong><span style="font-size: 20px;">MAXI-LEM</span></strong></center>
    [/av_one_third]
    
    [av_one_third]
    [av_image src='http://www.pmm-montresor.com/wp-content/uploads/2016/01/maxi-lem-f-1.png' attachment='411' attachment_size='full' align='center' styling='no-styling' hover='' link='post,114' target='_blank' caption='' font_size='' appearance='' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff' animation='no-animation'][/av_image]
    <center><strong><span style="font-size: 20px;">MAXI-LEM F</span></strong></center>
    [/av_one_third]
    
    [av_one_third]
    [av_image src='http://www.pmm-montresor.com/wp-content/uploads/2016/01/maxi-lem-special-1.png' attachment='413' attachment_size='full' align='center' styling='no-styling' hover='' link='post,119' target='_blank' caption='' font_size='' appearance='' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff' animation='no-animation'][/av_image]
    <center><strong><span style="font-size: 20px;">MAXI-LEM SPECIAL</span></strong></center>
    [/av_one_third]

    and this is the page:
    http://www.pmm-montresor.com/it/prova/

    why the contents aren’t in the same row? thanks

    • This topic was modified 9 years, 11 months ago by Pas7o.
    #568696

    Hey!

    We are working on your issue please stick around we will update the results here soon.

    This effect can be easily re-created in Enfolds Advanced Layout Builder.

    Goto Edit Page > Advanced Layout Builder > Content Elements > Color Section

    In color section edit options select height 100%

    Insert a text box and add your logo in it.

    Disable sidebar and footer.

    or use the below short code

    [av_section min_height='100' min_height_px='500px' padding='small' shadow='no-border-styling' bottom_border='no-border-styling' id='' color='main_color' custom_bg='#000000' 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_image src='http://localhost/_proj/enfold/wp-content/uploads/2016/01/Avalanche-BW1.jpg' attachment='2975' attachment_size='full' align='center' styling='' hover='av-hover-grow' link='' target='' caption='' font_size='' appearance='' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff' animation='fade-in'][/av_image]
    [/av_section]
    

    Add an extra textbox and write your custom code for email icon.

    Once you get this far please get back to us with your admin login info in a private message so if you have any issue we can help you with it.

    Cheers!
    Vinay

    • This reply was modified 9 years, 11 months ago by Vinay.
    #567822

    This worked for #1 but #2 is still a problem

    “2. The CSS removed the hover animation indicating that the photo is clickable. there is no hover effect now.”

    How do I get the hover effect back so the website visitors know it is a clickable image? When hovering it used to turn white and have an icon. It is gone now.

    • This reply was modified 9 years, 11 months ago by Jasmer.
    #565663

    Hello.

    Applied this code to the Quick CSS field:
    .avia-image-container {
    pointer-events: none !important;
    }

    The problem is that the link of the image is removed with this command. I want to maintain the link in the image, but not the hover effect (the icon and animation). As soon as I applied the CSS command, the layer problem disappeared, so I think its some kind of bug. I’ve not changed the “Linked Image Overlay” never, so it has the default configuration.

    #565288

    Hi!

    1. Changed the bg color for the middle.

    2. To edit animation click on Edit icon on the 1/1 layout grid and select none or any other effect you like.

    3. This requires exactly equal amount of text in the paragraph section. However now we are using a pseudo element hack to cover the bottom but the background will show when you hover over it. To make it work absolutely perfectly everywhere it will take a lot of customization if you like to give it a try check search for “css equal height columns ”

    Best regards,
    Vinay

    #541572

    In reply to: Icon hover effect

    You’ve pointed me in the right direction I shall give it a go :)

    Many thanks

    EDIT

    posting mainly due to the fact that with your direction I figured it out. May come in useful for others…

    Rather than the white sonar effect using the code below as an example you can set it to any color on any icon.
    First give the icon a customer css class ( in this case blue-icon and green-icon)
    Then the following css will color the sonar effect accordingly

    /*sonar effect blue*/
    .blue-icon a:hover:after {
    -webkit-animation: sonarblue 1s ease-out!important;
    -moz-animation: sonarblue 1s ease-out!important;
    animation: sonarblue 1s ease-out!important;
    }
    
    @-webkit-keyframes sonarblue {
    	0% {opacity: 0.3;}
    	40% {opacity: 0.5;box-shadow: 0 0 0 2px rgba(0,57,118,0.1), 0 0 10px 10px #fff, 0 0 0 10px rgba(0,57,118,0.5);}
    	100% {box-shadow: 0 0 0 2px rgba(0,57,118,0.1), 0 0 10px 10px #fff, 0 0 0 10px rgba(0,57,118,0.5);-webkit-transform: scale(1.5);opacity: 0;}
    }
    @-moz-keyframes sonarblue {
    	0% {opacity: 0.3;}
    	40% {opacity: 0.5;box-shadow: 0 0 0 2px rgba(0,57,118,0.1), 0 0 10px 10px #fff, 0 0 0 10px rgba(0,57,118,0.5);}
    	100% {box-shadow: 0 0 0 2px rgba(0,57,118,0.1), 0 0 10px 10px #fff, 0 0 0 10px rgba(0,57,118,0.5);-moz-transform: scale(1.5);opacity: 0;}
    }
    @keyframes sonarblue {
    	0% {opacity: 0.3;}
    	40% {opacity: 0.5;box-shadow: 0 0 0 2px rgba(0,57,118,0.1), 0 0 10px 10px #fff, 0 0 0 10px rgba(0,57,118,0.5);}
    	100% {box-shadow: 0 0 0 2px rgba(0,57,118,0.1), 0 0 10px 10px #fff, 0 0 0 10px rgba(0,57,118,0.5);transform: scale(1.5);opacity: 0;}
    }
    
    /*sonar effect green*/
    .green-icon a:hover:after {
    -webkit-animation: sonargreen 1s ease-out!important;
    -moz-animation: sonargreen 1s ease-out!important;
    animation: sonargreen 1s ease-out!important;
    }
    
    @-webkit-keyframes sonargreen {
    	0% {opacity: 0.3;}
    	40% {opacity: 0.5;box-shadow: 0 0 0 2px rgba(0,170,103,0.1), 0 0 10px 10px #fff, 0 0 0 10px rgba(0,170,103,0.5);}
    	100% {box-shadow: 0 0 0 2px rgba(0,170,103,0.1), 0 0 10px 10px #fff, 0 0 0 10px rgba(0,170,103,0.5);-webkit-transform: scale(1.5);opacity: 0;}
    }
    @-moz-keyframes sonargreen {
    	0% {opacity: 0.3;}
    	40% {opacity: 0.5;box-shadow: 0 0 0 2px rgba(0,170,103,0.1), 0 0 10px 10px #fff, 0 0 0 10px rgba(0,170,103,0.5);}
    	100% {box-shadow: 0 0 0 2px rgba(0,170,103,0.1), 0 0 10px 10px #fff, 0 0 0 10px rgba(0,170,103,0.5);-moz-transform: scale(1.5);opacity: 0;}
    }
    @keyframes sonargreen {
    	0% {opacity: 0.3;}
    	40% {opacity: 0.5;box-shadow: 0 0 0 2px rgba(0,170,103,0.1), 0 0 10px 10px #fff, 0 0 0 10px rgba(0,170,103,0.5);}
    	100% {box-shadow: 0 0 0 2px rgba(0,170,103,0.1), 0 0 10px 10px #fff, 0 0 0 10px rgba(0,170,103,0.5);transform: scale(1.5);opacity: 0;}
    }
    • This reply was modified 10 years, 1 month ago by tjswarbs78.
    #540708
    pandafxx
    Participant

    Hi,

    No matter whether I import or theme or just view website, only html shows up in the body of my website.

    “[fullwidth background_color=”yes” background_image=”” background_parallax=”fixed” enable_mobile=”no” parallax_speed=”0.3″ background_repeat=”no-repeat” background_position=”left top” video_url=”” video_aspect_ratio=”16:9″ video_webm=”” video_mp4=”” video_ogv=”” video_preview_image=”” overlay_color=”” overlay_opacity=”0.5″ video_mute=”yes” video_loop=”yes” fade=”no” border_size=”0px” border_color=”” border_style=”solid” padding_top=”80px” padding_bottom=”0px” padding_left=”30px” padding_right=”30px” hundred_percent=”no” equal_height_columns=”no” hide_on_mobile=”no” menu_anchor=”” class=”” id=””][content_boxes layout=”icon-on-top” title_size=”” icon_circle=”” icon_size=”” icon_align=”left” columns=”3″ margin_top=”” margin_bottom=”” class=”” id=””][content_box title=”Responsive Design” icon=”” backgroundcolor=”” iconcolor=”#6796bf” circlecolor=”#ffffff” circlebordercolor=”#6796bf” iconflip=”” iconrotate=”” iconspin=”no” image=”http://localhost:8888/WP/wp-content/uploads/2014/10/icon_devices.png” image_width=”73″ image_height=”70″ link=”#” linktext=”” linktarget=”_self” animation_type=”0″ animation_direction=”down” animation_speed=”0.1″] Lorem ipsum dolor sit amet, consectetur adipiscing elit sed eiusmod tempor incididui labore dolore magna sadipieds etas supra lorems dolores.[/content_box][content_box title=”Premium Sliders” icon=”” backgroundcolor=”” iconcolor=”#6796bf” circlecolor=”#ffffff” circlebordercolor=”#6796bf” iconflip=”” iconrotate=”” iconspin=”no” image=”http://localhost:8888/WP/wp-content/uploads/2014/10/icon_image.png” image_width=”76″ image_height=”70″ link=”#” linktext=”” linktarget=”_self” animation_type=”0″ animation_direction=”down” animation_speed=”0.1″] Lorem ipsum dolor sit amet, consectetur adipiscing elit sed eiusmod tempor incididui labore dolore magna sadipieds etas supra lorems dolores.[/content_box][content_box title=”HTML 5 Video” icon=”” backgroundcolor=”” iconcolor=”#6796bf” circlecolor=”#ffffff” circlebordercolor=”#6796bf” iconflip=”” iconrotate=”” iconspin=”no” image=”http://localhost:8888/WP/wp-content/uploads/2014/10/icon_videos.png” image_width=”56″ image_height=”70″ link=”#” linktext=”” linktarget=”_self” animation_type=”0″ animation_direction=”down” animation_speed=”0.1″] Lorem ipsum dolor sit amet, consectetur adipiscing elit sed eiusmod tempor incididui labore dolore magna sadipieds etas supra lorems dolores.[/content_box][/content_boxes][separator style_type=”none” top_margin=”-15″ bottom_margin=”-15″ sep_color=”” border_size=”” icon=”” icon_circle=”” icon_circle_color=”” width=”” alignment=”” class=”” id=””][content_boxes layout=”icon-on-top” title_size=”” icon_circle=”” icon_size=”” icon_align=”left” columns=”3″ margin_top=”” margin_bottom=”” class=”” id=””][content_box title=”Built In tools” icon=”” backgroundcolor=”” iconcolor=”#6796bf” circlecolor=”#ffffff” circlebordercolor=”#6796bf” iconflip=”” iconrotate=”” iconspin=”no” image=”http://localhost:8888/WP/wp-content/uploads/2014/10/icon_chart.png” image_width=”68″ image_height=”70″ link=”#” linktext=”” linktarget=”_self” animation_type=”0″ animation_direction=”down” animation_speed=”0.1″] Lorem ipsum dolor sit amet, consectetur adipiscing elit sed eiusmod tempor incididui labore dolore magna sadipieds etas supra lorems dolores.[/content_box][content_box title=”Beautiful Imagery” icon=”” backgroundcolor=”” iconcolor=”#6796bf” circlecolor=”#ffffff” circlebordercolor=”#6796bf” iconflip=”” iconrotate=”” iconspin=”no” image=”http://localhost:8888/WP/wp-content/uploads/2014/10/icon_cameras.png” image_width=”73″ image_height=”70″ link=”#” linktext=”” linktarget=”_self” animation_type=”0″ animation_direction=”down” animation_speed=”0.1″] Lorem ipsum dolor sit amet, consectetur adipiscing elit sed eiusmod tempor incididui labore dolore magna sadipieds etas supra lorems dolores.[/content_box][content_box title=”Amazing Interface” icon=”” backgroundcolor=”” iconcolor=”#6796bf” circlecolor=”#ffffff” circlebordercolor=”#6796bf” iconflip=”” iconrotate=”” iconspin=”no” image=”http://localhost:8888/WP/wp-content/uploads/2014/10/icon_interface.png” image_width=”68″ image_height=”70″ link=”#” linktext=”” linktarget=”_self” animation_type=”0″ animation_direction=”down” animation_speed=”0.1″] Lorem ipsum dolor sit amet, consectetur adipiscing elit sed eiusmod tempor incididui labore dolore magna sadipieds etas supra lorems dolores.[/content_box][/content_boxes][/fullwidth][fullwidth background_color=”#6796bf” background_image=”” background_parallax=”fixed” enable_mobile=”no” parallax_speed=”0.3″ background_repeat=”no-repeat” background_position=”left center” video_url=”” video_aspect_ratio=”16:9″ video_webm=”” video_mp4=”” video_ogv=”” video_preview_image=”” overlay_color=”” overlay_opacity=”0.5″ video_mute=”yes” video_loop=”yes” fade=”no” border_size=”0px” border_color=”” border_style=”solid” padding_top=”25px” padding_bottom=”10px” padding_left=”30px” padding_right=”30px” hundred_percent=”no” equal_height_columns=”no” hide_on_mobile=”no” menu_anchor=”” class=”” id=””][fusion_text]

    RECENT PROJECTS WE’VE COMPLETED FOR OUR CLIENTS
    [/fusion_text][/fullwidth][fullwidth background_color=”” background_image=”” background_parallax=”none” enable_mobile=”no” parallax_speed=”0.3″ background_repeat=”no-repeat” background_position=”left top” video_url=”” video_aspect_ratio=”16:9″ video_webm=”” video_mp4=”” video_ogv=”” video_preview_image=”” overlay_color=”” overlay_opacity=”0.5″ video_mute=”yes” video_loop=”yes” fade=”no” border_size=”0px” border_color=”” border_style=”solid” padding_top=”0px” padding_bottom=”0px” padding_left=”0px” padding_right=”0px” hundred_percent=”yes” equal_height_columns=”no” hide_on_mobile=”no” menu_anchor=”” class=”” id=””][recent_works layout=”grid” picture_size=”auto” boxed_text=”unboxed” filters=”no” columns=”3″ column_spacing=”0″ cat_slug=”” exclude_cats=”” number_posts=”6″ offset=”” excerpt_length=”35″ strip_html=”yes” carousel_layout=”title_on_rollover” scroll_items=”” autoplay=”no” show_nav=”yes” mouse_scroll=”no” animation_type=”0″ animation_direction=”down” animation_speed=”0.1″ class=”” id=””][/recent_works][/fullwidth][separator style_type=”none” top_margin=”-42″ bottom_margin=”-40″ sep_color=”” border_size=”” icon=”” icon_circle=”” icon_circle_color=”” width=”” alignment=”” class=”” id=””][fullwidth background_color=”#cea96c” background_image=”http://localhost:8888/WP/wp-content/uploads/2014/10/blur_green.jpg” background_parallax=”fixed” enable_mobile=”no” parallax_speed=”0.3″ background_repeat=”no-repeat” background_position=”left top” video_url=”” video_aspect_ratio=”16:9″ video_webm=”” video_mp4=”” video_ogv=”” video_preview_image=”” overlay_color=”” overlay_opacity=”0.5″ video_mute=”yes” video_loop=”yes” fade=”no” border_size=”0px” border_color=”” border_style=”solid” padding_top=”15px” padding_bottom=”10px” padding_left=”30px” padding_right=”30px” hundred_percent=”no” equal_height_columns=”no” hide_on_mobile=”no” menu_anchor=”” class=”” id=””][one_third last=”no” spacing=”yes” center_content=”no” hide_on_mobile=”no” background_color=”” background_image=”” background_repeat=”no-repeat” background_position=”left top” border_size=”0px” border_color=”” border_style=”solid” padding=”” margin_top=”” margin_bottom=”” animation_type=”” animation_direction=”” animation_speed=”0.1″ class=”” id=””][separator style_type=”single” top_margin=”43″ bottom_margin=”0″ sep_color=”rgba(255,255,255,.4)” border_size=”” icon=”” icon_circle=”” icon_circle_color=”” width=”” alignment=”” class=”” id=””][/one_third][one_third last=”no” spacing=”yes” center_content=”no” hide_on_mobile=”no” background_color=”” background_image=”” background_repeat=”no-repeat” background_position=”left top” border_size=”0px” border_color=”” border_style=”solid” padding=”” margin_top=”” margin_bottom=”” animation_type=”” animation_direction=”” animation_speed=”0.1″ class=”” id=””][separator style_type=”none” top_margin=”14″ bottom_margin=”0″ sep_color=”” border_size=”” icon=”” icon_circle=”” icon_circle_color=”” width=”” alignment=”” class=”” id=””][button link=”http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion” color=”custom” size=”xlarge” type=”flat” shape=”round” target=”_blank” title=”” gradient_colors=”transparent|” gradient_hover_colors=”rgba(255, 255, 255, 0.09)|” accent_color=”rgba(255,255,255,.6)” accent_hover_color=”rgba(255,255,255,.9)” bevel_color=”” border_width=”1px” icon=”” icon_position=”left” icon_divider=”no” modal=”” animation_type=”0″ animation_direction=”left” animation_speed=”1″ alignment=”center” class=”” id=””]Buy Avada Now![/button][/one_third][one_third last=”yes” spacing=”yes” center_content=”no” hide_on_mobile=”no” background_color=”” background_image=”” background_repeat=”no-repeat” background_position=”left top” border_size=”0px” border_color=”” border_style=”” padding=”” margin_top=”” margin_bottom=”” animation_type=”” animation_direction=”” animation_speed=”0.1″ class=”” id=””][separator style_type=”single” top_margin=”43″ bottom_margin=”0″ sep_color=”rgba(255,255,255,.4)” border_size=”” icon=”” icon_circle=”” icon_circle_color=”” width=”” alignment=”” class=”” id=””][/one_third][/fullwidth][fullwidth background_color=”#e8e8e8″ background_image=”” background_parallax=”fixed” enable_mobile=”no” parallax_speed=”0.3″ background_repeat=”repeat” background_position=”left top” video_url=”” video_aspect_ratio=”16:9″ video_webm=”” video_mp4=”” video_ogv=”” video_preview_image=”” overlay_color=”” overlay_opacity=”0.5″ video_mute=”yes” video_loop=”yes” fade=”no” border_size=”0px” border_color=”” border_style=”solid” padding_top=”40px” padding_bottom=”0px” padding_left=”30px” padding_right=”30px” hundred_percent=”no” equal_height_columns=”no” hide_on_mobile=”no” menu_anchor=”” class=”” id=””][fusion_text]

    WE BUILD SOLUTIONS FOR YOUR EVERYDAY PROBLEMS
    [/fusion_text][separator style_type=”single” top_margin=”10″ bottom_margin=”50″ sep_color=”rgba(000,000,000,.3)” border_size=”” icon=”” icon_circle=”” icon_circle_color=”” width=”350px” alignment=”” class=”” id=””][imageframe lightbox=”no” lightbox_image=”” style_type=”none” bordercolor=”” bordersize=”0px” borderradius=”0″ stylecolor=”” align=”center” link=”” linktarget=”_self” animation_type=”fade” animation_direction=”down” animation_speed=”1″ hide_on_mobile=”no” class=”” id=””] [/imageframe][/fullwidth][fullwidth background_color=”#fff” background_image=”” background_parallax=”fixed” enable_mobile=”no” parallax_speed=”0.3″ background_repeat=”no-repeat” background_position=”left center” video_url=”” video_aspect_ratio=”16:9″ video_webm=”” video_mp4=”” video_ogv=”” video_preview_image=”” overlay_color=”” overlay_opacity=”0.5″ video_mute=”yes” video_loop=”yes” fade=”no” border_size=”0px” border_color=”” border_style=”solid” padding_top=”25px” padding_bottom=”10px” padding_left=”30px” padding_right=”30px” hundred_percent=”no” equal_height_columns=”no” hide_on_mobile=”no” menu_anchor=”” class=”” id=””][fusion_text]

    Like that. what has gone wrong please help! hahaha

    #530730

    Topic: scroll down arrow

    in forum Enfold

    Hi,

    I would like to change both the icon and the animation of the default scroll down arrow of a colour section – sorry but I don’t really like it.

    Please don’t take any offence by it, but I think its animation is a bit annoying.

    I would like to switch this animation off and replace it with a hover effect, say it changes colour, but to be honest the hover effect is not even very important for me. For start I would like a static arrow, and possibly change the icon of the arrow as well.

    Let me know if this is possible at all and if you can help me?

    Many thanks in advance.

    Best wishes,
    Ben

    #525146
    Julie
    Participant

    Can you provide any help on the best/easiest way in Enfold to change color of images (custom icons inserted into image container) on hover? Each one would be a different color on hover.

    I could upload second images (colored versions), or could do as sprite and have different section displayed on hover, but not sure how to code CSS for this when using image container. Custom css classes is already enabled.

    URL of site showing images in containers is below. Animation that makes images larger on hover is turned on, I would like them to also change color or could turn off image enlargement and have only color change if that is difficult or not possible.

    I appreciate your recommendation on the best way to work this.

    #509529
    DeusDesign
    Participant

    Hi,

    How can i make hover effects (animation) on IconBox Icon. Those icons to be like on this site http://livicons.com/

    Thanks in advance.

    #508201
    rudtek
    Participant

    I’m having problems with your form builder. The page at movept.rudtek.com. the last 2 sections of the page are giving me problems. I want to a have a 2 column (1/3, 2/3) section followed by a full width map section. If i place the 2 colum section in a grid row, it doesn’t stay in the container. However if i place it in a color section and then place two colums so that i can stay in the container, it places the map in a container so it’s no longer full width. I’ve placed the full code below. You’ll see that if you delete the bottom color section that has 2 columns (a contact data section adn a contact form, the map will go back to full width.

    How can we fix this?

    [av_section min_height='100' min_height_px='500px' padding='default' shadow='no-shadow' bottom_border='no-border-styling' scroll_down='aviaTBscroll_down' id='' color='main_color' custom_bg='' src='http://movept.rudtek.com/wp-content/uploads/2015/08/MovePt-header-parallax01.jpg' attachment='24' attachment_size='full' attach='parallax' position='center left' repeat='no-repeat' video='' video_ratio='16:9' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern='']
    [av_textblock size='' font_color='custom' color='#79c143']
    <h1 class="pagetitle">Move Better,</h1>
    <h1 class="pagetitle">Feel Better</h1>
    [/av_textblock]
    
    [av_one_half first min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' padding='0px' border='' border_color='' radius='0px' background_color='' src='' background_position='top left' background_repeat='no-repeat']
    
    [av_textblock size='' font_color='custom' color='#ffffff']
    At MovePT, Physical Therapy is all about learning how to move in ways that feel better. Through movement skills and lessons designed with your life in mind, you can reduce pain, improve your performance, and move better at work, home, and play.
    [/av_textblock]
    
    [/av_one_half]
    [/av_section]
    
    [av_section min_height='' min_height_px='500px' padding='default' shadow='no-shadow' bottom_border='no-border-styling' id='services' 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_textblock size='' font_color='' color='']
    <h1 class="ltblue" style="text-align: center;">Services:</h1>
    <h2 class="subtitle" style="text-align: center;">Harmony and rhythm keep the body in balance and when the system fall out of sync the pain starts to set in. Let me help you in becoming pain free by teaching you better techniques in body movement. Call today or book an appointment below.</h2>
    [/av_textblock]
    
    [av_one_fourth first min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' padding='0px' border='' border_color='' radius='0px' background_color='' src='' background_position='top left' background_repeat='no-repeat']
    
    [av_image src='http://movept.rudtek.com/wp-content/uploads/2015/08/MovePt_services_workplaceprograms_thumbnail.jpg' attachment='194' attachment_size='full' align='center' animation='pop-up' styling='' hover='' link='' target='' caption='' font_size='' appearance='' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff'][/av_image]
    
    [av_textblock size='' font_color='' color='']
    <h3 style="text-align: center;">Workplace Programs</h3>
    <p style="text-align: center;">Industry specific movement workshops and practical injury prevention for employees in all types of business.</p>
    [/av_textblock]
    
    [av_button label='Learn More' link='manually,/services/#workplace' link_target='' size='medium' position='center' icon_select='no' icon='ue800' font='entypo-fontello' color='theme-color' custom_bg='#444444' custom_font='#ffffff']
    
    [/av_one_fourth][av_one_fourth min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' padding='0px' border='' border_color='' radius='0px' background_color='' src='' background_position='top left' background_repeat='no-repeat']
    
    [av_image src='http://movept.rudtek.com/wp-content/uploads/2015/08/MovePt_services_workshopsandevents_thumbnail.jpg' attachment='195' attachment_size='full' align='center' animation='pop-up' styling='' hover='' link='' target='' caption='' font_size='' appearance='' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff'][/av_image]
    
    [av_textblock size='' font_color='' color='']
    <h3 style="text-align: center;">Movement Labs</h3>
    <p style="text-align: center;">Solve your movement puzzles and get out of pain with skills learned in these dynamic group sessions.</p>
    [/av_textblock]
    
    [av_button label='Learn More' link='manually,/services/#workshop' link_target='' size='medium' position='center' icon_select='no' icon='ue800' font='entypo-fontello' color='theme-color' custom_bg='#444444' custom_font='#ffffff']
    
    [/av_one_fourth][av_one_fourth min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' padding='0px' border='' border_color='' radius='0px' background_color='' src='' background_position='top left' background_repeat='no-repeat']
    
    [av_image src='http://movept.rudtek.com/wp-content/uploads/2015/08/MovePt_services_trainingandeducation_thumbnail.jpg' attachment='193' attachment_size='full' align='center' animation='pop-up' styling='' hover='' link='' target='' caption='' font_size='' appearance='' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff'][/av_image]
    
    [av_textblock size='' font_color='' color='']
    <h3 style="text-align: center;">Training & CEUs</h3>
    <p style="text-align: center;">Continuing education seminars and advanced movement training for rehabilitation professionals</p>
    [/av_textblock]
    
    [av_button label='Learn More' link='manually,/services/#training' link_target='' size='medium' position='center' icon_select='no' icon='ue800' font='entypo-fontello' color='theme-color' custom_bg='#444444' custom_font='#ffffff']
    
    [/av_one_fourth][av_one_fourth min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' padding='0px' border='' border_color='' radius='0px' background_color='' src='' background_position='top left' background_repeat='no-repeat']
    
    [av_image src='http://movept.rudtek.com/wp-content/uploads/2015/08/MovePt_services_physicaltherapy_thumbnail.jpg' attachment='192' attachment_size='full' align='center' animation='pop-up' styling='' hover='' link='' target='' caption='' font_size='' appearance='' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff'][/av_image]
    
    [av_textblock size='' font_color='' color='']
    <h3 style="text-align: center;">Physical Therapy</h3>
    <p style="text-align: center;">Learn to move in ways that help you perform better every day. Private PT sessions for all ages and stages.</p>
    [/av_textblock]
    
    [av_button label='Learn More' link='manually,/services/#physical-therapy' link_target='' size='medium' position='center' icon_select='no' icon='ue800' font='entypo-fontello' color='theme-color' custom_bg='#444444' custom_font='#ffffff']
    
    [/av_one_fourth]
    [/av_section]
    
    [av_section min_height='' min_height_px='500px' padding='default' shadow='no-shadow' bottom_border='no-border-styling' id='' color='alternate_color' custom_bg='' src='http://movept.rudtek.com/wp-content/uploads/2015/08/MovePt-contact-parallax06.jpg' attachment='23' attachment_size='full' attach='parallax' position='center center' repeat='no-repeat' video='' video_ratio='16:9' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern='']
    [av_testimonials style='slider_large' columns='2' interval='3' font_color='' custom_title='' custom_content='']
    [av_testimonial_single src='' name='Jane Doe' subtitle='' link='http://' linktext='']
    Jeni has been treating my daughter for the past two years, and we have been enormously pleased with the results of her work. She is wonderful with children and makes the session so much fun that my daughter loves to attend and tries her best to do just what Jeni asks. Jeni's kinetic sense is phenomenal; she analyzes patterns of movement and intuitively grasps exactly what types of exercise and movement will be most beneficial. As a result, we have seen major improvements in my daughter's functional ability...
    [/av_testimonial_single]
    [/av_testimonials]
    
    [av_button label='READ MORE' link='manually,http://' link_target='' size='medium' position='center' icon_select='no' icon='ue800' font='entypo-fontello' color='theme-color' custom_bg='#444444' custom_font='#ffffff']
    [/av_section]
    
    [av_section min_height='' min_height_px='500px' padding='default' shadow='no-shadow' bottom_border='no-border-styling' id='calendar' 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_full first min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' padding='0px' border='' border_color='' radius='0px' background_color='' src='' background_position='top left' background_repeat='no-repeat']
    
    [av_textblock size='' font_color='' color='']
    <h1 class="ltblue" style="text-align: center;">Calendar:</h1>
    <h2 class="subtitle" style="text-align: center;">Book and appointment with us, call or email today.</h2>
    [tribe_mini_calendar]
    [/av_textblock]
    
    [/av_one_full]
    [/av_section]
    
    [av_section min_height='50' min_height_px='500px' padding='default' shadow='no-shadow' bottom_border='no-border-styling' id='' color='main_color' custom_bg='' src='http://movept.rudtek.com/wp-content/uploads/2015/08/MovePt-blog-parallax03.jpg' attachment='20' attachment_size='full' attach='parallax' position='center left' repeat='no-repeat' video='' video_ratio='16:9' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern=''][/av_section]
    
    [av_section min_height='' min_height_px='500px' padding='default' shadow='no-shadow' bottom_border='no-border-styling' id='blog' 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_full first min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' padding='0px' border='' border_color='' radius='0px' background_color='' src='' background_position='top left' background_repeat='no-repeat']
    
    [av_textblock size='' font_color='' color='']
    <h1 class="ltblue" style="text-align: center;">BLOG:</h1>
    <h2 class="subtitle" style="text-align: center;">Stay on track with MovePT.</h2>
    [/av_textblock]
    
    [av_blog blog_type='posts' link='category' blog_style='blog-grid' columns='3' contents='excerpt_read_more' content_length='content' preview_mode='auto' image_size='portfolio' items='3' offset='0' paginate='no']
    
    [/av_one_full]
    [/av_section]
    
    [av_section min_height='50' min_height_px='500px' padding='default' shadow='no-shadow' bottom_border='no-border-styling' id='' color='main_color' custom_bg='' src='http://movept.rudtek.com/wp-content/uploads/2015/08/MovePt-about-parallax04.jpg' attachment='15' attachment_size='full' attach='parallax' position='center left' repeat='no-repeat' video='' video_ratio='16:9' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern=''][/av_section]
    
    [av_section min_height='' min_height_px='500px' padding='default' shadow='no-shadow' bottom_border='no-border-styling' scroll_down='' id='' color='main_color' custom_bg='' src='' attach='scroll' position='top left' repeat='no-repeat' video='' video_ratio='16:9' video_mobile_disabled='' overlay_enable='' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern='']
    
    [av_textblock size='' font_color='' color='']
    <h1 class="ltblue" style="text-align: center;">ABOUT:</h1>
    My name is Dr. Jeni Gall. I have a true passion for the intricacies of human movement and a love of teaching. I believe the art of Physical Therapy is in helping clients recognize habits and patterns of movement that are contributing to pain and dysfunction and then teaching practical strategies for lasting change.
    
    <strong>Graduated</strong> with Doctorate in Physical Therapy from <a href="http://www.pacificu.edu" target="_blank">Pacific University</a>, OR (2003)
    
    <strong>Clinical Experience</strong> includes pediatrics, orthopedics & sports, women’s health, and skilled nursing
    
    <strong>400+ hours</strong> of continuing education
    
    <strong>Comprehensive Movement Training</strong> – <a href="http://www.movementseminars.com/courses/default.cfm" target="_blank">Certified Orthopedic Movement Specialist</a> (2013-2014)
    
    <strong>Credentialed Clinical Instructor</strong> – <a href="http://www.apta.org/" target="_blank">American Physical Therapy Association</a> (2013)
    
    <strong>Board of Directors, Vice President</strong> – <a href="http://masteringpaininstitute.com/">Mastering Pain Institute</a> (2015)
    [/av_textblock]
    
    [/av_section][av_section min_height='' min_height_px='500px' padding='default' shadow='no-shadow' bottom_border='no-border-styling' id='resources' color='main_color' custom_bg='' src='http://movept.rudtek.com/wp-content/uploads/2015/08/MovePt-resources-parallax05.jpg' attachment='26' attachment_size='full' 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_textblock size='' font_color='' color='']
    <h1 class="ltblue" style="text-align: center;">RESOURCES:</h1>
    <h2 class="subtitle white" style="text-align: center;">Online Movement Lessons.</h2>
    [/av_textblock]
    
    [av_button label='LEARN MORE' link='manually,/resources' link_target='' size='medium' position='center' icon_select='no' icon='ue800' font='entypo-fontello' color='theme-color' custom_bg='#444444' custom_font='#ffffff']
    [/av_section]
    
    [av_section min_height='' min_height_px='500px' padding='default' shadow='no-shadow' bottom_border='no-border-styling' id='contact' 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_textblock size='' font_color='' color='']
    <h1 class="ltblue" style="text-align: center;">CONTACT:</h1>
    <h2 class="subtitle" style="text-align: center;">Want to book an appointment? Contact us today and get moving.</h2>
    [/av_textblock]
    
    [/av_section][av_layout_row border='' min_height='0' color='main_color' mobile='av-flex-cells' id='']
    
    [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_textblock size='' font_color='' color='']
    [av_font_icon icon='ue854' font='entypo-fontello' style='' caption='' link='' linktarget='' size='20px' position='left' color=''][/av_font_icon]Direct – 503.310.1323
    
    [av_font_icon icon='ue842' font='entypo-fontello' style='' caption='' link='' linktarget='' size='20px' position='left' color=''][/av_font_icon]Address – 1409 Franklin Street Suite 103, Vancouver, WA
    
    [av_font_icon icon='ue854' font='entypo-fontello' style='' caption='' link='' linktarget='' size='20px' position='left' color=''][/av_font_icon]Office Phone – 360.718.7603
    
    [av_font_icon icon='ue838' font='entypo-fontello' style='' caption='' link='' linktarget='' size='20px' position='left' color=''][/av_font_icon]Fax – 360.852.8043
    
    [av_font_icon icon='ue843' font='entypo-fontello' style='' caption='' link='' linktarget='' size='20px' position='left' color=''][/av_font_icon]Get Directions
    [/av_textblock]
    
    [/av_cell_one_third][av_cell_two_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_textblock size='' font_color='' color='']
    [contact-form-7 id="47" title="Contact form 1"]
    [/av_textblock]
    
    [/av_cell_two_third][/av_layout_row][av_section min_height='' min_height_px='500px' padding='default' shadow='no-shadow' bottom_border='no-border-styling' scroll_down='' id='' color='main_color' custom_bg='' src='' attach='scroll' position='top left' repeat='no-repeat' video='' video_ratio='16:9' video_mobile_disabled='' overlay_enable='' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern='']
    
    [av_one_third first  min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' padding='0px' border='' border_color='' radius='0px' background_color='' src='' background_position='top left' background_repeat='no-repeat']
    
    [av_textblock size='' font_color='' color='']
    [av_font_icon icon='ue854' font='entypo-fontello' style='' caption='' link='' linktarget='' size='20px' position='left' color=''][/av_font_icon]Direct – 503.310.1323
    
    [av_font_icon icon='ue842' font='entypo-fontello' style='' caption='' link='' linktarget='' size='20px' position='left' color=''][/av_font_icon]Address – 1409 Franklin Street Suite 103, Vancouver, WA
    
    [av_font_icon icon='ue854' font='entypo-fontello' style='' caption='' link='' linktarget='' size='20px' position='left' color=''][/av_font_icon]Office Phone – 360.718.7603
    
    [av_font_icon icon='ue838' font='entypo-fontello' style='' caption='' link='' linktarget='' size='20px' position='left' color=''][/av_font_icon]Fax – 360.852.8043
    
    [av_font_icon icon='ue843' font='entypo-fontello' style='' caption='' link='' linktarget='' size='20px' position='left' color=''][/av_font_icon]Get Directions
    [/av_textblock]
    
    [/av_one_third][av_two_third  min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' padding='0px' border='' border_color='' radius='0px' background_color='' src='' background_position='top left' background_repeat='no-repeat']
    
    [av_textblock size='' font_color='' color='']
    [contact-form-7 id="47" title="Contact form 1"]
    [/av_textblock]
    
    [/av_two_third][/av_section][av_google_map height='400px' zoom='16' saturation='' hue='#5b9dc2' zoom_control='aviaTBzoom_control']
    [av_gmap_location address='1409 Franklin Street' city='Vancouver' country='' long='-122.676714' lat='45.6322059' marker='22' imagesize='40' tooltip_display='']
    1409 Franklin Street Suite 103 Vancouver, WA
    [/av_gmap_location]
    [/av_google_map]
    
    
    bluebubble
    Participant

    Hi Guys,

    Thanks for a great theme. Im working on a clients site http://www.dreamtexltd.com

    I have a few issues Im hoping you can help out with.

    1. Color sections with image bg.

    First off…I have portfolio pages built with advanced builder.

    Using colour sections as the first element on the page for a fullscreen image. (this is also happening on the home page 2nd section)

    Set at 100% of browser height

    No repeat (I tried stretch to fit and it has no change)

    For some reason the images are being enlarged slightly and cropping some of the image off, can you take a look at this?

    This is happening at all screen sizes. It is noticeable on some of the portfolio pages more than some of the others. The images are 2560 x1440px (16:9)

    So I inspected element and came to here:

    https://drive.google.com/file/d/0B_4yPg5NFl4UM2dhVEVjLXpCQTA/view?usp=sharing

    https://drive.google.com/file/d/0B_4yPg5NFl4UaWtoaktwMFl4Nms/view?usp=sharing

    If i set my browser to fullscreen (27in iMac) and play with the values setting the height to 1440px and reduce the webkit-transform: translate by 100-150px this displays how I want the image to look.

    What controls/calculates these values? and how can I edit the way my images are being displayed.

    Its as though the bottom of my browser is lower than it actually is making the image enlarge. Can this be reduced?

    To best illustrate the issue I have set up the portfolio page http://dreamtexltd.com/portfolio-item/jcb/best show the issue.

    At the top I have also placed a fullwidth slider set to original dimensions of the image…this handles the image and gives the desired look I need (no cropping)…however by adding this element it breaks the navigation for the portfolio…as in removes it completely.

    Below this is the colour section using 100% browser height with the same image…you can see the difference in scaling on the image and the crop of the JCB…There’s too much

    Basically I need the look of the fullwidth slide at the top whilst keeping the portfolio nav buttons left and right as all images have been produced to this dimensions already

    Also whilst Im on this…when viewing on iPad 4 (retina) the same colour section image (every portfolio page) ignores and image alignment (i.e. top-center…centre-centre etc) and looks like it is set at bottom-centre….is this just the way the theme works or is something not working correctly on our site?

    Which then brings me to issues 2 & 3 (iPad – Retina related – not sure about non-retina as I don’t have access)

    https://drive.google.com/file/d/0B_4yPg5NFl4UaXd2bThveUlIQWs/view?usp=sharing

    2. The menu when viewed in portrait mode on the same iPad switches to mobile mode however the desktop menu is still there behind the menu icon (screenshot)…how do I keep the mobile menu and remove the desktop? I have tried bits of snippets (obviously not correct ha!)

    3. The grid row on the contact page is not collapsing to show each grid column individually (like on mobile) when on retina iPad – I’d like it to do so if possible (again there may be some CSS below that relates to this but is not correct)

    Here is my custom CSS is there anything in there that could be causing these problems?

    .main_color .avia-color-theme-color-subtle {
    background-color: #ea5a2b;
    color: #fff;
    }
    .slideshow_caption {
    width: 59%;
    }

    .caption_framed .slideshow_caption .avia-caption-content p, .caption_framed .slideshow_caption .avia-caption-title,
    .avia-caption .avia-caption-content p, .avia-caption .avia-caption-title
    {
    background: #000;
    filter: alpha(opacity = 80);
    background: rgba(0, 0, 0, 0.5);
    display: inline-block;
    margin: 0 0 1px 0;
    padding: 10px 3px;
    }
    #top .scroll-down-link {
    height: 90px;
    width: 80px;
    margin: 0px 0 0 -40px;
    line-height: 20px;
    position: absolute;
    left: 50%;
    bottom:15px;
    color: #FFF;
    text-align: center;
    font-size: 90px;
    z-index: 100;
    text-decoration: none;
    text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.4);

    -webkit-animation: avia_fade_move_down 2s ease-in-out infinite;
    animation: avia_fade_move_down 2s ease-in-out infinite;
    }

    .widgettitle {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #777 !important;
    }
    div .av_one_fourth {
    margin-left: 2.5%;
    width: 23%;
    }

    @media only screen and (max-width: 989px) {
    #scroll-top-link { display: block!important; }}

    span.scroll-down-text {
    height: 60px;
    width: 80px;
    margin: 0px 0 0 -40px;
    position: absolute;
    left: 50%;
    bottom: 0px;
    color: #FFF;
    text-align: center;
    font-size: 20px;
    z-index: 100;
    text-decoration: none;
    }
    #top .avia-post-nav{
    background: rgba(0,0,0,0.4);
    border: 1px solid #ea5b2b;
    }

    .main_color .related_image_wrap, .main_color .gravatar img .main_color .hr_content,
    .main_color .news-thumb, .main_color .post-format-icon, .main_color .ajax_controlls a,
    .main_color .tweet-text.avatar_no, .main_color .toggler, .main_color .toggler.activeTitle:hover, .main_color #js_sort_items, .main_color.inner-entry, .main_color .grid-entry-title,
    .main_color .related-format-icon, .grid-entry .main_color .avia-arrow,
    .main_color .avia-gallery-big, .main_color .avia-gallery-big, .main_color .avia-gallery img,
    .main_color .grid-content, .main_color .av-share-box ul, #top .main_color .av-related-style-full .related-format-icon,
    .main_color .related_posts.av-related-style-full a:hover, .main_color.avia-fullwidth-portfolio .pagination .current,
    .main_color.avia-fullwidth-portfolio .pagination a, .main_color .av-hotspot-fallback-tooltip-inner,
    .main_color .av-hotspot-fallback-tooltip-count {
    background-color: #41235d;
    color: #ea5b2b;
    }

    Thanks

    Ric

    #502790

    In reply to: Quick css fixes

    Hi!

    1.) Refer to this solution: https://kriesi.at/support/topic/removing-icon-animation-icon-styling/#post-209632

    2.) Not sure what you mean with “Different css padding for desktop & mobile devices”, as I can’t see any code for any padding. However, it sounds to me as if you need to use media queries.

    3.) Try this code:

    .header_color .av-subnav-menu a:hover, .header_color .main_menu ul:first-child > li a:hover, .header_color .main_menu ul:first-child > li.current-menu-item > a, .header_color .main_menu > li.current_page_item > a, .header_color .main_menu ul:first-child > li.active-parent-item > a {
    background-color: yellow !important;
    }
    

    Cheers!
    Andy

    #502199

    Hi,

    Here’s the shortcode, please try to see if it works out for you:

    [av_fullscreen size='extra_large' animation='fade' autoplay='true' autoplay_stopper='aviaTBautoplay_stopper' interval='2' control_layout='av-control-hidden' scroll_down='aviaTBscroll_down' perma_caption='aviaTBperma_caption']
    [av_fullscreen_slide slide_type='image' id='28' position='center center' video='http://' mobile_image='' video_cover='' title='Welcome!<br/>I am Enrique Fold' custom_title_size='60' custom_content_size='19' caption_pos='caption_center' link_apply='button button-two' link='lightbox' link_target='' button_label='Learn more' button_color='light' link1='manually,#about' link_target1='' button_label2='Get in Touch' button_color2='theme-color' link2='manually,#contact' link_target2='' font_color='custom' custom_title='#ffffff' custom_content='#6b6b6b' overlay_opacity='0.7' overlay_color='#000000' overlay_pattern='' overlay_custom_pattern='']
    I am a New York based developer specialized in branding and web design.
    Take a look at my work and if you like it I would love to hear from you!
    [/av_fullscreen_slide]
    [av_fullscreen_slide slide_type='image' id='29' position='center center' video='' mobile_image='' video_cover='' title='' custom_title_size='' custom_content_size='' caption_pos='caption_right caption_right_framed caption_framed' 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='' overlay_opacity='0.1' overlay_color='' overlay_pattern='' overlay_custom_pattern=''][/av_fullscreen_slide]
    [av_fullscreen_slide slide_type='image' id='30' position='center center' video='' mobile_image='' video_cover='' title='' custom_title_size='' custom_content_size='' caption_pos='caption_right caption_right_framed caption_framed' 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='' overlay_opacity='0.1' overlay_color='' overlay_pattern='' overlay_custom_pattern=''][/av_fullscreen_slide]
    [/av_fullscreen]
    
    [av_section min_height='' min_height_px='500px' padding='large' shadow='no-border-styling' bottom_border='no-border-styling' id='portfolio' 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 heading='Recent projects I have designed & developed. Would love to add yours too...' tag='h3' style='blockquote modern-quote modern-centered' size='30' subheading_active='' subheading_size='15' padding='10' color='' custom_font=''][/av_heading]
    
    [/av_three_fifth][av_one_fifth]
    
    [/av_one_fifth]
    [/av_section]
    
    [av_masonry_gallery ids='37,36,35,34,33,32' items='24' columns='3' paginate='none' size='fixed' gap='no' overlay_fx='active' caption_elements='none' caption_display='always' container_links='active' id='']
    
    [av_section min_height='' min_height_px='500px' padding='huge' shadow='no-border-styling' bottom_border='no-border-styling' id='about' 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_fifth first]
    
    [/av_one_fifth][av_three_fifth]
    
    [av_image src='http://kriesi.at/themes/enfold-one-page-portfolio/files/2015/02/desat-boy-m4-180x180.jpg' attachment='38' attachment_size='square' align='center' animation='pop-up' styling='circle' hover='' link='' target='' caption='' font_size='' appearance='' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff'][/av_image]
    
    [av_heading tag='h3' padding='10' heading='This is me. Designer by day & developer by night. I never sleep... almost.' color='' style='blockquote modern-quote modern-centered' custom_font='' size='30' 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='#4ecac2' custom_margin_top='40px' custom_margin_bottom='40px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello']
    
    [av_textblock size='' font_color='' color='']
    <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, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim.</p>
    [/av_textblock]
    
    [/av_three_fifth][av_one_fifth]
    
    [/av_one_fifth][av_one_fifth first]
    
    [/av_one_fifth][av_one_fifth]
    
    [av_animated_numbers number='112' icon_select='no' icon='ue800' font='entypo-fontello' font_size='' font_size_description='' link='' linktarget='no' color='' custom_color='#444444']
    successful projects
    [/av_animated_numbers]
    
    [/av_one_fifth][av_one_fifth]
    
    [av_animated_numbers number='3265' icon_select='no' icon='ue800' font='entypo-fontello' font_size='' font_size_description='' link='' linktarget='no' color='' custom_color='#444444']
    days of experience
    [/av_animated_numbers]
    
    [/av_one_fifth][av_one_fifth]
    
    [av_animated_numbers number='47' icon_select='no' icon='ue800' font='entypo-fontello' font_size='' font_size_description='' link='' linktarget='no' color='' custom_color='#444444']
    happy clients
    [/av_animated_numbers]
    
    [/av_one_fifth][av_one_fifth]
    
    [/av_one_fifth]
    [/av_section]
    
    [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-one-page-portfolio/files/2015/02/desat-gb_macbook.jpg' attachment='39' attachment_size='full' attach='parallax' position='top center' repeat='stretch' video='' video_ratio='16:9' overlay_enable='aviaTBoverlay_enable' overlay_opacity='0.8' overlay_color='#000000' overlay_pattern='' overlay_custom_pattern='']
    [av_heading tag='h3' padding='10' heading='What my clients say about me and my work' color='' style='blockquote modern-quote modern-centered' custom_font='' size='30' subheading_active='' subheading_size='15' custom_class=''][/av_heading]
    
    [av_testimonials style='slider_large' columns='2' interval='6' font_color='custom' custom_title='#ffffff' custom_content='#ffffff']
    [av_testimonial_single src='40' name='Frank Miller' subtitle='CEO' link='#' linktext='Millermedia']
    Enrique is awesome to work with. Incredibly talented, easy to communicate with, responsive with next iterations, and beautiful work. Highly recommended!
    [/av_testimonial_single]
    [av_testimonial_single src='41' name='Sara Andrews' subtitle='Designer' link='#' linktext='Sandrew Inc.']
    We are very pleased with our new brand identity and the way Enrique conducts his business. It has been a great experience working with him and it's already certain that we will hire him again.
    [/av_testimonial_single]
    [/av_testimonials]
    
    [av_partner columns='6' heading='' size='no scaling' border='av-border-deactivate' type='slider' animation='slide' navigation='no' autoplay='true' interval='3']
    [av_partner_logo id='42'][/av_partner_logo]
    [av_partner_logo id='43'][/av_partner_logo]
    [av_partner_logo id='44'][/av_partner_logo]
    [av_partner_logo id='45'][/av_partner_logo]
    [av_partner_logo id='46'][/av_partner_logo]
    [av_partner_logo id='47'][/av_partner_logo]
    [/av_partner]
    [/av_section]
    
    [av_section min_height='' min_height_px='500px' padding='huge' shadow='no-border-styling' bottom_border='no-border-styling' id='services' 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='h3' padding='10' heading='Here is a list of things I can do for you' color='' style='blockquote modern-quote modern-centered' custom_font='' size='30' 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='#4ecac2' custom_margin_top='40px' custom_margin_bottom='40px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello']
    
    [av_one_third first]
    
    [av_icon_box position='left_content' boxed='av-no-box' icon='ue8c0' font='entypo-fontello' title='Web Design' link='' linktarget='' linkelement='' font_color='' custom_title='' custom_content='' color='' custom_bg='' custom_font='' custom_border='']
    Cras dapibus. Vivamus elem nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, port.
    [/av_icon_box]
    
    [/av_one_third][av_one_third]
    
    [av_icon_box position='left_content' boxed='av-no-box' icon='ue856' font='entypo-fontello' title='Web Development' 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. Nut massa quis enim
    [/av_icon_box]
    
    [/av_one_third][av_one_third]
    
    [av_icon_box position='left_content' boxed='av-no-box' 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='']
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aene ligula eget dolor.
    [/av_icon_box]
    
    [/av_one_third][av_one_third first]
    
    [av_icon_box position='left_content' boxed='av-no-box' icon='ue803' font='entypo-fontello' title='SEO Consulting' link='' linktarget='' linkelement='' font_color='' custom_title='' custom_content='' color='' custom_bg='' custom_font='' custom_border='']
    Aenean commodo ligula eget dolor. Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
    [/av_icon_box]
    
    [/av_one_third][av_one_third]
    
    [av_icon_box position='left_content' boxed='av-no-box' icon='ue8f3' font='entypo-fontello' title='Social Media' link='' linktarget='' linkelement='' font_color='' custom_title='' custom_content='' color='' custom_bg='' custom_font='' custom_border='']
    Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aeneart.
    [/av_icon_box]
    
    [/av_one_third][av_one_third]
    
    [av_icon_box position='left_content' boxed='av-no-box' icon='ue859' font='entypo-fontello' title='E-Commerce' link='' linktarget='' linkelement='' font_color='' custom_title='' custom_content='' color='' custom_bg='' custom_font='' custom_border='']
    Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Cras dapibus.
    [/av_icon_box]
    
    [/av_one_third]
    [/av_section]
    
    [av_section min_height='75' min_height_px='500px' padding='huge' shadow='no-border-styling' bottom_border='no-border-styling' id='contact' color='main_color' custom_bg='' src='http://kriesi.at/themes/enfold-one-page-portfolio/files/2015/02/laptop.jpg' attachment='48' 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='#000000' overlay_pattern='{{AVIA_BASE_URL}}images/background-images/dots-for-dark-background.png' overlay_custom_pattern='']
    
    [av_one_fifth first]
    
    [/av_one_fifth][av_three_fifth]
    
    [av_heading tag='h3' padding='10' heading='Do you like my work? Want to get in touch? Use the form below!' color='' style='blockquote modern-quote modern-centered' custom_font='#ffffff' size='30' 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_contact email=' (Email address hidden if logged out) ' title='' button='Submit' on_send='' sent='Your message has been sent!' link='manually,http://' 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_half' multi_select=''][/av_contact_field]
    [av_contact_field label='E-Mail' type='text' options='' check='is_email' width='element_half' 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_three_fifth][av_one_fifth]
    
    [/av_one_fifth][/av_section][av_section min_height='' min_height_px='500px' padding='huge' shadow='no-border-styling' bottom_border='no-border-styling' id='' color='main_color' custom_bg='' src='' attachment='' attachment_size='' attach='scroll' position='top left' repeat='stretch' video='' video_ratio='16:9' overlay_opacity='0.2' overlay_color='' overlay_pattern='{{AVIA_BASE_URL}}images/background-images/polygon.png' overlay_custom_pattern='']
    [av_one_fifth first]
    
    [/av_one_fifth][av_three_fifth]
    
    [av_heading tag='h3' padding='10' heading='Or follow me on Dribbble, Facebook or Twitter' color='' style='blockquote modern-quote modern-centered' custom_font='#ffffff' size='30' subheading_active='' subheading_size='15' custom_class=''][/av_heading]
    
    [/av_three_fifth][av_one_fifth]
    
    [/av_one_fifth][av_one_fifth first]
    
    [/av_one_fifth][av_one_fifth]
    
    [av_font_icon icon='ue8f3' font='entypo-fontello' style='border' caption='' link='manually,http://facebook.com' linktarget='' size='40px' position='center' color='#ffffff'][/av_font_icon]
    
    [/av_one_fifth][av_one_fifth]
    
    [av_font_icon icon='ue8fe' font='entypo-fontello' style='border' caption='' link='manually,http://dribbble.com' linktarget='' size='40px' position='center' color='#ffffff'][/av_font_icon]
    
    [/av_one_fifth][av_one_fifth]
    
    [av_font_icon icon='ue8f1' font='entypo-fontello' style='border' caption='' link='manually,http://twitter.com' linktarget='' size='40px' position='center' color='#ffffff'][/av_font_icon]
    
    [/av_one_fifth][av_one_fifth]
    
    [/av_one_fifth]
    [/av_section]
    

    Thanks,
    Rikard

    #501012

    Hi,

    Let’s try with the One Page Portfolio first:

    [av_fullscreen size='extra_large' animation='fade' autoplay='true' autoplay_stopper='aviaTBautoplay_stopper' interval='2' control_layout='av-control-hidden' scroll_down='aviaTBscroll_down' perma_caption='aviaTBperma_caption']
    [av_fullscreen_slide slide_type='image' id='28' position='center center' video='http://' mobile_image='' video_cover='' title='Welcome!<br/>I am Enrique Fold' custom_title_size='60' custom_content_size='19' caption_pos='caption_center' link_apply='button button-two' link='lightbox' link_target='' button_label='Learn more' button_color='light' link1='manually,#about' link_target1='' button_label2='Get in Touch' button_color2='theme-color' link2='manually,#contact' link_target2='' font_color='custom' custom_title='#ffffff' custom_content='#6b6b6b' overlay_opacity='0.7' overlay_color='#000000' overlay_pattern='' overlay_custom_pattern='']
    I am a New York based developer specialized in branding and web design.
    Take a look at my work and if you like it I would love to hear from you!
    [/av_fullscreen_slide]
    [av_fullscreen_slide slide_type='image' id='29' position='center center' video='' mobile_image='' video_cover='' title='' custom_title_size='' custom_content_size='' caption_pos='caption_right caption_right_framed caption_framed' 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='' overlay_opacity='0.1' overlay_color='' overlay_pattern='' overlay_custom_pattern=''][/av_fullscreen_slide]
    [av_fullscreen_slide slide_type='image' id='30' position='center center' video='' mobile_image='' video_cover='' title='' custom_title_size='' custom_content_size='' caption_pos='caption_right caption_right_framed caption_framed' 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='' overlay_opacity='0.1' overlay_color='' overlay_pattern='' overlay_custom_pattern=''][/av_fullscreen_slide]
    [/av_fullscreen]
    
    [av_section min_height='' min_height_px='500px' padding='large' shadow='no-border-styling' bottom_border='no-border-styling' id='portfolio' 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 heading='Recent projects I have designed & developed. Would love to add yours too...' tag='h3' style='blockquote modern-quote modern-centered' size='30' subheading_active='' subheading_size='15' padding='10' color='' custom_font=''][/av_heading]
    
    [/av_three_fifth][av_one_fifth]
    
    [/av_one_fifth]
    [/av_section]
    
    [av_masonry_gallery ids='37,36,35,34,33,32' items='24' columns='3' paginate='none' size='fixed' gap='no' overlay_fx='active' caption_elements='none' caption_display='always' container_links='active' id='']
    
    [av_section min_height='' min_height_px='500px' padding='huge' shadow='no-border-styling' bottom_border='no-border-styling' id='about' 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_fifth first]
    
    [/av_one_fifth][av_three_fifth]
    
    [av_image src='http://kriesi.at/themes/enfold-one-page-portfolio/files/2015/02/desat-boy-m4-180x180.jpg' attachment='38' attachment_size='square' align='center' animation='pop-up' styling='circle' hover='' link='' target='' caption='' font_size='' appearance='' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff'][/av_image]
    
    [av_heading tag='h3' padding='10' heading='This is me. Designer by day & developer by night. I never sleep... almost.' color='' style='blockquote modern-quote modern-centered' custom_font='' size='30' 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='#4ecac2' custom_margin_top='40px' custom_margin_bottom='40px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello']
    
    [av_textblock size='' font_color='' color='']
    <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, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim.</p>
    [/av_textblock]
    
    [/av_three_fifth][av_one_fifth]
    
    [/av_one_fifth][av_one_fifth first]
    
    [/av_one_fifth][av_one_fifth]
    
    [av_animated_numbers number='112' icon_select='no' icon='ue800' font='entypo-fontello' font_size='' font_size_description='' link='' linktarget='no' color='' custom_color='#444444']
    successful projects
    [/av_animated_numbers]
    
    [/av_one_fifth][av_one_fifth]
    
    [av_animated_numbers number='3265' icon_select='no' icon='ue800' font='entypo-fontello' font_size='' font_size_description='' link='' linktarget='no' color='' custom_color='#444444']
    days of experience
    [/av_animated_numbers]
    
    [/av_one_fifth][av_one_fifth]
    
    [av_animated_numbers number='47' icon_select='no' icon='ue800' font='entypo-fontello' font_size='' font_size_description='' link='' linktarget='no' color='' custom_color='#444444']
    happy clients
    [/av_animated_numbers]
    
    [/av_one_fifth][av_one_fifth]
    
    [/av_one_fifth]
    [/av_section]
    
    [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-one-page-portfolio/files/2015/02/desat-gb_macbook.jpg' attachment='39' attachment_size='full' attach='parallax' position='top center' repeat='stretch' video='' video_ratio='16:9' overlay_enable='aviaTBoverlay_enable' overlay_opacity='0.8' overlay_color='#000000' overlay_pattern='' overlay_custom_pattern='']
    [av_heading tag='h3' padding='10' heading='What my clients say about me and my work' color='' style='blockquote modern-quote modern-centered' custom_font='' size='30' subheading_active='' subheading_size='15' custom_class=''][/av_heading]
    
    [av_testimonials style='slider_large' columns='2' interval='6' font_color='custom' custom_title='#ffffff' custom_content='#ffffff']
    [av_testimonial_single src='40' name='Frank Miller' subtitle='CEO' link='#' linktext='Millermedia']
    Enrique is awesome to work with. Incredibly talented, easy to communicate with, responsive with next iterations, and beautiful work. Highly recommended!
    [/av_testimonial_single]
    [av_testimonial_single src='41' name='Sara Andrews' subtitle='Designer' link='#' linktext='Sandrew Inc.']
    We are very pleased with our new brand identity and the way Enrique conducts his business. It has been a great experience working with him and it's already certain that we will hire him again.
    [/av_testimonial_single]
    [/av_testimonials]
    
    [av_partner columns='6' heading='' size='no scaling' border='av-border-deactivate' type='slider' animation='slide' navigation='no' autoplay='true' interval='3']
    [av_partner_logo id='42'][/av_partner_logo]
    [av_partner_logo id='43'][/av_partner_logo]
    [av_partner_logo id='44'][/av_partner_logo]
    [av_partner_logo id='45'][/av_partner_logo]
    [av_partner_logo id='46'][/av_partner_logo]
    [av_partner_logo id='47'][/av_partner_logo]
    [/av_partner]
    [/av_section]
    
    [av_section min_height='' min_height_px='500px' padding='huge' shadow='no-border-styling' bottom_border='no-border-styling' id='services' 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='h3' padding='10' heading='Here is a list of things I can do for you' color='' style='blockquote modern-quote modern-centered' custom_font='' size='30' 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='#4ecac2' custom_margin_top='40px' custom_margin_bottom='40px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello']
    
    [av_one_third first]
    
    [av_icon_box position='left_content' boxed='av-no-box' icon='ue8c0' font='entypo-fontello' title='Web Design' link='' linktarget='' linkelement='' font_color='' custom_title='' custom_content='' color='' custom_bg='' custom_font='' custom_border='']
    Cras dapibus. Vivamus elem nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, port.
    [/av_icon_box]
    
    [/av_one_third][av_one_third]
    
    [av_icon_box position='left_content' boxed='av-no-box' icon='ue856' font='entypo-fontello' title='Web Development' 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. Nut massa quis enim
    [/av_icon_box]
    
    [/av_one_third][av_one_third]
    
    [av_icon_box position='left_content' boxed='av-no-box' 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='']
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aene ligula eget dolor.
    [/av_icon_box]
    
    [/av_one_third][av_one_third first]
    
    [av_icon_box position='left_content' boxed='av-no-box' icon='ue803' font='entypo-fontello' title='SEO Consulting' link='' linktarget='' linkelement='' font_color='' custom_title='' custom_content='' color='' custom_bg='' custom_font='' custom_border='']
    Aenean commodo ligula eget dolor. Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
    [/av_icon_box]
    
    [/av_one_third][av_one_third]
    
    [av_icon_box position='left_content' boxed='av-no-box' icon='ue8f3' font='entypo-fontello' title='Social Media' link='' linktarget='' linkelement='' font_color='' custom_title='' custom_content='' color='' custom_bg='' custom_font='' custom_border='']
    Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aeneart.
    [/av_icon_box]
    
    [/av_one_third][av_one_third]
    
    [av_icon_box position='left_content' boxed='av-no-box' icon='ue859' font='entypo-fontello' title='E-Commerce' link='' linktarget='' linkelement='' font_color='' custom_title='' custom_content='' color='' custom_bg='' custom_font='' custom_border='']
    Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Cras dapibus.
    [/av_icon_box]
    
    [/av_one_third]
    [/av_section]
    
    [av_section min_height='75' min_height_px='500px' padding='huge' shadow='no-border-styling' bottom_border='no-border-styling' id='contact' color='main_color' custom_bg='' src='http://kriesi.at/themes/enfold-one-page-portfolio/files/2015/02/laptop.jpg' attachment='48' 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='#000000' overlay_pattern='{{AVIA_BASE_URL}}images/background-images/dots-for-dark-background.png' overlay_custom_pattern='']
    
    [av_one_fifth first]
    
    [/av_one_fifth][av_three_fifth]
    
    [av_heading tag='h3' padding='10' heading='Do you like my work? Want to get in touch? Use the form below!' color='' style='blockquote modern-quote modern-centered' custom_font='#ffffff' size='30' 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_contact email=' (Email address hidden if logged out) ' title='' button='Submit' on_send='' sent='Your message has been sent!' link='manually,http://' 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_half' multi_select=''][/av_contact_field]
    [av_contact_field label='E-Mail' type='text' options='' check='is_email' width='element_half' 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_three_fifth][av_one_fifth]
    
    [/av_one_fifth][/av_section][av_section min_height='' min_height_px='500px' padding='huge' shadow='no-border-styling' bottom_border='no-border-styling' id='' color='main_color' custom_bg='' src='' attachment='' attachment_size='' attach='scroll' position='top left' repeat='stretch' video='' video_ratio='16:9' overlay_opacity='0.2' overlay_color='' overlay_pattern='{{AVIA_BASE_URL}}images/background-images/polygon.png' overlay_custom_pattern='']
    [av_one_fifth first]
    
    [/av_one_fifth][av_three_fifth]
    
    [av_heading tag='h3' padding='10' heading='Or follow me on Dribbble, Facebook or Twitter' color='' style='blockquote modern-quote modern-centered' custom_font='#ffffff' size='30' subheading_active='' subheading_size='15' custom_class=''][/av_heading]
    
    [/av_three_fifth][av_one_fifth]
    
    [/av_one_fifth][av_one_fifth first]
    
    [/av_one_fifth][av_one_fifth]
    
    [av_font_icon icon='ue8f3' font='entypo-fontello' style='border' caption='' link='manually,http://facebook.com' linktarget='' size='40px' position='center' color='#ffffff'][/av_font_icon]
    
    [/av_one_fifth][av_one_fifth]
    
    [av_font_icon icon='ue8fe' font='entypo-fontello' style='border' caption='' link='manually,http://dribbble.com' linktarget='' size='40px' position='center' color='#ffffff'][/av_font_icon]
    
    [/av_one_fifth][av_one_fifth]
    
    [av_font_icon icon='ue8f1' font='entypo-fontello' style='border' caption='' link='manually,http://twitter.com' linktarget='' size='40px' position='center' color='#ffffff'][/av_font_icon]
    
    [/av_one_fifth][av_one_fifth]
    
    [/av_one_fifth]
    [/av_section]
    

    Thanks,
    Rikard

    Eagles1227
    Participant

    Support,

    I’m having an issue with my footer that I cannot figure out – the button shortcode displays “Click me” instead of the text within the shortcode (See below). Any way to resolve this?

    [av_heading heading='WE LOVE SOLVING PROBLEMS' tag='h1' style='blockquote modern-quote' size='46' subheading_active='' subheading_size='15' padding='0' color='' custom_font=''][/av_heading]

    [av_three_fourth first]<span style=”font-size: 18px;”>The sale of real estate is a business transaction. So why not hire businesspeople to solve your real estate problems? That’s why we’re here.</span>
    [/av_three_fourth]

    [av_one_fourth][av_button label='Let's Get Started' link='page,79' link_target='' size='large' position='center' icon_select='yes' icon_hover='aviaTBicon_hover' icon='ue805' font='entypo-fontello' color='light' custom_bg='#444444' custom_font='#ffffff']
    [/av_one_fourth]

    [av_hr class='custom' height='50' shadow='no-shadow' position='left' custom_border='av-border-thin' custom_width='100%' custom_border_color='#666666' custom_margin_top='5px' custom_margin_bottom='5px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello']

    [av_one_third first]<span style=”font-weight: bold; font-size: 14px;”>IN A NUTSHELL</span>
    We’re a group of creative, passionate and highly motivated professionals who represent buyers and sellers in the sale of luxury real estate here in Center City, Philadelphia.

    [/av_one_third]

    [av_one_third]<span style=”font-weight: bold; font-size: 14px;”>CONSUMERS BEWARE</span>
    When involved in dual agency, consumers stand to lose hundreds of thousands of dollars. According to Trend MLS, 1 in 4 homes that sold over $1.2 Million in Center City, Philadelphia was a dual agency transaction.
    [/av_one_third]

    [av_one_third][av_image src='https://tjmpropertygroup.com/wp-content/uploads/2014/09/Keller-Williams.png' attachment='156' attachment_size='full' align='left' animation='bottom-to-top' styling='no-styling' hover='' link='' target='' caption='' font_size='' appearance='' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff'][/av_image][/av_one_third]

    [av_two_third first]215.627.3500 | 1619 Walnut Street, 5F, Philadelphia, PA. 19103
    Each Keller Williams Office is Independently Owned and Operated. Information not verified or guaranteed.
    © Tyler J. Morrison   |   PA License #: RS317543   |   Privacy Policy   |   Site Map   |   Created by TJM Creative [/av_two_third]

    Thanks in advance for your help!

    #462972

    Topic: Icon Animation

    in forum Enfold
    stlgoat04
    Participant

    How do you get the icon’s to animate? When I hover, i want it to have a circle effect that goes outward and then disappears.

    Hi!

    use the code in this post:
    https://kriesi.at/support/topic/icon-animation-on-hover/#post-227747
    to gain control over the color of sonar effect. You would need to change these rgb values:

    rgba(255,0,255,0.1)
    

    to your needs.

    Best regards,
    Andy

    #444459

    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!
    Elliott

    #434038
    odac25thka
    Participant

    Hi, please help!

    This is really an emergency. I just finish building a solid one page for my company and now the avia builder is stuck at loading the page and I cannot edit it.

    I am using the latest version of wordpress (4.2), and latest version of enfold (3.1.3)

    The page i am trying to edit is http://brilliancezone.com/home/

    Apparently there’s nothing there now because the builder refused to load and I can’t restore it as well.

    I managed to copy out the code from the revisions. Hope it helps:

    [av_section min_height='100' min_height_px='500px' padding='default' shadow='no-border-styling' bottom_border='no-border-styling' scroll_down='aviaTBscroll_down' id='' color='main_color' custom_bg='' src='' attachment='' attachment_size='' attach='scroll' position='top left' repeat='no-repeat' video='https://www.youtube.com/watch?v=Wq-DEL2ONGg' video_ratio='16:9' overlay_enable='aviaTBoverlay_enable' overlay_opacity='0.8' overlay_color='#4ecac2' overlay_pattern='' overlay_custom_pattern='']
    [av_textblock size='40' font_color='custom' color='#ffffff']
    INNOVATE
    your way to a
    PRACTICAL
    and
    PROFITABLE
    GROWTH
    [/av_textblock]
    [/av_section]
    [av_section min_height='' min_height_px='500px' padding='huge' shadow='no-border-styling' bottom_border='no-border-styling' id='' 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='Innovate Or OBLITERATE' 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_textblock size='' font_color='' color='']
    <p style=”text-align: center;”>Most experts agree that we live in the worst of times and the best of times of CHANGE in the history of our civilisation.</p>
    <p style=”text-align: center;”>Yet the pace of change is actually increasing.</p>
    [/av_textblock]
    [av_one_fifth first]
    [/av_one_fifth][av_three_fifth]
    [av_heading tag='h1' padding='10' heading='Innovation is NOT an Option' 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_section]
    [av_textblock size='40' font_color='' color='']
    <p style=”text-align: center;”>V.I.P.</p>
    [/av_textblock]
    [av_textblock size='40' font_color='' color='']
    <p style=”text-align: center;”>Vision Innovation Programs</p>
    <p style=”text-align: center;”>is both a life skill and life system that helps people to take ownership for change. it inculcates the values of</p>
    <p style=”text-align: center;”>Swift. Synergy. System.</p>
    <p style=”text-align: center;”>to bring forth the exceptional individual and company</p>
    [/av_textblock]
    [av_section min_height='' min_height_px='500px' padding='default' shadow='no-shadow' bottom_border='no-border-styling' scroll_down='' id='' color='main_color' custom_bg='' src='' attach='scroll' position='top left' repeat='no-repeat' video='' video_ratio='16:9' video_mobile_disabled='' overlay_enable='' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern='']
    [av_heading tag='h1' padding='10' heading='About the Founder and CEO: Mike Ang' color='' style='blockquote modern-quote modern-centered' custom_font='' size='40' subheading_active='' subheading_size='15' custom_class=''][/av_heading]
    [av_one_third first]
    [av_image src='https://brilliancezone.com/wp-content/uploads/2015/02/MikeAngDP.jpg' attachment='525' attachment_size='full' align='center' animation='no-animation' styling='circle' hover='' link='' target='' caption='' font_size='' appearance='' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff'][/av_image]
    [/av_one_third][av_two_third]
    [av_textblock size='' font_color='' color='']
    input resume
    [/av_textblock]
    [/av_two_third]
    [/av_section]
    [av_section min_height='' min_height_px='500px' padding='huge' shadow='no-border-styling' bottom_border='border-extra-arrow-down' id='' 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_heading heading='About Brilliance Zone' tag='h1' style='blockquote modern-quote modern-centered' size='40' subheading_active='' subheading_size='15' padding='10' color='' custom_font=''][/av_heading]
    [av_one_half first]
    [av_image src='https://brilliancezone.com/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/images/placeholder.jpg' align='center' animation='no-animation' styling='' hover='' link='' target='' caption='' font_size='' appearance='' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff'][/av_image]
    [/av_one_half][av_one_half]
    [av_image src='https://brilliancezone.com/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/images/placeholder.jpg' align='center' animation='no-animation' styling='' hover='' link='' target='' caption='' font_size='' appearance='' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff'][/av_image]
    [/av_one_half][av_one_half first]
    [av_textblock size='20' font_color='' color='']
    We are a group of visionaries, dreamers, doers and ambitious people working on unleashing the Passion, Purpose and Potential of every individual and companies forward.
    [/av_textblock]
    [/av_one_half][av_one_half]
    [av_image src='https://brilliancezone.com/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/images/placeholder.jpg' align='center' animation='no-animation' styling='' hover='' link='' target='' caption='' font_size='' appearance='' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff'][/av_image]
    [/av_one_half][av_one_half first]
    [av_image src='https://brilliancezone.com/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/images/placeholder.jpg' align='center' animation='no-animation' styling='' hover='' link='' target='' caption='' font_size='' appearance='' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff'][/av_image]
    [/av_one_half][av_one_half]
    [av_textblock size='' font_color='' color='']
    We want to touch lives and be your Trusted Partner both in schools and companies
    – we help them set their company vision
    – we guide them on the new pathbreaking innovator
    – we inspire them to equip myriads of crucial skills program for successful living
    [/av_textblock]
    [/av_one_half][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_section]
    [av_section min_height='75' min_height_px='500px' padding='large' shadow='no-border-styling' bottom_border='no-border-styling' id='' color='main_color' custom_bg='#f8f8f8' src='https://kriesi.at/themes/enfold-startup/files/2015/02/hipster-working.jpg' attachment='473' attachment_size='full' attach='parallax' position='center right' repeat='stretch' video='' video_ratio='16:9' overlay_enable='aviaTBoverlay_enable' overlay_opacity='0.3' overlay_color='#ffffff' overlay_pattern='' overlay_custom_pattern='']
    [av_three_fifth first]
    [/av_three_fifth][av_two_fifth]
    [av_heading tag='h1' padding='10' heading='Who are we? What do we do?' color='' style='blockquote modern-quote' custom_font='' size='' subheading_active='' subheading_size='15' custom_class=''][/av_heading]
    [av_hr class='custom' height='50' shadow='no-shadow' position='left' custom_border='av-border-fat' custom_width='50px' custom_border_color='#000000' custom_margin_top='10px' custom_margin_bottom='10px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello']
    [av_textblock size='' font_color='' color='']

    • Our Philosophy
    • Our Methodology
    • Our Capability
    • Our Program

    [/av_textblock]
    [/av_two_fifth]
    [/av_section]
    [av_section min_height='' min_height_px='500px' padding='default' shadow='no-border-styling' bottom_border='no-border-styling' id='' 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='We are guiding Individuals and Companies to the place where all of Life’s Passion, Purpose and Potential is unleashed to a sweet spot or place called Brilliance Zone' 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_image_hotspot src='https://brilliancezone.com/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/images/placeholder-full.jpg' animation='no-animation' hotspot_layout='numbered' hotspot_tooltip_display='' hotspot_mobile='true'][/av_image_hotspot]
    [av_textblock size='' font_color='' color='']
    There are 3 things that is distinctive about us (CPF)

    • We Customise
    • We Personalize
    • We Follow-up

    [/av_textblock]
    [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_section]
    [av_section min_height='75' min_height_px='500px' padding='large' shadow='no-border-styling' bottom_border='no-border-styling' id='' color='main_color' custom_bg='' src='' attachment='' attachment_size='' attach='parallax' position='center 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_full first]
    [av_heading heading='Brilliance Zone Philosophy' tag='h1' style='blockquote modern-quote modern-centered' size='40' subheading_active='' subheading_size='15' padding='10' color='' custom_font=''][/av_heading]
    [av_textblock size='' font_color='' color='']
    <div>We prepare Change Agents by nurturing and pushing humanity forward to experience that convergence called Brilliance Zone</div>
    <div></div>
    <div>We aim to nurture student and workforce to build foundation that lasts.</div>
    <div></div>
    [/av_textblock]
    [/av_one_full]
    [/av_section]
    [av_heading tag='h2' padding='10' heading='The 3 Pillars Of Holistic Development' color='' style='blockquote modern-quote modern-centered' custom_font='' size='40' subheading_active='' subheading_size='15' custom_class=''][/av_heading]
    [av_layout_row border='' min_height='0' color='main_color' mobile='av-flex-cells' id='']
    [av_cell_one_third]
    [av_textblock size='' font_color='' color='']
    <div></div>
    Charactor
    [/av_textblock]
    [av_textblock size='' font_color='' color='']
    <div></div>
    <div>Behaviour based on inner compass as well as desire and drive for life</div>
    <div></div>
    <div>1. Moral Values</div>
    <div></div>
    <div>2. Performance Values</div>
    <div></div>
    <div>3. Organisational Values</div>
    [/av_textblock]
    [/av_cell_one_third][av_cell_one_third]
    [av_textblock size='' font_color='' color='']
    Competence
    [/av_textblock]
    [av_textblock size='' font_color='' color='']
    <div>Believe that certain amount of time and experience is needed to hone life skills</div>
    <div></div>
    <div>1. Ability (Talent)</div>
    <div></div>
    <div>2. Skills</div>
    <div></div>
    <div>3. Knowledge</div>
    <div></div>
    [/av_textblock]
    [/av_cell_one_third][av_cell_one_third]
    [av_textblock size='' font_color='' color='']
    Confidence
    [/av_textblock]
    [av_textblock size='' font_color='' color='']
    <div>Becoming the person with inner calm control without being arrogant</div>
    <div></div>
    <div>Life (self)</div>
    <div></div>
    <div>Language(speak)</div>
    <div></div>
    <div>Living (??)</div>
    [/av_textblock]
    [/av_cell_one_third]
    [/av_layout_row]
    [av_textblock size='' font_color='' color='']
    <div></div>
    <div>
    <div>All these 3 pillars can be developed through formal and informal training. Brilliance Zone is the ultimate place we want you to experience. It is when that moment you know when you are</div>

    • 100% Alive
    • Everything is done effortlessly and effectively
    • Lost in time and space

    </div>
    [/av_textblock]
    [av_section min_height='' min_height_px='500px' padding='default' shadow='no-shadow' bottom_border='no-border-styling' scroll_down='' id='' color='main_color' custom_bg='' src='' attach='scroll' position='top left' repeat='no-repeat' video='' video_ratio='16:9' video_mobile_disabled='' overlay_enable='' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern='']
    [av_heading heading='Brilliance Zone Broad Capabilities' tag='h2' style='blockquote modern-quote modern-centered' size='40' subheading_active='' subheading_size='15' padding='10' color='' custom_font=''][/av_heading]
    [av_one_fifth first]
    [/av_one_fifth][av_three_fifth]
    [av_image_hotspot src='https://brilliancezone.com/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/images/placeholder-full.jpg' animation='no-animation' hotspot_layout='numbered' hotspot_tooltip_display='' hotspot_mobile='true'][/av_image_hotspot]
    [/av_three_fifth][av_one_fifth]
    [/av_one_fifth][av_textblock size='' font_color='' color='']
    <div style=”text-align: center;”></div>
    <div style=”text-align: center;”>
    <div>
    <div>1. LifeSkills Development</div>
    <div>2. Learning Development</div>
    <div>3. Leadership Development</div>
    <div>4. Entrepreneurial Development</div>
    <div></div>
    </div>
    </div>
    [/av_textblock]
    [/av_section]
    [av_section min_height='' min_height_px='500px' padding='default' shadow='no-shadow' bottom_border='no-border-styling' scroll_down='' id='' color='main_color' custom_bg='' src='' attach='scroll' position='top left' repeat='no-repeat' video='' video_ratio='16:9' video_mobile_disabled='' overlay_enable='' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern='']
    [av_heading heading='Brilliance Zone Methodology' tag='h2' style='blockquote modern-quote modern-centered' size='40' subheading_active='' subheading_size='15' padding='10' color='' custom_font=''][/av_heading]
    [av_one_third first]
    [av_textblock size='' font_color='' color='']
    CUSTOMISATION
    [/av_textblock]
    [/av_one_third][av_one_third]
    [av_textblock size='' font_color='' color='']
    PERSONALISATION
    [/av_textblock]
    [/av_one_third][av_one_third]
    [av_textblock size='' font_color='' color='']
    FOLLOW UP
    [/av_textblock]
    [/av_one_third][av_one_third first]
    [av_image src='https://brilliancezone.com/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/images/placeholder.jpg' align='center' animation='no-animation' styling='' hover='' link='' target='' caption='' font_size='' appearance='' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff'][/av_image]
    [/av_one_third][av_one_third]
    [av_image src='https://brilliancezone.com/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/images/placeholder.jpg' align='center' animation='no-animation' styling='' hover='' link='' target='' caption='' font_size='' appearance='' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff'][/av_image]
    [/av_one_third][av_one_third]
    [av_image src='https://brilliancezone.com/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/images/placeholder.jpg' align='center' animation='no-animation' styling='' hover='' link='' target='' caption='' font_size='' appearance='' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff'][/av_image]
    [/av_one_third][av_textblock size='' font_color='' color='']
    <div style=”text-align: left;”></div>
    <div style=”text-align: left;”>
    <div>
    <div>
    <div>Brilliance zone Development Connect from the</div>
    Presetting mind –

    • Who are you?
    • Where are you?

    Personal Level –

    • Why do you want to learn?
    • What do you want to learn?

    Perpetuity Level –

    • When can you do it?
    • Where does the learning take?

    <div></div>
    </div>
    <div></div>
    </div>
    </div>
    [/av_textblock]
    [/av_section]
    [av_textblock size='' font_color='' color='']
    Fun Learning – Exciting
    Experiential Learning – Energising
    Whole Person Learning – Empowering
    [/av_textblock]
    [av_textblock size='' font_color='' color='']
    <div>Using the upgraded GROW solution is a very effective coaching framework whereby both coaches and coachee have growing relationship.</div>
    <div></div>
    <div>It must be respectful and responsive that will lead the person to think and do it for themselves</div>
    <div></div>
    <div>In order to know what goes on in the hearts and heads of the coaches, there are 4 useful questions</div>
    [/av_textblock]
    [av_heading tag='h2' padding='10' heading='The Modified Grow Coaching Framework' color='' style='blockquote modern-quote modern-centered' custom_font='' size='40' subheading_active='' subheading_size='15' custom_class=''][/av_heading]
    [av_layout_row border='' min_height='0' color='main_color' mobile='av-flex-cells' id='']
    [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_textblock size='' font_color='' color='']
    <div></div>
    Correction
    [/av_textblock]
    [/av_cell_one_third][av_cell_one_third vertical_align='top' padding='30px' background_color='' src='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat']
    [av_textblock size='' font_color='' color='']
    Conversation
    [/av_textblock]
    [/av_cell_one_third][av_cell_one_third vertical_align='top' padding='30px' background_color='' src='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat']
    [av_textblock size='' font_color='' color='']
    Contuation
    [/av_textblock]
    [/av_cell_one_third][/av_layout_row][av_one_fourth first]
    [av_image src='https://brilliancezone.com/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/images/placeholder.jpg' align='center' animation='no-animation' styling='' hover='' link='' target='' caption='' font_size='' appearance='' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff'][/av_image]
    [av_textblock size='' font_color='' color='']
    Questions
    Personal Discovery
    [/av_textblock]
    [/av_one_fourth][av_one_half]
    [av_image src='https://brilliancezone.com/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/images/placeholder.jpg' align='center' animation='no-animation' styling='' hover='' link='' target='' caption='' font_size='' appearance='' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff'][/av_image]
    [av_textblock size='' font_color='' color='']
    Actions And Solutions
    Current Reality – Opinions Alternatives – Whats Next?
    [/av_textblock]
    [/av_one_half][av_one_fourth]
    [av_image src='https://brilliancezone.com/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/images/placeholder.jpg' align='center' animation='no-animation' styling='' hover='' link='' target='' caption='' font_size='' appearance='' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff'][/av_image]

    [av_textblock size='' font_color='' color='']

    Celebrations

    • Desired Outcomes

    [/av_textblock]
    [/av_one_fourth][av_textblock size='' font_color='' color='']
    Using the GROW framework symbolise growth. Everyone can grow into their fullest potential.
    [/av_textblock]
    [av_textblock size='' font_color='' color='']
    <div>1st</div>
    <div>We must get the right connection</div>
    <div></div>
    <div>This phase allows coach and coaches to get the Insights – Ideas – Inspiration – Integration – by establishing a clarify of the coaching journey</div>
    <div></div>

    <div>2nd</div>
    <div>We must have the coaches to think feel and do by having a focus conversation of their Goals – Reality – Actions – What’s Next</div>
    <div></div>
    <div>3rd</div>
    <div>We must allow both the coach and coaches to celebrate the success and the results. this is important phase on this serves to launch for future learning and growth</div>
    [/av_textblock]

    #431878
    Michael Oeser
    Participant

    Hi guys,

    I have to use a custom shortcode inside the editor. This shortcode password-protects elements on that page. It works if I add the shortcode [abo-protected] manually to the editor using the editors debug mode.

    But when I change any element on the page the shortcode gets wrapped into a textblock shortcode and then it doesn´t work anymore.

    Any chance how to avoid that wrapping of the shortcode? See the code of the page below. This is how I added it to the debug mode of the editor.

    [av_textblock size='' font_color='' color='']
    Zum Testen kann die Abonummer 12345678 verwendet werden.
    [/av_textblock]

    [av_one_third first]
    [av_image src='https://energieintensiv.info/wp-content/uploads/2015/04/cover-1.jpg' attachment='104' attachment_size='full' align='left' animation='no-animation' styling='' hover='' link='' target='' caption='' font_size='' appearance='' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff'][/av_image]
    [/av_one_third]

    [av_two_third]
    [av_textblock size='' font_color='' color='']
    <h3>In der aktuellen Ausgabe</h3>
    [/av_textblock]

    [av_textblock size='' font_color='' color='']

    • Thema 1
    • Thema 2
    • Thema 3
    • Thema 4

    [/av_textblock]
    [/av_two_third]

    [av_one_full first]
    [av_hr class='invisible' height='1' 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_one_full]

    [abo-protected] *** This is where the custom shortcode begins ***

    [av_button_big label='Aktuelle Ausgabe jetzt lesen!' description_pos='below' link='manually,#' link_target='' icon_select='yes-left-icon' icon='ue87d' font='entypo-fontello' custom_font='#ffffff' color='theme-color' custom_bg='#444444' color_hover='green' custom_bg_hover='#444444'][/av_button_big]

    [av_section min_height='' min_height_px='500px' padding='default' shadow='no-shadow' bottom_border='no-border-styling' id='' color='main_color' custom_bg='#f8f8f8' 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_textblock size='' font_color='' color='']
    <h3>Ältere Ausgaben</h3>
    [/av_textblock]
    [av_one_full first]
    [av_textblock size='' font_color='' color='']
    Ausgabe 1/2015
    Ausgabe 2/2015
    Ausgabe 3/2015
    Ausgabe 4/2015
    Ausgabe 5/2015
    Ausgabe 6/2015
    [/av_textblock]
    [/av_one_full]
    [/av_section]

    [/abo-protected] *** This is where the custom shortcode ends ***

    • This topic was modified 10 years, 8 months ago by Michael Oeser.
    #413658

    Topic: Hover video icon

    in forum Enfold
    Vermishelle
    Participant

    Hello!

    First of all, thanks for the 3.1 update, it’s great!

    Here’s the question. I have 5 vimeo embeds on the page. I guess, it makes the page load slower, so I want to switch to lightbox videos, in order to avoid unnecessary requests to vimeo servers.

    Sure, it would be nice to have it as an option in the “video” media component. But as soon as there’s no such thing, I’m looking for workaround.

    When I use “image” element, the playback icon is not visible until hover, it makes not obvious that there’s video actually. How can I make the playback icon visible before hover? Let the current hover animation stay, I like it.

    #388993

    Hi!

    Sonar effect works fine !!!! Thank you so much

    For some who don’t even know what is sonar effect, I had this code within wordpress backend at Enfold->General Styling:

    .av_font_icon span:hover:after {
    -webkit-animation: sonarEffect 1s ease-out;
    -moz-animation: sonarEffect 1s ease-out;
    animation: sonarEffect 1s ease-out;
    }

    My latest question is how to change the color of this awesome effect like this website :

    http://goo.gl/AWZDuz

    Actually the sonar effect is white, I would like that it have the same color as icon circle.

    Cheers

    #388837
    jolamalice
    Participant

    Hi,

    My objective is to obtain an icon hover animation with an icon configured like that (NO link, NO Tooltip).:

    Icon Style : Standalone Icon…
    Icon Caption: Icon1
    Title Link: No Link
    Align Center
    Optional tooltip:

    I tried to add css code within the custom.css :

    /* General Custom CSS */
    .av_font_icon.av-icon-style-border .av-icon-char:hover:after {
            -webkit-animation:      sonarEffect 1s ease-out ;
            -moz-animation:         sonarEffect 1s ease-out ;
            animation:              sonarEffect 1s ease-out ;
    } 
    

    Nevertheless, for some reason I do not see any hover animation on my icon.

    Do you have any suggestions regarding my requirement ?

    Best Regards

    #385048
    This reply has been marked as private.
    #372776
    This reply has been marked as private.

    Hi Andy
    your trick was already done, but I will maintain the overlay icon but disable the rotation of it during the ‘ease’ apparition.

    After a long research I found it:

    a:hover .image-overlay .image-overlay-inside{
    -webkit-animation: avia_pop_small 0s 1 cubic-bezier(0.175, 0.885, 0.320, 1.275); /* Safari 4+ */
    -moz-animation:    avia_pop_small 0s 1 cubic-bezier(0.175, 0.885, 0.320, 1.275); /* Fx 5+ */
    animation:         avia_pop_small 0s 1 cubic-bezier(0.175, 0.885, 0.320, 1.275); /* IE 10+ */
    }

    Solved at same time the lightbox animation problem. I found all CSS and customised it lil I wish.
    Many thanks for your help Andy. For me the topic is closed.

    Have a nice day.

    Caiser

    Caiser_Souze
    Participant

    Hi,
    I will disable the icon rotation hover effect on the portfolio because I changed from round to square the ::before element and I can’t figure how disable this small animation
    http://kriesi.at/themedemo/?theme=enfold-overview

    At same time in the lightbox when I click next I have between all images a pop-up / magnification transition effect. Same question here how is possible to disable this effect.
    http://kriesi.at/themedemo/?theme=enfold-overview

    Thanks so much for your help.

    Caiser

    #357846
    This reply has been marked as private.
    #337703
    fortuneRice
    Participant

    Hi guys, I just updated from (I think it was 2.6) to 3.0. Keep up the good work. I had modified my child theme so that the cart icon is always showing. Currently, the cart icon is still always showing, but after the ajax add to cart event, the cart icon slides to the left about 100 pixels, and it covers up some other stuff in my menu.

    How do I stop the cart icon from sliding left? i.e. I would like it to just remain in place. All the other hover effects and animations are good and I would like to keep those.

Viewing 30 results - 181 through 210 (of 237 total)