Viewing 30 results - 84,061 through 84,090 (of 142,721 total)
  • Author
    Search Results
  • #749177
    porkaloca
    Participant

    So.. I was trying 2 plugins (nosense) for async load : Async js and css and Autoptimize.
    somehow they must have changed something :)
    Can you take a look?
    I’ve already try to reset option and reinstall the theme

    Hey!

    Thank you for using Enfold. And we are very sorry for the late response.

    How do you want the plugin output or the grid to look like? How many columns are you expecting? We can help with the styling modification but you should contact the plugin author for additional help. Please try these css codes:

    ul.products.list li.product h3, ul.products.list li.product div[itemprop="description"], ul.products.list li.product .price, ul.products.list li.product .gridlist-buttonwrap {
        width: 100%;
        float: right;
        clear: none;
        padding: 10px 20px;
    }
    
    #top .thumbnail_container img {
        margin: 0 auto !important;
        float: none !important;
    }

    Cheers!
    Ismael

    #749150

    Hi,

    No problem, let us know if you should need any further help on the topic.

    Best regards,
    Rikard

    #749148

    In reply to: add padding below h1

    Hi,

    Glad you got it working and thanks for sharing your solution :-)

    Please let us know if you should need any further help on the topic or if we can close it.

    Best regards,
    Rikard

    Hi,

    Great, glad you got it working and thanks for sharing your solution :-)

    Please let us know if you should need any further help on the topic or if we can close it.

    Best regards,
    Rikard

    #749145

    Hi,

    Great, glad we could help. Yigit is a genius :D

    Please let us know if you should need any further help on the topic or if we can close it.

    Best regards,
    Rikard

    #749144
    ngavy
    Participant

    ​hi there.
    I have used layerslider6. but one problem caused on my main page.
    on the top. my logo and menu in not showing and it just appear white block.
    please check it out. and get back to me.
    I will appreciate your reply.
    thanks.

    Hey pandaweb,
    I believe what you are seeing is the masonry animation, I see what you are talking about only if I scroll to the bottom of the page and refresh. This is because the masonry animation is scroll triggered.
    If you believe your visitors will be refreshing at the bottom of the page, and would like to remove the animation try to use this code in the General Styling > Quick CSS field:

    .avia_desktop.avia_transform3d .av-masonry-entry.av-masonry-item-loaded .av-inner-masonry{
    -webkit-animation: none; /* Safari 4+ */
    -moz-animation: none; /* Fx 5+ */
    animation: none; /* IE 10+ */
    }
    
    .av-masonry-entry {
    opacity: 1 !important;
    visibility: visible !important;
    }

    Best regards,
    Mike

    #749109

    Topic: Child Main Menu

    in forum Enfold
    margaretpalermo
    Participant

    Hello,

    if I don’t choose the main menu, then it appears twice as home,
    if I choose then the top of the homepage disappears, after some scrolling the main menu appears but weird (e.g. menu item in frame).
    To check the issue, I started from the beginning using a demo page and that was the only thing I changed: menu item names. That’s all. Then the menu disappears…. as described above.
    Probably great theme otherwise, don’t know yet since the menu doesn’t work.

    Did you experience problems with the menu?
    Please help me to sort it out.
    Thanks!

    Sincerely,
    Margaret

    Hi Mike,

    that does not work as you suggested, because adding just #
    when you then click at this button, the page jumps to the top.

    But I don’t want to have ANY link, no “jumping” to anywhere, when a user clicks on such a button:

    it should just be a button without any function, no link.

    #749090

    In reply to: Easy slider 100% width

    Hi,
    I believe you are using the “Fullscreen Slider” which scales to height, try the “Fullwidth Easy Slider” which scales to width.
    Here is a test I did for you:
    laptop
    tablet
    mobile

    Best regards,
    Mike

    #749071
    cpapillion
    Participant

    I changed my site from https to http today. I’m not sure if that has anything to do with it, but my logo is not showing up on the top of my website. I’m not sure what’s going on or how to fix it.

    #749066
    cheaptrip
    Participant

    I wanted to change that category page & archive show entire post. I searched and found solution:
    https://kriesi.at/support/topic/category-page-shows-full-posts/
    However this code destroy my Masonry content element on home page, so could you be so kind and provide me code which will apply only for Category & Archive, but not for Masonry?
    Thanks.

    #749065

    In reply to: Footer issues

    Hi,
    Ok, we will use the copyright socket as your left statement (Enfold Theme Options > Footer > Copyright)
    and for your right statement we will create a footer menu going to Appearance > Menus > Create a New Menu and name it “footer” and click create menu. Add a new custom link with “#” as URL and enter your text as navigation label and then check “Enfold footer menu” under Menu settings. Then click “Screen options” on the top right corner and check “CSS classes” and then give your footer menu (custom text) a custom class (‘ianazi’ for example) then please add following code to Quick CSS in Enfold theme options under General Styling tab.

    .ianazi { pointer-events: none !important; }

    custom footer menu

    Best regards,
    Mike

    #749064

    Hi Rikard,

    I have uploaded the child theme onto my back end. If I am reading correctly, I should activate the child theme, and past the code that Vinay wrote (link: https://kriesi.at/support/topic/page-anchors-on-mobile-devices/#post-698195) to the bottom of your functions.php file under Appearance->Editor.

    Is that correct? By doing so, will my website be reset to the default setting? I am afraid that my website will be lost. Thank you.

    #749062

    Hi Dave,
    Ok, lets try adding this code to your functions.php to hide the logo on scroll:
    For Logo left, menu right & logo right, menu left

    function add_hide_logo(){
    ?>
    <script>
    jQuery(window).scroll(function(){
    if(jQuery(this).scrollTop() > 100) jQuery('.logo').fadeOut('slow');
    if(jQuery(this).scrollTop() < 100) jQuery('.logo').fadeIn('slow');
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'add_hide_logo');

    For Logo center, menu below:

    function add_hide_logo(){
    ?>
    <script>
    jQuery(window).scroll(function(){
    if(jQuery(this).scrollTop() > 100) jQuery('.container.av-logo-container').fadeOut('slow');
    if(jQuery(this).scrollTop() < 100) jQuery('.container.av-logo-container').fadeIn('slow');
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'add_hide_logo');

    When editing functions.php you should use the child theme, Read about it & Get it here

    Best regards,
    Mike

    #749060

    Hi Mike,
    Ok, lets start over (undo above) by adding this code to your functions.php to hide the logo on scroll:

    function add_hide_logo(){
    ?>
    <script>
    jQuery(window).scroll(function(){
    if(jQuery(this).scrollTop() > 100) jQuery('.container.av-logo-container').fadeOut('slow');
    if(jQuery(this).scrollTop() < 100) jQuery('.container.av-logo-container').fadeIn('slow');
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'add_hide_logo');

    When editing functions.php you should use the child theme, Read about it & Get it here
    Best regards,
    Mike

    #749052

    In reply to: Google Maps API error

    Hey Andreas,
    Thank you for using Enfold.
    Please refer to this post:
    https://kriesi.at/support/topic/missingkeymaperror-doesnt-work/#post-681054
    Best regards,
    Mike

    #749049

    In reply to: Hamburger menu

    Hi Mike,

    Yes I stopped using the hamburger menu. But I’d still like to know how to change the colours if I want to use it.

    Thanks

    Hey inertia05,
    Thank you for using Enfold.
    use this code in the General Styling > Quick CSS field:

    @media only screen and (max-width: 767px){
    .responsive #top #wrap_all #header {position: fixed;}
    }

    Best regards,
    Mike

    #749032

    Hi,
    I have found that this issue has been reported by people using Godaddy Managed WordPress, if this is your case the solution seems to call them for a cache flush on their end. Please read more here.

    Best regards,
    Mike

    #749031

    In reply to: Customize menu

    Hey KVSchneppenheim,
    You can add following code to Quick CSS in Enfold theme options under General Styling tab

    ul#avia-menu { position: relative; top: -50px; }
    #header_main_alternate { z-index: 4; }

    and then add a menu item in the middle and set its opacity to 0 with following code

    li#menu-item-117 .avia-menu-text, li#menu-item-117 .avia-menu-fx { opacity: 0; }

    This would be a way to achieve what you are looking for and you could use it as a starting point. You can also try adding margin to right or left of menu items to increase the gap. You can request customization here, as this kind of customization as it is beyond the scope of support we can provide here.

    Best regards,
    Mike

    #749000

    Topic: Issue with Grid-Row

    in forum Enfold
    digitalprint2222
    Participant

    Hi, we got an strange issue with your grid-row.
    This is the code we have in use:

    
    [av_layout_row border='' min_height_percent='' min_height='0' color='main_color' mobile='av-flex-cells' id='' custom_class='']
    [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' mobile_display='' custom_class='minimen1']
    
    [av_textblock size='' font_color='' color='' custom_class='']
    <a href="#">DIE | LÖSUNGEN</a>
    [/av_textblock]
    
    [/av_cell_one_third][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' mobile_display='' custom_class='minimen2']
    
    [av_textblock size='' font_color='' color='' custom_class='']
    <a href="#">DIE | TECHNOLOGIE</a>
    [/av_textblock]
    
    [/av_cell_one_third][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' mobile_display='' custom_class='minimen3']
    
    [av_textblock size='' font_color='' color='' custom_class='']
    <a href="#">DIE | LEISTUNGEN</a>
    [/av_textblock]
    
    [/av_cell_one_third]
    [/av_layout_row]

    The result seems quite strange and buggy to us since its moved totally to the left and not centered as it is supposed to be:

    Thanx for helping
    Regards Martin

    #748982

    Topic: To Fix Mobile View

    in forum Enfold
    erkuto
    Participant

    Hi there,

    On homepage of our website fixx.me, at the top of the page, right side with grey background, the texts and button on it overflowing to the right.
    http://quirktools.com/screenfly/#u=http%3A//fixx.me/&w=1024&h=600&a=1&s=1

    What’s wrong with it?

    Thanks,
    Orhan

    #748978

    Hello Yigit,

    yes, that would be a good solution. Unfortunatly, the lightbox offers other videos (from cookies?) to play if the video is finished. I don’t want this. If I use embedded youtube code the video stops as it should, but lightbox does not seem to play embedded youtube code.
    I have seen the same issue at other users here in the forum without finding a solution. It should be possible I think.

    Let me give you an example (both codes are placed in the box “Picture link”):
    1. works with lightbox, but shows related videos after playing:
    https://www.youtube.com/watch?v=qqXi8WmQ_WM?rel=0
    2. does not works with lightbox (starts as “fullscreen”), stops as it should without offering related videos:
    https://www.youtube.com/embed/qqXi8WmQ_WM?rel=0

    I would like to have the advantages of both: works with lightbox, stops as if should without offering related videos

    Best Regards
    Kai

    PS.: can Kriesi add the functionality as default, so there is no need to use this workaround:
    https://kriesi.at/support/topic/disable-youtube-related-videos/#post-713269

    • This reply was modified 9 years ago by Kai.
    #748977

    I found this in a similar post, which unfortunately does not work for me:

    #top #wrap_all .avia-gallery .avia-gallery-thumb a:nth-last-child(-n+3) {
    display: none !important;
    }

    Unfortunately it only helps, if all of the galleries have the same amount of images, which is not the case. Or do I just not understand the nht-last-child correctly? Any other ideas?

    #748963

    Hi,

    Great, glad we could help. Please let us know if you should need any further help on the topic or if we can close it.

    Best regards,
    Rikard

    #748953

    In reply to: Responsive problems

    Hey inaudit,

    Ok, thanks for the feedback. Please let us know if you should need any further help on the topic.

    Best regards,
    Rikard

    #748950

    Hi Jacopo,

    Great, thanks for the feedback. Please let us know if you should need any further help on the topic or if we can close it.

    Best regards,
    Rikard

    #748932
    Tia
    Participant

    Hi
    I know you provide a social sharing strip with the Enfold theme but I would like to have a social bookmarking function also – I hope I am using the correct terminology.
    What I am looking for is the panel as shown on the kriesi.at page at this link:

    I would like to know what plugin you recommend for this with Enfold?

    Thank you
    Tia

Viewing 30 results - 84,061 through 84,090 (of 142,721 total)