Viewing 30 results - 1,231 through 1,260 (of 2,320 total)
  • Author
    Search Results
  • #694974
    ingevandeweem
    Participant

    Hi there,

    Great theme! Can you please tell me how i put a link in the marker tooltip.
    This is what is says…

    FitClass Aarschot
    KAMSA
    Schoolstraat 2
    3200 Aarschot
    Contact: Pieter Sommer
    T: 0487 449633
    E: (Email address hidden if logged out)

    But i want the email to be a link and even put a real url in the tooltip.(that opens in another screen)
    Can you help? : http://www.fitclass.be/

    Thanx!!
    Inga

    • This topic was modified 9 years, 4 months ago by ingevandeweem.
    #694929

    on one map i got an e-mail adress in the tooltip – this works well too – but on that client i installed a crypt plugin which inserted his code by replacing the mailto link with his script than.
    That causes a similar reaction – white space.

    #694495

    Hey there

    i applied your change but unfortunately it’s made no difference.

    We are using this function in functions.php

    add_filter( 'woocommerce_loop_add_to_cart_link', 'quantity_inputs_for_woocommerce_loop_add_to_cart_link', 10, 2 );
    function quantity_inputs_for_woocommerce_loop_add_to_cart_link( $html, $product ) {
    	if ( $product && $product->is_type( 'simple' ) && $product->is_purchasable() && $product->is_in_stock() && ! $product->is_sold_individually() ) {
    		$html = '<form action="' . esc_url( $product->add_to_cart_url() ) . '" class="cart" method="post" enctype="multipart/form-data">';
    		$html .= '<button type="submit" class="button alt">' . esc_html( $product->add_to_cart_text() ) . '</button>';
    		$html .= woocommerce_quantity_input( array(), $product, false );
    		$html .= '</form>';
    	}
    	return $html;
    }
    

    And then our quantity-input.php looks like this

    <div class="quantity">
    	<input type="number" step="<?php echo esc_attr( $step ); ?>" min="<?php echo esc_attr( $min_value ); ?>" max="<?php echo esc_attr( $max_value ); ?>" name="<?php echo esc_attr( $input_name ); ?>" value="<?php echo esc_attr( $input_value ); ?>" title="<?php echo esc_attr_x( 'Qty', 'Product quantity input tooltip', 'woocommerce' ) ?>" id="quantity-<?php echo $product->id;?>" class="input-text qty text" size="4" pattern="<?php echo esc_attr( $pattern ); ?>" inputmode="<?php echo esc_attr( $inputmode ); ?>" />
    </div>
    

    I’ve also applied your suggested fix to woocommerce-mod.js

    	$( document ).on( 'updated_cart_totals', avia_apply_quant_btn );
    	$( document ).on( 'facetwp-refresh', avia_apply_quant_btn );
    

    Any other suggestions ?

    #692771

    In reply to: Edit CSS for JavaSript

    Hey!

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    #d21-los-select {
        min-width: 140px;
        text-indent: 20px;
        font-size: 12px !important;
    }
    #d21-arrival-input {
        text-indent: 30px;
        font-size: 12px !important;
    }
    input.field.tooltipster {
        text-indent: 20px;
        font-size: 12px!important;
    }
    

    Best regards,
    Yigit

    #692734

    Hi,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    @media only screen and (max-width: 480px) {
    li#menu-item-search {
        right: 0px!important;    
    }
    .avia-search-tooltip {
        margin-left: -86px!important;
    }
    }
    
    

    Best regards,
    Vinay

    #691954

    Hi Ismael

    Thank you for your reply. Yes, by tooltip I refer to the “message/info” that appears when you place the mouse over an element (and wait for a short time). Element in this context refers to a masonry image.

    In Masonry 1 I don’t get the title attribute, but the attribute “Bildunterschrift” (“image description”) – which I like
    In Masonry 2 I get the title attribute (which I don’t want to appear)
    Strangely enough, in Masonry 2 I get the desired tooltip (i.e. the “image description” as opposed to the tile), when I place the mouse on the white space between the image elements (i.e. at the right of the image).

    With the two links I’ve sent you, it is easily possible to view the difference. But attached you will also find the dropbox links for the screenshots.

    Thanks a lot for your feedback and best regards,
    Samuel

    #691474

    Hey Office_SP,

    Thank you for using Enfold.

    I’m sorry but I don’t see any difference between the masonry elements. Could you please provide a screenshot? Use imgur or dropbox. And by “tooltip” are you referring to the browser tooltip? This tooltip will display on any element with the title attribute.

    Best regards,
    Ismael

    #689840
    Office_SP
    Participant

    Hallo

    Ich benütze zwei verschiedene Einstellungen für meine Masonry Galleries:

    Masonry 1: Perfektes automatisches Masonry, 4 Spalten
    Masonry 2: Flexibles Masonry, 3 Spalten

    Leider zeigen die beiden ein unterschiedliches Verhalten bei Mouse-over / Tooltip:
    Masonry 1: zeigt – wie gewünscht – die erfasste “Bildunterschrift” an
    Masonry 2: zeigt – nicht gewünscht – den “Titel” des Bildes an
    (Beim Öffnen der Bilder in der Lightbox erscheint übrigens wie gewünscht bei beiden Versionen die “Bildunterschrift”)

    Frage: (Wie) kann ich auch im Masonry 2 die “Bildunterschrift” bei Mous-over als Tooltip anzeigen lassen?

    Weitere Infos:
    Beide Masonries haben ansonsten dieselben Unter-Einstellungen, u.a.: Element captions: Zeige keines
    Ich habe für alle Bilder jeweils eine Bildunterschrift unterhalb der Bilder erfasst, diese erscheinen auch in der Medienübersicht im Feld “Bildunterschrift”. Die Felder “Titel” der Bilder sind jeweils ausgefüllt, “Alternativtext” und “Beschreibung” nicht erfasst

    Besten Dank für eure Hilfe!

    Gruss Samuel

    #687844

    Hey!

    It’s not working because the following script removes every title attribute of the link and image tags in the page.

    //damit bei Mouseover auf Galeriebildern nicht der Dateiname angezeigt wird
    function add_custom_tooltip(){
    ?>
    <script>
    jQuery(window).load(function(){
    jQuery('a').removeAttr('title');
    jQuery('img').removeAttr('title');
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_tooltip');

    Regards,
    Ismael

    #687496

    Hi,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    .avia-tooltip {
        width: 200px;
    }
    

    Best regards,
    Yigit

    #687366
    lenvo
    Participant

    Best Enfold ,

    I would like to show the search icon in the topbar menu. So far, I have a working shortcode which shows both the search icon as the form. However, I would only search icon will show as in the desktop view. By clicking on the search icon should be like in the desktop display the form to be visible.
    Is it possible to shortcode so to adjust that only the Search icon is displayed?
    I am aware that search icon can also be displayed in the mobile view of a CSS script, but I get the search icon in the wrong place at the forefront of the topbar. If possible, I prefer to use a shortcode. Please let me know if this is possible .

    Shortcode function:

    add_shortcode('avia_search', 'get_search_form'); 
    
    function add_custom_tooltip(){
    ?>
    <script>
    jQuery(window).load(function(){
    jQuery('.only-mobile-menu-search a').removeAttr('href');
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_tooltip');

    #687235

    Hey talelie,

    Thanks for getting in touch!

    1) Would you mind posting us a screenshot/mockup of what you would like to achieve? You can upload the screenshot to imgur.com or dropbox and share the link here :)

    2) Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    body .avia-tooltip {
        display: none !important;
    }
    

    Best regards,
    Jordan

    #686964
    talelie
    Participant

    Hi,

    1) I need to insert a caption to the partnre/logo element, with 2 different links?
    2) Is it possible not to show the tooltip on mouse hover over image?

    #686692

    Hi!

    Replace the code with this:

    .single-portfolio .avia-tooltip {
        display: none !important;
    }

    This code will affect all portfolio pages.

    Regards,
    Ismael

    #686657

    In reply to: Search bar

    Hey kimgaba12!

    Thank you for using Enfold.

    Looks like you figured it out. Did you use a plugin?

    <div class="aw-search-box">
            <div>
                <form action="http://www.littlethings.dk/" id="searchform" method="get" class="">
                    <div class="inner-tooltip">
                        <input type="text" class="aw-search-input" id="aw-input" name="s" value="" autocomplete="off" placeholder="Søg">
                        <input type="submit" value="Søg" id="searchsubmit" class="button">
                    </div>
                </form>
            </div>
        </div>
    

    Best regards,
    Ismael

    #686152

    Hi Monica,

    Sure thing, he it is:

    [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_three_fourth first]
    
    [av_headline_rotator before_rotating='EVERYTHING UNDER ONE ROOF! WE OFFER GREAT ' after_rotating='' multiline='aviaTBmultiline' interval='3' animation='' tag='h2' size='63' align='left' custom_title='#ffffff']
    [av_rotator_item title='MARKETING' link='' linktarget='' custom_title='#315e5b']
    [av_rotator_item title='USER EXPERIENCE' link='' linktarget='' custom_title='#315e5b']
    [av_rotator_item title='CUSTOMER SUPPORT' link='' linktarget='' custom_title='#315e5b']
    [av_rotator_item title='DESIGN SKILLS' link='' linktarget='' custom_title='#315e5b']
    [/av_headline_rotator]
    
    [av_hr class='custom' height='50' shadow='no-shadow' position='left' custom_border='av-border-fat' custom_width='50px' custom_border_color='#ffffff' custom_margin_top='40px' custom_margin_bottom='40px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello']
    
    [/av_three_fourth][av_one_fourth]
    
    [av_hr class='invisible' height='50' shadow='no-shadow' position='center' custom_border='av-border-thin' custom_width='50px' custom_border_color='' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='yes' custom_icon_color='' icon='ue808' font='entypo-fontello']
    
    [av_font_icon icon='ue897' font='entypo-fontello' style='border' caption='' link='manually,https://vimeo.com/64927358' linktarget='' size='40px' position='center' color='#ffffff']
    Watch our Promo Video
    [/av_font_icon]
    
    [/av_one_fourth]
    [/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='We create <strong>high quality products</strong> that are used and loved by thousands of customers' color='' style='blockquote modern-quote modern-centered' custom_font='' size='40' subheading_active='' subheading_size='15' custom_class=''][/av_heading]
    
    [/av_three_fifth][av_one_fifth]
    
    [/av_one_fifth][av_hr class='custom' height='50' shadow='no-shadow' position='center' custom_border='av-border-fat' custom_width='50px' custom_border_color='#000000' custom_margin_top='70px' custom_margin_bottom='70px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello']
    
    [av_one_third first]
    
    [av_textblock size='' font_color='' color='']
    <h3>Lorem ipsum dolor sit amet</h3>
    Consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.
    
    <a href="#">Learn more...</a>
    [/av_textblock]
    
    [/av_one_third][av_one_third]
    
    [av_textblock size='' font_color='' color='']
    <h3>Lorem ipsum dolor sit amet</h3>
    Consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.
    
    <a href="#">Learn more...</a>
    [/av_textblock]
    
    [/av_one_third][av_one_third]
    
    [av_textblock size='' font_color='' color='']
    <h3>Lorem ipsum dolor sit amet</h3>
    Consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.
    
    <a href="#">Learn more...</a>
    [/av_textblock]
    
    [/av_one_third]
    [/av_section]
    
    [av_image_hotspot src='http://kriesi.at/themes/enfold-startup/files/2015/02/desat-gb_macbook.jpg' attachment='466' 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-above av-tt-align-right' tooltip_width='av-tt-large-width' tooltip_style='main_color' link='' hotspot_color='custom' custom_bg='#4ecac2' custom_font='#ffffff' custom_pulse='' hotspot_pos='35.9,31.2']
    First of all select the "<strong>Enfold</strong>" option from your admin menu
    [/av_image_spot]
    [av_image_spot tooltip_pos='av-tt-pos-left av-tt-align-top' tooltip_width='av-tt-default-width' tooltip_style='main_color' link='' hotspot_color='custom' custom_bg='#4ecac2' custom_font='#ffffff' custom_pulse='' hotspot_pos='58.6,35.4']
    Open the demo import tab
    [/av_image_spot]
    [av_image_spot tooltip_pos='av-tt-pos-right av-tt-align-centered' tooltip_width='av-tt-large-width' tooltip_style='main_color av-tooltip-shadow' link='' hotspot_color='custom' custom_bg='#4ecac2' custom_font='#ffffff' custom_pulse='' hotspot_pos='65.1,52.6']
    Select the demo you like and click the <strong>import</strong> button
    [/av_image_spot]
    [av_image_spot tooltip_pos='av-tt-pos-right av-tt-align-bottom' tooltip_width='av-tt-default-width' tooltip_style='main_color' link='' hotspot_color='custom' custom_bg='#4ecac2' custom_font='#ffffff' custom_pulse='' hotspot_pos='32.2,68']
    Save the page once you are done
    [/av_image_spot]
    [/av_image_hotspot]
    
    [av_button_big label='Learn more' description_pos='below' link='manually,http://' link_target='' icon_select='no' icon='ue800' font='entypo-fontello' custom_font='#ffffff' color='theme-color' custom_bg='#444444' color_hover='custom' custom_bg_hover='#444444'][/av_button_big]
    
    [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='What our customers say about us' tag='h1' style='blockquote modern-quote modern-centered' size='40' subheading_active='' subheading_size='15' padding='10' color='' custom_font=''][/av_heading]
    
    [av_hr class='custom' height='50' shadow='no-shadow' position='center' custom_border='av-border-fat' custom_width='50px' custom_border_color='#000000' custom_margin_top='40px' custom_margin_bottom='40px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello']
    
    [av_testimonials style='slider_large' columns='2' interval='5' font_color='' custom_title='' custom_content='#bcbcbc']
    [av_testimonial_single src='468' name='Markus Meyer' subtitle='CEO' link='#' linktext='Floorfilla Media']
    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_testimonial_single]
    [av_testimonial_single src='472' name='Susan Charice' subtitle='CTO' link='#' linktext='Mambajuice']
    Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. 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.
    [/av_testimonial_single]
    [/av_testimonials]
    
    [/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='http://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 heading='Who are we? What do we do?' tag='h1' style='blockquote modern-quote' size='' subheading_active='' subheading_size='15' padding='10' color='' custom_font=''][/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='']
    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.
    
    <a href="#">Learn more...</a>
    [/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 heading='Developed with the <strong>best partners</strong> you can think of' tag='h1' style='blockquote modern-quote modern-centered' size='40' subheading_active='' subheading_size='15' padding='10' color='' custom_font=''][/av_heading]
    
    [/av_three_fifth][av_one_fifth]
    
    [/av_one_fifth][av_hr class='custom' height='50' shadow='no-shadow' position='center' custom_border='av-border-fat' custom_width='50px' custom_border_color='#000000' custom_margin_top='40px' custom_margin_bottom='40px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello']
    
    [av_partner columns='5' heading='' size='no scaling' border='av-border-deactivate' type='slider' animation='slide' navigation='no' autoplay='true' interval='5']
    [av_partner_logo id='474'][/av_partner_logo]
    [av_partner_logo id='475'][/av_partner_logo]
    [av_partner_logo id='476'][/av_partner_logo]
    [av_partner_logo id='477'][/av_partner_logo]
    [av_partner_logo id='478'][/av_partner_logo]
    [av_partner_logo id='479'][/av_partner_logo]
    [av_partner_logo id='480'][/av_partner_logo]
    [av_partner_logo id='481'][/av_partner_logo]
    [av_partner_logo id='482'][/av_partner_logo]
    [av_partner_logo id='483'][/av_partner_logo]
    [/av_partner]
    [/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='http://kriesi.at/themes/enfold-startup/files/2015/02/desat-laptop.jpg' attachment='484' attachment_size='full' 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_fifth first]
    
    [/av_one_fifth][av_three_fifth]
    
    [av_heading tag='h1' padding='10' heading='Want to know when we got news on our latest product? <strong>Sign up for our newsletter now!</strong>' color='custom-color-heading' style='blockquote modern-quote modern-centered' custom_font='#000000' size='40' subheading_active='' subheading_size='15' custom_class=''][/av_heading]
    
    [/av_three_fifth][av_one_fifth]
    
    [/av_one_fifth][av_one_third first]
    
    [/av_one_third][av_one_third]
    
    [av_contact email=' (Email address hidden if logged out) ' title='' button='Sign Up' on_send='redirect' sent='Your message has been sent!' link='page,18' subject='' autorespond='' captcha='' hide_labels='aviaTBhide_labels' color='']
    [av_contact_field label='E-Mail' type='text' options='' check='is_email' width='element_three_fourth' multi_select=''][/av_contact_field]
    
    [/av_contact]
    
    [/av_one_third][av_one_third]
    
    [/av_one_third]
    [/av_section]
    

    Regards,
    Rikard

    #685544

    Thank you BUT this removes all tooltips site-wide. I only want it removed from portfolio gallery items. I set the ID #galleryt to the Color Section the gallery is in, if that will help?

    Thank you!

    #685472

    Hi Rachel!

    Thank you for using Enfold.

    Please add this in the Quick CSS field:

    body .avia-tooltip {
        display: none !important;
    }

    Cheers!
    Ismael

    #684380
    raylay
    Participant

    I would like to remove the tooltip from gallery thumbnails WITHOUT removing the lightbox caption or removing tooltips from the entire site. I added the ID #galleryt and tried using display:none on #galleryt div.avia-tooltip.avia-tt but no luck. Can you help me determine what element to apply the display:none to or another method. Thank you!
    Example page: http://chrisgallop.com/blog/portfolio-item/kitchen-upgrade/

    #682934

    Hi,

    It tends to happen because the tooltip is set display if the mouse pointer is over the target image and hide or go away once the mouse pointer leave the target. By bringing the tooltip over the image, it creates a sort of confusion because once you hover over the target image and the tooltip animates and move under the mouse pointer, the script reads it as if the mouse pointer leaves the target image so the tooltip has to move or hide away, bringing the mouse pointer again over the target image which then forces the tooltip to show up, creating a loop.

    One workaround is to use the Image element and then add the current tooltip content as caption.

    Best regards,
    Ismael

    #682677
    yingyang
    Participant

    I’d like to get the same tooltip effect shown on this site where the tooltip pulse but the inner circle color is transparent, i tried the code below but no luck

    http://wordpress.p255345.webspaceconfig.de/reise-durch-das-klaerwerk/

    .av-hotspot-container .av-image-hotspot_inner 
        background: transparent !important;
    }

    Hey LarryLayouter,

    Thank you for using Enfold.

    We will ask Kriesi to check thread. For now, you can hide the tooltip on mobile.

    @media only screen and (max-width: 767px) {
      /* Add your Mobile Styles here */
      .avia-tooltip.avia-tt {
        display: none !important;
      }
    }

    Best regards,
    Ismael

    #680475

    Hi,

    We are sorry for the delay. We would like to check the page but the url is missing. Are you referring to the browser tooltip? Unfortunately, we cannot remove that tooltip without removing the title attribute which is where the lightbox fetch the caption info.

    Best regards,
    Ismael

    #680316

    I had wanted to do the same thing, but move the popup tip to the center of the logo.

    Successfully did so by setting margin-top to 100px, but there’s a problem: When you mouse over the tooltip itself (vs. the logo) it flashes/resets. Not normally noticeable because the tooltip is in a different place than the logo. But when you’ve got the tooltip appearing over the logo, where your mouse is, it continually resets for as long as your mouse is over the tooltip. Made a quick screen capture: http://screencast.com/t/8oP9aJoQ2V

    Is there a way to make it so the tooltip does not flash/reset when you mouse over the tooltip itself?

    (access to sandbox page where this is happening is in private content)

    Thanks.
    – Greg

    #680129
    emmegigrafica
    Participant

    I would like to fix this bug that you can see only in the calendar (month view)
    Compare this code in the bottom of the page
    Thank you

    [[ if(imageSrc.length) { ]]
    [[=title]]
    [[ } ]] [[ if(excerpt.length) { ]]
    [[=raw excerpt]]
    [[ } ]]
    [[=i18n.find_out_more]]
    [[ if(imageTooltipSrc.length) { ]]
    [[=title]]
    [[ } ]] [[ if(excerpt.length) { ]]
    [[=raw excerpt]]
    [[ } ]]

    LarryLayouter
    Participant

    Hi support,

    When I tap on a gallery thumbnail on iOS
    – the first tap reveals the tooltip
    – the second tap reveals the image but the tooltip is still visible

    Only after tapping on the first revealed image to go to the next image the tooltip disappears.

    Is there a way to hide the tooltip when the first image appears?

    Please find a link to a screenrecording in the private content area.

    Best,
    Claus

    #678919

    Hey segevmo,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    .avia-search-tooltip {
    	left: 116px!important;
    }
    

    Best regards,
    Vinay

    #678877
    zcl
    Guest

    “A” element is not set “rel” parameter under social sharing buttons.
    And “title” parameter has no value.
    css positioning

    
    .av-share-link a
    
    

    Although this does not affect the use, and I see a “data-avia-related-tooltip” parameter is equivalent to the “title”, maybe Google can do custom attribute recognition element, but it does not guarantee that other search engines also recognized .
    For example, in our country there is now the biggest search engine called Baidu, he is very stupid. But we can only use him, because it is currently the largest.
    Other countries may not believe this, but we are still the basis of compliance with W3C standards as well.

    function “build_share_links ()” can increase the article Published shortcodes
    This is just a small idea, perhaps useless, if you do not take up server resources, then why not add it?

    #678732

    Hey zimbo,

    Thank you for using Enfold.

    Adjust the position of the search box with the following css code:

    @media only screen and (max-width: 989px) {
         .responsive .avia-search-tooltip {
             left: -200px !important;
         }
    }

    Best regards,
    Ismael

    #678701
    hdsitomh
    Participant

    I’d like to hide the tooltip that the browser shows when mousing over the masonry gallery thumbnail images.

    I’ve tried a suggestion from:

    In that post its suggested to use the following function:

    •••••••••••••••••••

    function add_custom_tooltip(){
    ?>
    <script>
    jQuery(window).load(function(){
    jQuery(‘a’).removeAttr(‘title’);
    jQuery(‘img’).removeAttr(‘title’);
    });
    </script>
    <?php
    }
    add_action(‘wp_footer’, ‘add_custom_tooltip’);

    •••••••••••••••••••

    The trouble with this solution is that in addition to removing the TOOLTIP from the small gallery thumbnail images, it unfortunatly also removes the CAPTIONS from any of the lightbox enlargements.

    Is it possible the script could be modified to only affect the thumbnails and not the enlargements?

Viewing 30 results - 1,231 through 1,260 (of 2,320 total)