Forum Replies Created

Viewing 30 posts - 20,461 through 20,490 (of 25,536 total)
  • Author
    Posts
  • in reply to: Contact Form Sending animation color #837749

    Hey mcraig77,

    We would be glad to help you with this customization, but at the moment there is no easy way to do this by using a small custom code snippet, so I am afraid its out of the scope of our support.

    But please feel free to request such feature at our feature request system: https://kriesi.at/support/enfold-feature-requests/

    This system allows us to keep track of user suggestions and lets you vote on the feature you would like to see the most. I am afraid though there is no guarantee that a feature will get implemented. If that’s something you really need you can always try to hire a developer for the task :)

    Best regards,
    Nikko

    in reply to: Navigation Menu Setup #837748

    Hi,

    Please replace this code I gave:

    #header .widget {
        width: 185px;
        left: auto;
        right: 0;
    }
    
    #header .widget .avia-button-wrap {
        float: left;
        display: block;
        clear: none;
    }

    to:

    #header .widget {
        width: 200px;
        left: auto;
        right: 0;
    }
    
    #header .widget .avia-button-wrap {
        float: left;
        display: block;
        clear: none;
        margin-left: 10px;
    }

    As for making the mobile menu appear sooner try adding this css code:

    @media only screen and max-width(1200px) {
      #avia-menu li.menu-item {
        display: none;
      }
    
      #avia-menu li.av-burger-menu-main {
        display: block;
      }
    }

    Let us know if this helps :)

    Best regards,
    Nikko

    in reply to: iphone 7 plus / safari no menu on mobile #837740

    Hey mcraig77,

    Can you try adding this css code in Quick CSS (located in Enfold > General Styling):

    @media only screen and (max-width:767px) {
      .container #advanced_menu_toggle {
        display: block !important;
      }
    }

    then clear or flush out cache. Hope this helps.

    Best regards,
    Nikko

    in reply to: Update cart button not displaying #837356

    Hey ReejZA,

    I tried to check your site but it’s on maintenance mode. Can you give us access to check it?

    Best regards,
    Nikko

    in reply to: Change Link Hover Highlight Color #836695

    Hi Chris,

    First make sure that Show element options for developers is checked under Enfold > Layout Builder, then on the page add a class on the module. Then just add this css:

    .my_custom_class a:hover {
        color: #444;
    }

    or

    .my_custom_class a:hover {
        color: #444 !important;
    }

    Hope this helps. :)

    Best regards,
    Nikko

    in reply to: fullwidth masonry gallery not centered #836692

    Hi Chris,

    Can you try adding this css code in Quick CSS:

    .av-masonry-container {
        min-width: 100%;
    }

    Hope this helps. :)

    Best regards,
    Nikko

    in reply to: Login and Registration Popup #836691

    Hey Frank,

    I haven’t tried this yet but you might want to check this out: https://wordpress.org/plugins/login-with-ajax/

    Best regards,
    Nikko

    in reply to: Header on mobile #836689

    Hi Chris,

    Try adding this css code in Quick CSS (located in Enfold > General Styling):

    @media only screen and (max-width:767px) {
      .responsive #top #wrap_all .container {
        width: 100%;
        max-width: 100%;
      }
    }

    Let us know if this helps :)

    Best regards,
    Nikko

    in reply to: Hide on Tablet Landscape Issue #835645

    Hey cooreets,

    You might want to add this code in Quick CSS (located in Enfold > General Styling):

    @media only screen and (min-width:768px) and (max-width:989px) {
      .custom_class {
        display: none !important;
      }
    }

    Just replace .custom_class with the right class you are using. Hope this helps :)

    Best regards,
    Nikko

    in reply to: Screen Size Font Trouble #835644

    Hey cooreets,

    Can you post a link of the page showing the issue? also point us to the right text and what font size should it be using.

    Best regards,
    Nikko

    in reply to: Hiding Section ID on mobile / desktop #835643

    Hi,

    You can use this code to show custom section on mobile but not on desktop:

    #customid {
      display: none;
    }
    
    @media only screen and (max-width:767px) {
      #customid {
        display: block;
      }
    }

    Hope this helps, just replace customid with the custom id you are using. :)

    Best regards,
    Nikko

    in reply to: Expand column background to entire grid row cell #835639

    Hi,

    Glad that you figured it out. Thanks for using Enfold :)

    Best regards,
    Nikko

    in reply to: Google Fonts not working on mobile devices #835638

    Hey trellyn,

    Are you referring to the Rock Salt font? I also see it on desktop that it’s not the same as: https://fonts.google.com/specimen/Rock+Salt?category=Handwriting&selection.family=BioRhyme%7CKanit%7CKaushan+Script%7CNobile%7CPoppins%7CSatisfy
    Can you provide us with admin access? so we can check the backend.

    Best regards,
    Nikko

    in reply to: Open popup modal with Button #835635

    Hi,

    Glad that Yigit helped you. Thanks for using Enfold :)

    Best regards,
    Nikko

    in reply to: ENFOLD, top bar, Phone Number or small info text #835634

    Hey newtonlinchen,

    Try adding this js code at the bottom of functions.php:

    function add_custom_script(){
    ?>
    <script type="text/javascript">
    (function($){
    	function change_topinfo() {
    		$(".page-id-111 .phone-info span").text('123456');
    		$(".page-id-112 .phone-info span").text('234567');
    		$(".page-id-113 .phone-info span").text('345678');
    	}
    
    	change_topinfo();
    })(jQuery);
    </script>
    <?php 
    }
    add_action('wp_footer', 'add_custom_script');

    Just replace .page-id-xxx with the right page id number and the number within .text() to be the new content. HOpe this helps :)

    Best regards,
    Nikko

    in reply to: Text consistancy issues #835631

    Hi,

    Glad that Ismael helped you. Let us know if you need more assistance :)

    Best regards,
    Nikko

    in reply to: Navigation Menu Setup #835630

    Hi,

    Try adding this css code in Quick CSS (located in Enfold > General Styling):

    #header .main_menu {
        right: 50%;
        margin-right: -250px;
    }
    
    #header .widget {
        width: 185px;
        left: auto;
        right: 0;
    }
    
    #header .widget .avia-button-wrap {
        float: left;
        display: block;
        clear: none;
    }

    Hope this helps.

    Best regards,
    Nikko

    in reply to: Site crashed after Enfold Update #835158

    Hi,

    We are very sorry for the late response since there are a lot of queries lately, this error usually happens when the php version used is below 5.6.

    Best regards,
    Nikko

    in reply to: keine Unterstreichung von Links #835154

    Hi,

    Glad that Yigit helped you. Thanks for using Enfold :)

    Best regards,
    Nikko

    in reply to: link problem with tab section #835152

    Hi Tomo,

    Glad that it’s fixed. Thanks for using Enfold :)

    Best regards,
    Nikko

    in reply to: Size of titles and captions #835150

    Hey Mark,

    Titles and captions use the same font size on tablet however for mobile devices it is reduced, you can change it by adding this css code in Quick CSS (located in Enfold > General Styling):

    @media only screen and (max-width:767px) {
      .responsive #top .slideshow_caption h2 {
        font-size: 32px !important;
      }
    
      .responsive #top .slideshow_caption p {
        font-size: 24px !important;
      }
    }

    Just adjust the sizes as you see fit (the first one is the title, the 2nd one is the text below it). Hope this helps.

    Best regards,
    Nikko

    in reply to: Navigation Menu Setup #835147

    Hi,

    The best way would be to use a child theme create a separate menu for the buttons and tweak with css however this would take a lot of time to do, I would suggest to use a single menu set the last 2 menu items to buttons then add a left margin to the signup menu (button).

    Best regards,
    Nikko

    in reply to: bbpress login/account-overview widget #835145

    Hey therzig,

    Can you post the exact link where those screenshots appear on your site?

    Best regards,
    Nikko

    in reply to: gym theme welcome page problem #835144

    Hi,

    I have checked your site and on the page you mentioned it shows this error on the console:

    Failed to load resource: the server responded with a status of 403 ()

    Seems like it’s a security issue, you might need to check your file/folder permissions.

    Best regards,
    Nikko

    in reply to: png upload http error #833112

    Hey Tamosch,

    Please post us your login credentials (in the “private data” field), so we can take a look at your backend.

    Login credentials include:

    • The URL to the login screen.
    • A valid username (with full administration capabilities).
    • As well as a password for that username.
    • permission to deactivate plugins if necessary.

    Best regards,
    Nikko

    in reply to: Widget Area Below Single Blog Post #833111

    Hi,

    Glad that you found a plugin that fits on what you wanted to achieve, let us know if you need more assistance :)

    Best regards,
    Nikko

    in reply to: Horizontal menu separator #833110

    Hey Erwin,

    Can you post a link to your site? so we can take a closer look.

    Best regards,
    Nikko

    in reply to: Can't play embeded YouTube videos #833105

    Hey elsmore01,

    Please post us your login credentials (in the “private data” field), so we can take a look at your backend.

    Login credentials include:

    • The URL to the login screen.
    • A valid username (with full administration capabilities).
    • As well as a password for that username.

    Best regards,
    Nikko

    in reply to: Website down after hack #833102

    Hey TR0PEN,

    Your wp-config.php file has 222 permission, can you try to set it to 755?

    Best regards,
    Nikko

    in reply to: Gallery problem – no lightbox #833099

    Hey cyberhrc,

    Please post us your login credentials (in the “private data” field), so we can take a look at your backend.

    Login credentials include:

    • The URL to the login screen.
    • A valid username (with full administration capabilities).
    • As well as a password for that username.
    • permission to deactivate plugins if necessary.

    Best regards,
    Nikko

Viewing 30 posts - 20,461 through 20,490 (of 25,536 total)