Viewing 30 results - 96,901 through 96,930 (of 142,606 total)
  • Author
    Search Results
  • #617076

    In reply to: Buttons

    Hi!

    We are working on your ticket please wait while we update the results here soon.

    We added the below CSS

    /* Center align 3 button*/
    .inline-block {
    display:inline-block!important;
    margin:0 10px;
    }
    .align-center{
    display:flex;
    justify-content:center;
    }

    And the below shortcode.

    [av_section min_height='' min_height_px='500px' padding='default' shadow='no-shadow' bottom_border='no-border-styling' id='' color='main_color' custom_bg='' src='http://localhost/_proj/enfold/wp-content/uploads/2016/03/travel-banner-1-1500x430.jpg' attachment='376' attachment_size='featured' attach='scroll' position='top left' repeat='stretch' video='' video_ratio='16:9' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern='' custom_class='']
    
    [av_one_full first min_height='' vertical_alignment='av-align-top' space='' margin='0px' margin_sync='true' padding='0px' padding_sync='true' border='' border_color='' radius='0px' radius_sync='true' background_color='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='' custom_class='align-center']
    
    [av_button label='Click me' link='manually,http://' link_target='' size='small' position='center' icon_select='yes' icon='ue800' font='entypo-fontello' color='theme-color' custom_bg='#444444' custom_font='#ffffff' custom_class='inline-block']
    
    [av_button label='Click me' link='manually,http://' link_target='' size='small' position='center' icon_select='yes' icon='ue800' font='entypo-fontello' color='theme-color' custom_bg='#444444' custom_font='#ffffff' custom_class='inline-block']
    
    [av_button label='Click me' link='manually,http://' link_target='' size='small' position='center' icon_select='yes' icon='ue800' font='entypo-fontello' color='theme-color' custom_bg='#444444' custom_font='#ffffff' custom_class='inline-block']
    
    [/av_one_full][/av_section]

    Please check the page in private content. some custom class names are added to advance layout elements to buttons and 1/1 col to achieve this.

    Cheers!
    Vinay

    • This reply was modified 9 years, 7 months ago by Vinay.
    pantoni
    Participant

    Hi guys

    I’ve got an issue with the Enfold Gallery on mobile (see screen below).

    When touching a Gallery image to launch the light box, it firstly displays the desktop hover state black/white title. When touching again to launch the light box, that then displays however the hover state title still displays on top of the image – and does so when navigting to each image.

    I guess we need to disable this desktop title for mobile somehow?

    Thanks

    #617068

    Hi Vinay,

    I tried that approach with feature images. I added one and then checked to not display it on the post, and then embedded it in the description and included the caption. When I do that however the default category/archive pages display the feature image then title and then the image again which looks a bit crazy. So I guess I was hoping for a solution that would involve displaying the caption automatically below the feature image.

    Your suggestion may meet Gallop_Web’s needs however. I have another request open on the same topic so don’t mean to hijack the conversation.

    Cheers,
    Marsha

    newuser1
    Participant

    Yigit really helped a few hours ago and did an amazing job, but we just noticed the transparent logo is not showing correctly as transparent on the main News/Blog page on Mobile version.

    Everything should already be set to transparent header in the option on the bottom right and in the theme etc.

    All the other pages were fixed and look great, but that one page is not showing the correct transparent logo on mobile. Thank you for your help finalizing because it is urgent.

    I posted the topic this is from in the private info below because it was closed to responses because we didn’t realize the News page wasn’t showing correctly. Thanks again for your help!

    #617036

    Hi mcraig77!

    Please try adding your number using HTML as instructed here – https://kriesi.at/support/topic/phone-number-click-to-call/#post-452509

    Cheers!
    Yigit

    #617027

    Hey!

    Currently it is set to 30px, you can adjust the value using following custom CSS

    .widget {
        padding-top: 25px !important;
    }

    :)

    Regards,
    Yigit

    Hey!


    @mindimer
    Can you please post the link to your website?

    @antisemitism
    Replied you here – https://kriesi.at/support/topic/animations-not-working/

    Regards,
    Yigit

    #617024

    Shalom


    @antisemitism
    I already replied you here – https://kriesi.at/support/topic/animations-not-working/#post-617022
    My “pointless suggestion” above is a crucial one :)
    Users may have specific issues that is why we are suggesting users to start their own threads and sticking to it.

    Cheers!
    Yigit

    #617021

    Great, that closed it up a bit, much better anyway. Is their padding at the top as well that can be removed or reduced?

    #617019

    In reply to: Layerslider on mobile

    Hey andrea!

    Please add following code to Quick CSS as well

    @media only screen and (max-width: 768px) {
    .home #main {
        margin-top: 5px;
    }}

    Regards,
    Yigit

    #617014

    Topic: Animations not working

    in forum Enfold
    CAA
    Participant

    I was waiting for an answer here (https://kriesi.at/support/topic/problems-since-updating/#post-614247) but someone closed the thread without resolving the problem. Animations on our site have been broken for a week. No sliders, no charts, nothing.

    #616993

    Shalom!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    @media only screen and (max-width: 768px) {
    .responsive #top .logo, .responsive #top .logo img {
        float: right;
    }
    #advanced_menu_toggle {
        right: auto;
        left: 0;
    }}

    Best regards,
    Yigit

    #616979

    In reply to: Google adsense

    Hey DarkJustice!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    #top #wrap_all ins:before {
        display: none;
    }

    Cheers!
    Yigit

    #616967

    Hi!

    Please try adding following code to Functions.php file in Appearance > Editor

    function custom_blog_banner(){
    if(wp_is_mobile() ){
    ?>
     <script>
    // Hide Header on on scroll down
    var didScroll;
    var lastScrollTop = 0;
    var delta = 5;
    var navbarHeight = $('#header').outerHeight();
    
    $(window).scroll(function(event){
        didScroll = true;
    });
    
    setInterval(function() {
        if (didScroll) {
            hasScrolled();
            didScroll = false;
        }
    }, 250);
    
    function hasScrolled() {
        var st = $(this).scrollTop();
        
        // Make sure they scroll more than delta
        if(Math.abs(lastScrollTop - st) <= delta)
            return;
        
        // If they scrolled down and are past the navbar, add class .nav-up.
        // This is necessary so you never see what is "behind" the navbar.
        if (st > lastScrollTop && st > navbarHeight){
            // Scroll Down
            $('#header').removeClass('nav-down').addClass('nav-up');
        } else {
            // Scroll Up
            if(st + $(window).height() < $(document).height()) {
                $('#header').removeClass('nav-up').addClass('nav-down');
            }
        }
        
        lastScrollTop = st;
    }
     </script>
    <?php
    }}
    add_action('wp_footer', 'custom_blog_banner');

    then add following code to Quick CSS in Enfold theme options under General Styling tab

    .nav-up {
        top: -40px;
    }

    Please note that i have not tested the code and that you would be only able to see the changes on mobile, resizing browser window would not work.

    Best regards,
    Yigit

    agorton
    Participant

    I have some testimonials embedded on my pages – they should be on the right under the photo here

    But … they stopped displaying a couple days ago. And from my child theme I do not seem to have access to Appearance/Editor.

    Credentials below.

    Thanks!

    #616932

    In reply to: Remove comments text

    Hi Jordan,

    Please find credentials below. I’ve logged a couple of other support requests as well, any chance you can take a quick look at those as well?

    Very grateful for your help.

    Cheers,
    Marsha

    I have now added a page and designed the blog page using the Avia builder but have logged another question about pagination. Can anyone help with that please. This topic can be closed if it can be addressed.

    Hi!

    I added following code to Quick CSS in Enfold theme options under General Styling tab

    
    @media only screen and (max-width: 767px) {
    #top .av_header_transparency.av_alternate_logo_active .logo a > img {
        display: none !important;
    }
    .responsive #top .av_header_transparency .logo img.alternate { 
    display: block !important; 
    }}

    Please review your website now

    Regards,
    Yigit

    #616908
    gzelasco
    Participant

    Im not updated new wordpress
    Enfold contact formstop working

    Im not receiving email

    #616900
    newuser1
    Participant

    Hello, how can we make all our single post pages show the Menu header Text in teal#007272 so it can be seen?

    (The menu header text looks great in white on all our other pages like home, about us,what we do, news, contact us, etc. but when you click on an actual single post page the Menu header Text can’t be seen because it is white. We don’t want to change the header background color because it looks good, we only want to change the Menu text color on single posts pages if possible.

    Also, we haven’t received a response regarding our separate urgent topic “How To Make Mobile Logo Transparent when there may already be existing CSS” we posted that should be really quick to implement/fix the existing css etc. Thank you, we really appreciate your help!

    #616885

    Hi axelfx07!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    #top .av-submenu-container .current-menu-item .avia-menu-text {
        color: red;
    }

    Cheers!
    Yigit

    #616865

    Hey BetuwePC!

    Please refer to this post – https://kriesi.at/support/topic/hamburger-button/#post-567002

    Best regards,
    Yigit

    #616850

    I don’t need to alter any header at all, it was just a hugest part of classes located in the single place I could find. )
    I have experience, but I don’t have time.

    So, ok. I’ve got the point, we can close the topic.
    Thanks! )

    Roger
    Participant

    Hello,
    I’m having an issue where the background for the icon boxes is not fully extending to cover the content. The icon boxes have a -160px top margin to overlay on the color section.

    http://www.carrypermit.net/beta/wp-content/uploads/2016/04/chandler.png

    • This topic was modified 9 years, 8 months ago by Roger. Reason: mis-spelling
    #616756

    Thanks. When you login, if you look at the Renovation Loans post, you’ll see that it still works. For example, the top full width easy slider shows up for a wider screen over 990px and then goes away and displays the 2nd full width easy slider once the screen width drops below 990px. However, I don’t see the css class option anymore where I had put in the .only-desktop and .only-mobile respectively.

    If you look at a newer post like the MHFA $1000 Down Program, both sliders are showing up as I don’t have the area to put in the css class. (unless I’m an idiot and am missing it somewhere which very well could be the case)

    Login info below. Thanks for your help!

    #616749

    Thank you for this, however I’m having a bit of trouble finding this… “Then go to the blog/post slider/portfolio/masonry grid element settings screen, scroll to the bottom of the option window and configure the order/orderby settings.”

    Also where exactly do I insert that code into the php file? Anywhere? Top bottom?

    spainion
    Participant

    Recently product variations stopped working, we have processed several hundred using products with variations.
    I have tried disabling all plugins accept WooCommerce and still get the error only while using Enfold.

    I am pretty confident there is an issue with Enfold, I recently updated to 3.5.3.

    I have done a lot of research and none of the solutions I can find appear to be working

    We are losing quite a bit of money while the site is down. Help would be greatly appreciated!

    Thank You,

    Robert

    • This topic was modified 9 years, 8 months ago by spainion.
Viewing 30 results - 96,901 through 96,930 (of 142,606 total)