Forum Replies Created

Viewing 30 posts - 56,281 through 56,310 (of 67,482 total)
  • Author
    Posts
  • in reply to: Blog Posts Bug #316284

    Hey!

    Thank you for the info.

    In the meantime, please refer to this link for a possible fix: https://kriesi.at/support/topic/issue-with-seo-by-yoast/

    Cheers!
    Ismael

    Hi!

    Please try adding this:

    .wp-playlist .mejs-container {
    margin: 0;
    width: 100%;
    height: auto !important;
    min-height: 620px !important;
    }

    Best regards,
    Ismael

    in reply to: Blog/Post Slider do not work #316280

    Hey!

    Glad it is working now. Enfold version 2.9.2 should be compatible with the latest update of WordPress.

    Regards,
    Ismael

    in reply to: Menu style problem #316279

    Hi!

    Thank you for using Enfold.

    Looks like you’re using a mega menu. Those are the column titles which is slightly bigger than main menus by default. You can change the main menu styling on Enfold > Advanced Styling panel. Insert the Main Menu Links element.

    Cheers!
    Ismael

    in reply to: Show body background image in header? #316277

    Hi!

    You need to set the page’s Activate Header transparency to Transparent Header then place a Color Section. Apply the background image on the Color Section then place all content inside. If you can provide a screenshot of what you’re trying to accomplish, it’ll help a lot.

    Cheers!
    Ismael

    Hi JUAN DE DIOS!

    Thank you for using Enfold.

    Do you mind providing a screenshot on how you want the header to look like when viewed on mobile device?

    Cheers!
    Ismael

    in reply to: Add a button the top nav menu #316270

    Hey mcraig77!

    Thank you for using Enfold.

    You can add this at the very bottom of functions.php:

    function add_custom_script(){
    ?>
    <div id="header-right"><div class="container"><a href="http://ucirotc.com/?page_id=71">Apply</a></div></div>
    <?php
    }
    add_action('ava_main_header', 'add_custom_script');

    Use this on Quick CSS or custom.css to stylize the button:

    div#header-right div a {
    background: yellow;
    padding: 10px 16px;
    font-size: 20px;
    text-transform: uppercase;
    border-radius: 10px;
    color: white;
    }
    
    div#header-right {
    position: absolute;
    right: 30%;
    }

    Cheers!
    Ismael

    Hi CB!

    Thank you for using Enfold.

    You can add this on Quick CSS or custom.css to show the actual image size of the gallery:

    #top div .avia-gallery img {
    width: auto;
    }

    Regards,
    Ismael

    in reply to: mega menu #316266

    Hey suchfin!

    Thank you for visiting the support forum.

    We need to see the actual website in order to provide you with a proper css solution.

    Cheers!
    Ismael

    in reply to: Closing the gap #316264

    Hi!

    Please use this on Quick CSS:

    .flex_column {
    margin-left: 6% !important;
    }

    Regards,
    Ismael

    in reply to: Second-level nav/menu bar encroaches on full-width layerslider #316263

    Hey!

    Thank you for the info.

    Try adding this on Quick CSS or custom.css:

    .avia_mega_div.avia_mega2.six.units {
    margin-left: -200px !important;
    }

    Regards,
    Ismael

    in reply to: Events Functionality #316260

    Hi NickyCheese!

    Thank you for using Enfold.

    You vote or post the feature on our Feature Requests page. If there are enough votes, we will definitely try to include it on future updates.

    Regards,
    Ismael

    Hey!

    1.) I don’t think users will intentionally resize the browser as you described. I don’t actually see the issue on my installation.

    2.) The demo is still using WP 3.9.2.

    Regards,
    Ismael

    in reply to: Lightbox doesn´t work #316257

    Hey!

    Please use this to remove the borders:

    .wp-image-borders img {
    box-shadow: none !important;
    border: none !important;
    }

    Best regards,
    Ismael

    in reply to: alternate row colors in table #316252

    Hi tgdigitalsolutions!

    Thank you for using Enfold.

    Please use this on Quick CSS or custom.css:

    .main_color table caption, .main_color tr:nth-child(even), .main_color .pricing-table>li:nth-child(even) {
    color: #666666;
    }
    
    .main_color tr:nth-child(odd), .main_color .pricing-table>li:nth-child(odd), .main_color .pricing-extra {
    background: #ffffff;
    }

    Regards,
    Ismael

    in reply to: Contact Form Issues #316250

    Hey!

    Thank you for the screenshots.

    1.) No, unfortunately, you can’t use it without proper modification. Please create a retina ready image, 50x90px in size then use Yigit’s snippet to apply the background image.

    2.) This will require a script to disable the keyboard on select input which falls beyond the scope of support. Please hire a freelance developer or visit Envato Studio / Werkpress for further customization.

    Regards,
    Ismael

    in reply to: Accordion Toggle Colors #316240

    Hi djshortkut!

    Thank you for using Enfold.

    Please use the following:

    Not Active

    .main_color .toggler {
    background: #4880b4;
    color: white;
    }

    Hover

    .main_color .toggler:hover {
    color: black;
    background: #2c5b9c;
    }

    Active:

    .toggler, .main_color .toggler.activeTitle:hover {
    background: red;
    color: white;
    }

    Content:

    .main_color .toggle_content {
    background: #fcfcfc;
    }

    Regards,
    Ismael

    in reply to: Single product page – image sizes #316238

    Hi!

    I just checked the website and the code snippet Dude provided is working. The link is missing. A screenshot of the issue will help.

    Cheers!
    Ismael

    in reply to: Post slider – remove arrow in circle #316237

    Hey!

    Thank you for the update.

    Are you referring to the small preview background? Please use this:

    .main_color .small-preview, .main_color .small-preview:hover {
    background: transparent;
    }

    Cheers!
    Ismael

    Hey!

    Thank you for sharing the fix.

    Please refer to this link for another possible fix: https://kriesi.at/support/topic/issue-with-seo-by-yoast/

    Best regards,
    Ismael

    Hi!

    Thank you for using Enfold.

    In order to migrate the theme successfully and leave the database intact, please use this plugin: http://wordpress.org/plugins/wp-migrate-db/

    Refer to this link for more info on how to properly migrate your enfold website from production to development vice versa:

    http://kriesi.at/documentation/enfold/move-from-a-local-installation-to-a-live-server/
    https://code.tutsplus.com/tutorials/migrating-your-wordpress-database-wp-migrate-db-production-to-development–wp-32684

    Make sure that you’re running Enfold 2.9.2 with WordPress 4.0.

    Cheers!
    Ismael

    in reply to: Add onclick event in button shortcode #315947

    Hi kriru!

    Thank you for using Enfold.

    Please add a unique selector for every buy now avia button. Refer to this link how: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/

    Let’s use “ga-buy” for example. Add this at the very bottom of functions.php to add the onclick attribute on the buy button with the “ga-buy” custom css class:

    function add_custom_script(){
    ?>
    <script>
    jQuery(window).load(function(){	
    	jQuery('.ga-buy a').attr('onclick', 'ga(\'send\', \'event\', \'Buy Button\', \'Resume\', \'Resume Template Download\')\;');
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_script');

    Cheers!
    Ismael

    in reply to: Read More tag not working in Icon Box #315942

    Hey!

    We changed the Blog Style on Enfold > Blog Layout to enable the Advance Layout Builder then we added the Blog Posts element on the actual page. You should set the Blog Content Length to Excerpt with read more link. This is your blog page now: http://moneymakeshappy.nl/?page_id=731

    In case you have any questions, please take some time to review all of the resources in the Theme Documentation as a lot of basic stuff like theme installation, css snippets etc are already available in there with better explanation and awesomeness. Watch some of our Video Tutorials to learn more about the different aspect of the theme. You can also search the forums for queries that has been answered before that might be related to your problem.

    If you find that you still have questions after taking the time on our documentations, don’t hesitate to let us know and we will be happy to assist you. If you have any requests or you feel like giving us a warm hug? You can definitely post it on our Feature Requests page. :)
    Thanks!

    Best regards,
    Ismael

    in reply to: Background on portfolio items and other questions #315936

    Hey!

    Please add this on Quick CSS or custom.css:

    .main_color {
    background: #d6e1dc url(https://www.ivantirtiaux.com/wp-content/uploads/2014/08/background-IvanTirtiaux-texte-11.jpg) top center no-repeat fixed;
    background-size: 100%;
    }

    Your News page have a sidebar so transparent header won’t work unless you place a color section or slider at the top of the page. Set the Blog Style to the very last option on Enfold > Blog Layout panel. Edit the actual blog page then use the Advance Layout Builder to insert the Blog Posts element. You can now add a Color Section or Slider on top of the posts then set the header as transparent. Change the menu color only for blog with this:

    .blog .header_color .main_menu ul:first-child > li > a {
    color: white;
    }

    Regards,
    Ismael

    in reply to: WP SEO by Yoast deletes random metas & titles #315929

    Hi!

    Please keep the code snippet for now. It should be fix on the next update.

    Regards,
    Ismael

    in reply to: DIFFERENT HEADER IMAGES #315925

    Hi!

    Set the Activate Header transparency to transparent header then add a Color Section at the very top of the page. Apply the background image on the Color Section. In case you have any questions, please take some time to review all of the resources in the Theme Documentation as a lot of basic stuff like theme installation, css snippets etc are already available in there with better explanation and awesomeness. Watch some of our Video Tutorials to learn more about the different aspect of the theme. You can also search the forums for queries that has been answered before that might be related to your problem.

    If you find that you still have questions after taking the time on our documentations, don’t hesitate to let us know and we will be happy to assist you. If you have any requests or you feel like giving us a warm hug? You can definitely post it on our Feature Requests page. :)
    Thanks!

    Regards,
    Ismael

    in reply to: Header layout changes when viewed in Internet Explorer #315922

    Hey!

    Thank you for the info.

    Please add this on Quick CSS or custom.css:

    
    .avia-msie div .logo {
        right: 0px;
    }
    
    .avia-msie .main_menu {
        left: 0px;
    }

    Best regards,
    Ismael

    in reply to: Shrink additonal Content in Shrinking Header #315918

    Hi sundialstudios!

    Thank you for using Enfold.

    Please add this on functions.php:

    function add_stuff_to_header_func() {
    	?>
    	<div id="header-right">PUT ANY CONTENT HERE</div>
    	<?php
    }
    add_action('ava_main_header', 'add_stuff_to_header_func')

    Use the #header-right selector on Quick CSS to stylize the new container.

    Best regards,
    Ismael

    Hi!

    Please post the login details here. Set it as a private reply. We would like to check it.

    Best regards,
    Ismael

    in reply to: Contenet editor issue after upgrade to WP 4.0 #315658

    Hey!

    Thank you for the info.


    @matjaz_
    : We we’re able to verify the text block editor issue on WP 4.0. We already reported the issue to Kriesi. It should be fix on the next update.


    @erwanpia
    : I think you’re having a different issue. Make sure that you’re running Enfold 2.9.2. Deactivated all plugins then test it again.

    Regards,
    Ismael

Viewing 30 posts - 56,281 through 56,310 (of 67,482 total)