Forum Replies Created

Viewing 30 posts - 32,971 through 33,000 (of 34,859 total)
  • Author
    Posts
  • in reply to: How to wrap code around button #812711

    Hey Wanted2b,
    Try using the shortcode wand in a text element, look for Content Elements > Button. Then you can create one and edit it with your plugin shortcode, and copy/paste shortcode into a code block element, or any other content element or text widget.
    postimage
    Best regards,
    Mike

    Hi,
    Here’s a stab at it, but I’m really not sure if I’m targeting it right, for example, #av_section_6 is in your footer with the 3 widgets, if I make the area transparent the widget text is hard to read. Perhaps a screenshot would help us target the right areas :)

    #av_section_2, #av_section_4, #av_section_6 {
    background-color:transparent!important;
    }

    Best regards,
    Mike

    in reply to: Footer social icons problem #812700

    Hey jenreid_411,
    Your socket was missing the closing tag for your link, I fixed it :)

    Best regards,
    Mike

    in reply to: Menu not responsive on laptop resolution #812697

    Hey Gal726,
    Please go to Enfold->Header->Mobile Menu and select to show the mobile menu for tablets as well.
    Or you can use the following CSSin the General Styling > Quick CSS field:

    @media only screen and (max-width: 1024px) {
    nav.main_menu {display:none !important;}
    #advanced_menu_toggle, #advanced_menu_hide {display:block !important;}
    }

    Adjust the value 1024 to the pixel value of your liking.

    Best regards,
    Mike

    in reply to: Set the preselect option on drop down box contact form #812696

    Hi,
    The code in both of those answers would need to be customized for your site. Can you tell us which options you would like pre-selected and include a admin login in the private content area so we can take a closer look.

    Best regards,
    Mike

    in reply to: Social Sharing buttons in pages #812695

    Hey Jesus,
    You can use the Social Share Button Element in the advanced editor: http://kriesi.at/themes/enfold-2017/elements/social-share-buttons/

    Best regards,
    Mike

    in reply to: Product caps #812687

    Hi,
    I added the code to your child theme css, and cleared cache, it’s now working. Please clear your cache: [http://www.refreshyourcache.com/en/home/] and check :)

    Best regards,
    Mike

    in reply to: Fix footer width and stick to bottom #812685

    Hi,
    We could try to make the grid element 100% visual height:

    .page-id-1041 .grid-sort-container {height: 100vh!important; }

    Best regards,
    Mike

    in reply to: Columns margins #812680

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Picture in mobile version #812673

    Hi,
    We will have to write code for each device:

    /*iPhone 6 Plus in landscape*/
    @media only screen 
    and (min-device-width : 414px) 
    and (max-device-width : 736px) 
    and (orientation : landscape) { .av-parallax-inner.main_color.avia-full-stretch {
    background-position: -0px 100px !important;
    background-size: 200% 105% !important;
    }}
    /*iPhone 5 & 5S in portrait*/
    @media only screen 
    and (min-device-width : 320px) 
    and (max-device-width : 568px) 
    and (orientation : portrait) { .av-parallax-inner.main_color.avia-full-stretch {
    background-position: -650px 100px !important;
    }}

    Over lapping sizes may cause issues, so your first code from last week might need to change to this:

    
    @media only screen and (min-device-width : 569px) 
    and(max-width: 736px) {
    .av-parallax-inner.main_color.avia-full-stretch {
    background-position: -550px 100px !important;
    }}

    Best regards,
    Mike

    in reply to: Main Menu Font won't change size #812665

    Hi,
    I see, it’s when you hover on your menu, the text is lighter, try this:

    #top .av_header_transparency .main_menu ul:first-child > li > a:hover {opacity: 1!important; }

    I also see that when you hover over your sub-menu the text and background is white, so this makes your text your shade of blue:

    #top .header_color .main_menu .menu ul li>a:hover {color: #91dce6!important; }

    Best regards,
    Mike

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Add CSS shadow to headings #812656

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Add CSS shadow to headings #812651

    Hi,
    Try this code in the General Styling > Quick CSS field:

    .av-special-heading-tag {background: rgba(0, 0, 0, 0.5)!important; }

    Best regards,
    Mike

    in reply to: Preloader not preloading #812648

    Hi,
    Do you use a cacheing plugin? There are reports that some block the loading or correct execution of preloading. Please try disabling your plugins. If that resolves the issue, reactivate each one individually until you find the cause.
    Best regards,
    Mike

    in reply to: Product caps #812640

    Hi,
    Odd, Can you please include a admin login in the private content area so we can take a closer look.

    Best regards,
    Mike

    in reply to: Enfold Medical – Responsive Not Working Well #812569

    Hi,
    If you had CSS code in General Styling > Quick CSS field please copy that to the child theme.

    Best regards,
    Mike

    in reply to: Post slider: how to block it? #812568

    Hi,
    This is strange, I tried different categories at different sizes and could not find a difference. Could you add some screenshots so we can try to duplicate the issue?

    Best regards,
    Mike

    in reply to: Anchor issue with sticky header on Ipad #812567

    Hi,
    Try adding a class to the anchor element with a offset height as the padding-top value.
    The anchor link:

    <a class="anchor" name="one">Link One</a>

    The css:

    .anchor {
      display: block!important; 
      height: 100px!important;
      margin-top: -100px!important;
      visibility: hidden;
    }

    Or
    perhaps a plugin: https://wordpress.org/plugins/hash-link-scroll-offset/

    Best regards,
    Mike

    in reply to: Color section arrow & overlay image conflict #812565

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: General Styling doesnt get applied on my webpage. #812564

    Hi,
    Yes you will need to clear the “Fastest Cache” cache each time you make a change. Good choice BTW, it’s the one I use too :)
    So, this is what I do, I clear it and deactivate it while building the site, or if I’m doing heavy changes. Then when I’m happy I activate it! That makes it easy :)

    Best regards,
    Mike

    in reply to: Main Menu Font won't change size #812563

    Hi,
    The last number in your gradient color code is the opacity layer, so if it is 0.5 change it to 0
    or show us the code and we will try to help :)

    Best regards,
    Mike

    in reply to: Optimized files from google pagespeed insights #812561

    Hey subrakavi,
    You can try, sometimes minified or combined js files don’t work correctly.
    Please consider making a backup with a plugin such as https://wordpress.org/plugins/duplicator/
    should it not work out :)

    Best regards,
    Mike

    in reply to: smooth scroll #812558
    in reply to: Anchor blog pagination to same page location #812555

    Hi,
    Perhaps the code didn’t email correctly:

    function add_custom_script(){
    ?>
    <script>
    jQuery(window).load(function(){
    	jQuery("nav.pagination a").each(function(){
    		var theLink = jQuery(this).attr("href");
    		jQuery(this).attr("href", theLink + "#home-blog");
    	});
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_script');

    Best regards,
    Mike

    in reply to: General Styling doesnt get applied on my webpage. #812554

    Hey vinchenson,
    I was able to change your menu links to blue, cleared your “Fastest Cache” logged out and checked in FireFox, Edge, & Chrome with no issues. What color did you want?

    Best regards,
    Mike

    in reply to: Check code for me #812553

    Hey rmavila,
    Try:

    #header{
    opacity: 0.5;
    }
    @media only screen and (max-width: 480px) {
    h1 { font-size: 25px !important; }
    #header_meta .container {
    max-width: 100%!important;
    width: 100%!important;
    }}
    #avia-menu .avia-menu-text {
    font-size: 20px !important;
    }

    Best regards,
    Mike

    in reply to: Main Menu Font won't change size #812552

    Hi,
    Try:

    #header{
    opacity: 0.5;
    }
    @media only screen and (max-width: 480px) {
    h1 { font-size: 25px !important; }
    #header_meta .container {
    max-width: 100%!important;
    width: 100%!important;
    }}
    #avia-menu .avia-menu-text {
    font-size: 20px !important;
    }

    If you are still having trouble please include a admin login in the private content area so we can take a closer look.

    Best regards,
    Mike

    in reply to: Home Page #812551

    Hi,
    I have checked the site in Edge and can see the slider image and text.
    Unless I miss-understood the issue, I can find no issue, see in Private Content area.

    Best regards,
    Mike

    in reply to: Blog Headers – Change to Lowercase? #812548

    Hi,
    I added it to your child theme’s style.css and cleared my cache and can see the changes :)

    Best regards,
    Mike

Viewing 30 posts - 32,971 through 33,000 (of 34,859 total)