Forum Replies Created

Viewing 30 posts - 31,651 through 31,680 (of 34,558 total)
  • Author
    Posts
  • Hi,
    In the footer the Lost Password link doesn’t seem to be covered, but you can drop it down a line if you wish.
    Try this code in the General Styling > Quick CSS field:

    .woo-ma-lost-pass:before {
      content: "\A\A";
      white-space: pre;
    }

    before:
    2017-09-09_170952
    after:
    2017-09-09_170808

    Best regards,
    Mike

    in reply to: Burger menu not appearing #850010

    Hi,
    Changes made, please check and clear your cache for the site and browser.

    Best regards,
    Mike

    in reply to: Downgrade Version #850008

    Hi,
    Thank you for sharing your solution, we will close this now. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: space between menu items #850007

    Hi,
    To move the mobile burger menu to the right, Try this code in the General Styling > Quick CSS field:

    @media only screen and (max-width: 766px) { #top #header .av-main-nav > li {
        padding-left: 80%!important; padding-right: 0px!important;  }}

    2017-09-09_161832

    Best regards,
    Mike

    in reply to: Hide breadcrumb message #850006

    Hi,
    To translate the placeholder word “search”, to “pesquisar”
    Try adding this code to the end of your functions.php file in Appearance > Editor:

    function my_search_form($html)
    {
        return str_replace('Search', 'Pesquisar', $html);
    }
    add_filter('get_search_form', 'my_search_form');

    Best regards,
    Mike

    in reply to: Product Title Too Large #850005

    Hey farrahhaidar,
    Please include the url to the page in question so we can write some css for you.

    Best regards,
    Mike

    in reply to: How to add resizable img in header (like logo) #850004

    Hey trikosm,
    Try adding this code to the end of your functions.php file in Appearance > Editor:

    function add_header_img_scrolled(){
    ?>
    <script>
    
    jQuery(document).scroll(function(){
    
        if(jQuery(this).scrollTop() > 100)
    
        {   
           jQuery('#media_image-2').css({"max-width":"50%"});
    
        } else {
    
           jQuery('#media_image-2').css({"max-width":"100%"});
        }
    
    });
    
    </script>
    <?php
    
    }
    
    add_action('wp_footer', 'add_header_img_scrolled');

    Best regards,
    Mike

    in reply to: Menu not showing up on mobile #850002

    Hey gwinenvato,
    The issue is in your quick css, I removed all of it and the menu worked correctly. please see screenshot in Private Content area.
    I put it all back, please try removing all of it and putting it back a little at a time until you find the root cause. I couldn’t go though it all as you have over 600 lines of code, but at least you know were the issue is now.

    Best regards,
    Mike

    in reply to: Change the link & hover state of sidebar #849999

    Hi,
    Please replace previous code with this code:

    @media only screen and (min-width: 1024px) { .main_color .sidebar a {color: #fff !important}
    .widget_nav_menu .current_page_item>a {color: #33827a !important; }}

    please see screenshot in Private Content area & please clear your cache

    Best regards,
    Mike

    in reply to: Change menu burger icon to a PNG #849998

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

    .av-hamburger::before {
        content: url(https://png.icons8.com/settings/ios7/25);
        display: block;
        padding-top: 5px;
    }
    .av-hamburger-inner {display:none!important;}

    before:
    2017-09-09_144648
    after:
    2017-09-09_144605

    Best regards,
    Mike

    in reply to: Website (Images) not loading properly #849995

    Hi,
    The images didn’t load for me the first time with a Autoptimize error, but they did the second time. I recommend disabling Autoptimize and ask your host to clear your server cache.

    Best regards,
    Mike

    in reply to: sticky section on top #849994

    Hey cipriana,
    The /prueba-inicio-dos/ link led to a 404, so I found /bus-turistico/ and could see your issues.
    Try this code in the General Styling > Quick CSS field:

    @media only screen and (max-width: 767px) { 
    #bandasuperiorincluye {padding-top: 20px !important; }
    .responsive #top #wrap_all .flex_column {margin-bottom: 0px!important; }}
    

    but it’s important that the top ID is the same for all pages, or you can add the other top IDs to the first rule with commas.
    Please see screenshots in Private Content area, and please clear your cache

    On your home page I see your first flex cell with the image in the Private Content area is 330px height, so in mobile view it’s taking the whole screen with all other elements behind it. Would you like to hide this on mobile so people can see your site?

    Best regards,
    Mike

    in reply to: Blog Layout #849985

    Hey irisleonhardt,
    Please check the login info, it’s not working.
    I think I understand 1 & 2, but I need to see it first. Can you please add a screenshot to point out how you would like to see it?
    For number 3, we can hide the preview image in the sports press plugin with css, but you’ll need to turn it back on. This will allow it to show in the “News” blog posts.

    Best regards,
    Mike

    in reply to: Printing issue #849980

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

    @media print {
      a[href]:after {
        content: none !important;
      }
    }

    if that doesn’t work try adding it to the end of your your print.css.
    Please clear your cache

    Best regards,
    Mike

    in reply to: Sticky Top Social Media Bar Mobile #849979

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

    @media only screen and (max-width: 767px) { #top #header_meta {
        position: fixed!important; 
        width: 100%!important; }
    #header_main { padding-top: 50px!important; }
    }

    Please clear your cache

    Best regards,
    Mike

    in reply to: Print CSS for Homepage Blog with Grid Layout #849978

    Hey DTC-sites,
    Try this code in your print.css:

    @media print {
    .av_one_third {
      margin-left: 3%!important; 
      width: 29.333333333333332%!important; 
    }
    }

    Best regards,
    Mike

    Hi,
    I logged in and set all of the team members to individual height which solved the issue as a workaround.
    The issue is when using columns with “Equal height” setting and nesting columns inside these columns. This breaks the HTML div’s, the closing div needed for Equal Height is missing. The development team has reported this issue and told us they are working on a solution for it.
    If you don’t see the fix, please clear your cache

    Best regards,
    Mike

    Hi,
    Perhaps I’m looking on the wrong page but it looks like your blog is showing excerpts. Please see screenshot in Private Content area.
    I have also included my IP.

    Best regards,
    Mike

    in reply to: Custom footer layout #849957

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

    #footer .flex_column {width: 100% !important;}
    #custom_html-2 .custom-html-widget .flex_column_div {width: 20%!important; }

    2017-09-09_100520

    Best regards,
    Mike

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

    .woocommerce .login .lost_password {padding-top: 20px!important; }

    Best regards,
    Mike

    in reply to: Don't receive emails with contact forms information #849948

    Hey Samuel,
    Have you tried disabling your plugins? If that resolves the issue, reactivate each one individually until you find the cause.
    When testing try the WP Mail Logging plugin to see if your site is sending the emails.
    Perhaps try using the WP SMTP plugin to have WordPress use SMTP instead of PHP mail.
    Here’s some more info: http://kriesi.at/documentation/enfold/my-contact-form-is-not-sending-emails/

    Best regards,
    Mike

    in reply to: Posts display issues on iphone devices #849944

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

    @media only screen and (min-width: 633px) and (max-width: 1439px) { .read-more-link {display: inline-block!important;}}
     

    2017-09-09_082512
    Please clear your cache :)

    Best regards,
    Mike

    in reply to: Fixed Frame #849942

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

    @media only screen and (max-width: 989px) {
    .responsive .av-frame.av-frame-left, .responsive .av-frame.av-frame-right, .responsive .av-frame.av-frame-bottom {
        display: inherit!important; }
    .responsive #top #wrap_all .av_mobile_menu_tablet .main_menu {
        right: 30px!important; }}
    
    

    Best regards,
    Mike

    in reply to: Masonry Page Order? #849925

    Hey Peter,
    Sorry, that feature is not available yet, but I did some testing and found that if you order by “last modified” and simply “update” the posts you want at the top, or use the “quick edit” to change the published date or time, you can force the order.
    2017-09-09_055209
    2017-09-09_055805
    While there are plugins such as: https://wordpress.org/plugins/wp-most-popular/ I don’t believe they will work with the Masonry element, but please try.

    Please feel free to request – or vote if already requested – such feature on Enfold feature request form.

    Best regards,
    Mike

    in reply to: the menu color is wrong #849921

    Hi,
    I added this code in the General Styling > Quick CSS field for each of the languages that had the wrong colors:

    #top #header.header_color.av_header_transparency .av-main-nav > li > a .avia-menu-text, #top .av_header_transparency .social_bookmarks li a, .header_color .sub_menu>ul>li>a, #top #wrap_all .header_color.av_header_transparency .phone-info.with_nav span {color: #fff !important;}

    Please clear your cache
    Best regards,
    Mike

    in reply to: 2 Things #849916

    Hi,
    To change the word “Blog” to another word such as “News” in the top left of your posts pages try adding this code to the end of your functions.php file in Appearance > Editor:

    add_filter('avf_title_args', 'fix_single_post_title', 10, 2);
    function fix_single_post_title($args,$id)
    {
        if ($args['title'] == 'Blog')
        {
            $args['title'] = "News";
            $args['link'] = get_permalink($id);
       }
        return $args;
    }

    Before:
    2017-09-09_050149
    After:
    2017-09-09_050303
    I’m not sure if this is the solution your looking for because you said that when you click on a category you see “Blog – [category]” and on my demo I see “Archive for category: [category]”
    2017-09-09_050924
    If this was not the right solution please see our 2017 Demo and link to the page you meant.

    Best regards,
    Mike

    in reply to: CSS for color sections 'minimum height' #849741

    Hi,
    I believe the code your asking about is in /enfold/css/shortcodes.css
    Were you not able to make the changes you wanted directly in the element?
    Perhaps if you explained exactly what you wanted to do we could help better.

    Best regards,
    Mike

    Hi,
    From what I can see, there are several LayerSlider fixes and looks like an update for the next Enfold update. Typically we do update LayerSlider with Enfold updates.

    Best regards,
    Mike

    in reply to: Layer Slider not working #849728

    Hi,
    With your permission, I’m willing to copy your site to my localhost and check there. But I have not found an error on your site to compare against my localhost, other that it being slow which my localhost will naturally run quicker. Is there an exact url that will not work for you (and me) so I can test?
    Please provide exact url:
    exact change to make that you can’t do:
    screenshots would be nice.
    permission to copy to my localhost.

    Best regards,
    Mike

    in reply to: Thank you Message after suscribing to the Newsletter #849721

    Hi,
    Do you mean that you changed theme files directly, or that you added HTML within the builder?
    You can check how updates will effect your site on your desktop with a localhost app, such as the free version of MAMP for Mac or XAMPP for Windows, or LAMP for Linux :)
    I use the portable UwAmp on Windows 10
    To copy your current site to your localhost for testing, I recommend using https://wordpress.org/plugins/duplicator/ then download your update from ThemeForest and apply it to your www/wp-content/themes/emfold/ folder just as if you were using FTP.
    You can also use this setup to test new plugins and changes before doing so on your live site.

    Best regards,
    Mike

Viewing 30 posts - 31,651 through 31,680 (of 34,558 total)