Forum Replies Created

Viewing 30 posts - 6,481 through 6,510 (of 10,428 total)
  • Author
    Posts
  • in reply to: decrease height #647936

    Hey BPC,

    It appears you have figured this one out? If please select nopadding in color section edit options.

    Best regards,
    Vinay

    in reply to: Blank Page after updates WP 4.5.2 Enfold 3.6.1 #647922

    Hey ragugo,

    I check the site and on the homepage header setting in the right sidebar of the page “Layout” options you have set the header to show up on scroll which is working exactly as it should :)

    The colorsections too show up correctly if you still have any issues please let us know precise link where we can inspect the element in question?

    Best regards,
    Vinay

    in reply to: when i use icon,it not display #647916

    Hi,

    I can see your site is loading and wordpress login page also loads, if you forgot password please use the forgot password option.

    Best regards,
    Vinay

    in reply to: css to remove dropshadow on header #647911

    Hi,

    Glad we could help!
    We really appreciate it if you rate our theme on themeforest .
    To know more about enfold features please check – http://kriesi.at/documentation/enfold/
    Thank you for using Enfold :)

    Best regards,
    Vinay

    Hi,

    To get rid of the bullet points Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    li.cat-item {
    list-style:none!important;
    }
    

    Best regards,
    Vinay

    Hey spleeky,

    The code has changed a bit please refer to https://kriesi.at/support/topic/color-section-at-least-60/#post-591950

    I’m afraid these changes cannot be re-produced in child theme as template framkework works only in the main theme folder. After the theme update if you find that these options are missing or changed you may have to repeat this process.

    Best regards,
    Vinay

    in reply to: Help Needed: Positioning logo and menu #647898

    Hey spleeky,

    This can be achieved without any custom code by changing the Enfold settings. Please remove all the custom css code that is added and go to Enfold > Header > header behavior > Let logo and menu position adapt to browser window

    That’s all the logo will be positioned to left and menu to right of the browser width :)

    Best regards,
    Vinay

    in reply to: Color-Section doesn't keep it's content #647895

    Hi,

    This is a bit strange, However I noticed in js console an error flash for a fraction of a second when you try to save a page with some text blocks in a colorsection. A corrupt file or a js conflict is causing this issue i have check for plugin conflict and there is no plugin conflict.

    Please update the theme manually it should resolve this issue – http://kriesi.at/documentation/enfold/updating-your-theme-files/

    Best regards,
    Vinay

    in reply to: default visual editor missing #647891

    Hi,

    Sure, we will keep this ticket open and await your reply.

    Thank you for using Enfold!

    Best regards,
    Vinay

    in reply to: acces box #647889

    Hi,

    Please be noted this is a custom form and not part of the theme element even tho it is out of our support scope we are happy to help you resolve this.

    I notice in your code you have height=”center” please change the value center to 60px or any digit that suits your design.

    If this does not help it is recommended using div instead of tables to build the form..

    Best regards,
    Vinay

    in reply to: getting rid of buttons to next or previous article #647884

    Hi,

    Please confirm if this is working for you now?

    Let us know if you have any questions.

    Best regards,
    Vinay

    in reply to: simple :target issue #647881

    Hi,

    You are welcome!

    Thank you for using Enfold.

    Best regards,
    Vinay

    in reply to: Clicking mobile menu icon moves the main back and forth #647880

    Hi,

    I’m afraid there is no easy way to make the menu fixed and the rest of the header scroll in mobile view. However it is possible to make the whole header fixed in mobile view Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    @media only screen and (max-width: 767px) {
    .responsive #top #wrap_all #header {
        position: fixed!important;
    }
    .html_header_top.html_header_sticky #top #wrap_all #main {
        padding-top: 134px!important;
    }}

    Best regards,
    Vinay

    in reply to: simple :target issue #647721

    Hi,

    When you stop an event from propagating on click it affects the other actions like opening and closing. So there is no easy way to do this with a quick jQuery code. You may need to hire a freelancer to debug the script and stop the event propagation in way that other functions wont get affected.

    function stop_scroll(){
    ?>
    <script>
    jQuery(window).load(function(){ 
     jQuery("a[href='#sow-google-map-2']").click(function($e) {
      $e.preventDefault();
        doSomething();
    });
    });
    </script>
    <?php
    }
    add_action('wp_head', 'stop_scroll');

    Best regards,
    Vinay

    in reply to: Latest News #647714

    Hi,

    Please try adding this at the very end of your themes / child themes functions.php file:

    function custom_time_stamp(){
    ?>
    <script>
    jQuery(window).load(function(){
     jQuery('.news-time').each(function () {
        var text = jQuery(this).text();
        text = (text.length > 15) ? text.slice(0,-9) : text;    
        jQuery('.news-time').text(text);  
    })
    });
    </script>
    <?php
    }
    add_action('wp_head', 'custom_time_stamp');
    

    Best regards,
    Vinay

    in reply to: social icons dont show #647709

    Hi,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    @media only screen and (max-width: 990px) {
    .responsive.html_mobile_menu_tablet #header_main .social_bookmarks {   
        position: absolute;
        top: -30px;
        left: 50%;
        transform: translate(-50%);
        min-width: 300px;
    }
    .responsive #top #wrap_all #header {    
        min-height: 135px;
        padding-top: 30px;
    }}
    

    Best regards,
    Vinay

    in reply to: Contract form does't save any new change setting. #647680

    Hey!

    That’s a bit odd, I have just added “Test subject” in Email subject could you please check and confirm if it is still there? I am assuming when you click save on your browser it is not getting saved. Could you try from a differ browser or a system if possible ?

    Cheers!
    Vinay

    in reply to: Read More Link in the same line as the excerpt #647675

    Hi,

    That’s perfect. I was working on your ticket and creating a jQuery function to do this but CSS is a much better solution.

    Glad it’s resolved and thank you for using Enfold :)

    Best regards,
    Vinay

    in reply to: Trying to run Javascript in Code Block #647424

    Hi,

    Javascript may run in html pages but you need to follow some rules to run javascript code in WordPress to add your custom javascript to wordpress please check this link https://codex.wordpress.org/Using_Javascript Or you try a jQuery function and add it at the very end of your themes / child themes functions.php file.

    Best regards,
    Vinay

    • This reply was modified 9 years, 7 months ago by Vinay.
    in reply to: social icons dont show #647418

    Hi,

    The website don’t look like you have described and there is not enough space above the logo. In tablets or mobile device if you have to do this the header will take more real estate. If possible Would you mind posting us a screenshot/mockup of what you would like to achieve? You can upload the screenshot to imgur.com or dropbox and share the link here :)

    Best regards,
    Vinay

    in reply to: Icon boxes same height? #647415

    Hi,

    The above suggested method is an efficient way to handle equal height using CSS.

    Let us know if you have any questions.

    Best regards,
    Vinay

    in reply to: Transparant background color submenu #647408

    Hi,

    Glad we could help!
    We really appreciate it if you rate our theme on themeforest .
    To know more about enfold features please check – http://kriesi.at/documentation/enfold/
    Thank you for using Enfold :)

    Best regards,
    Vinay

    in reply to: Transparant background color submenu #647388

    Hi,

    The code you entered was replaced in Quick CSS

    
    /* transparent submenu*/
    #top .av-main-nav li:hover > ul {
        background: rgba(0, 58, 121, 0.55) !important;
    }
    
    #top #wrap_all .av-main-nav ul > li:hover > a, #top #wrap_all .avia_mega_div, #top #wrap_all .avia_mega_div ul, #top #wrap_all .av-main-nav ul ul{color:#ffffff;background-color:rgba(0, 58, 121, 0.55) !important;border-color:#ee820f;}
    

    replaced code

    
    .header_color .main_menu ul ul, 
    .header_color .av-subnav-menu > li ul
     {
    	background: rgba(0, 58, 121, 0.55) !important;
    }
    .header_color .main_menu .menu ul li a {
    background:transparent!important;
    } 
    .header_color .main_menu .menu ul li a:hover {
    background:#ee820f !important;
    } 

    The WP rocket was deactivated for testing purpose please clear cache in the plugin options and enable it.

    Best regards,
    Vinay

    in reply to: Image problem #647350

    Hi,

    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,
    Vinay

    in reply to: Inconsistency fonts General and Advanced styling #647348

    Hey Jon Erik,

    Special headings give priority to the font size set in the special heading edit options.

    Best regards,
    Vinay

    in reply to: Sidebar Blog Widget Styling #647343

    Hey yes9310,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:
    change the background color value to suit your design.

    .recent_posts_with_excerpts li {
     background: lightblue;
     padding:30px 20px 30px 30px;
     margin-bottom:30px
    }
    
    .recent_posts_with_excerpts li h2{
     font-size:16px;
     line-height:24px;
    }
    
    .recent_posts_with_excerpts li h3{
     font-size:10px
    }
    
    .recent_posts_with_excerpts li blockquote {
      border:none!important;
      padding:0
    }
    

    This will affect on all pages where you have recent post to display only on home add .hone selector in front of .recent_posts selector.

    Best regards,
    Vinay

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

    Hi,

    Please review the site now we have added the below code in Quick CSS

    @media only screen and (max-width: 767px) {
    #header_main {
    padding-bottom:10px!important;
    }}

    Best regards,
    Vinay

    in reply to: Firefox on Android Nastyness #647324

    Hi,

    Glad it’s sorted.

    To know more about enfold features please check – http://kriesi.at/documentation/enfold/

    Thank you for using Enfold :)

    Best regards,
    Vinay

    Hey spleeky,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    .image-overlay {
     visibility: hidden;
     }
    

    Best regards,
    Vinay

    in reply to: Enfold Showcase #647321

    Hi,

    Nice work on http://schilderendjezielontdekken.nl/ i think you can increase the contrast of the text on image by making it bold or something.

    Best regards,
    Vinay

Viewing 30 posts - 6,481 through 6,510 (of 10,428 total)