Forum Replies Created

Viewing 30 posts - 57,091 through 57,120 (of 67,479 total)
  • Author
    Posts
  • in reply to: New Blog Layout Can't Make Featured Image Full Width #299495

    Hey!

    You can start with the loop-index.php, inside the includes folder. Also, please refer to this link. I’m not sure if this is what you want but it should make the featured image span full width: https://kriesi.at/support/topic/how-do-i-make-the-single-post-with-full-screen-wide-featured-image/

    Best regards,
    Ismael

    in reply to: Partner logo element hover position change #299494

    Hey altei!

    Thank you for using Enfold.

    Unfortunately, you can’t change the position of the tooltip. You need to modify the theme files in order to do that but the task falls beyond the scope of support. You can only try to add a left or top margin to change the position. Add something like this on Quick CSS or custom.css:

    .avia-tooltip.avia-tt {
    margin-top: 150px;
    }

    Best regards,
    Ismael

    in reply to: How to make adjustments to mobile version of website #299492

    Hey!

    Thank you for the link but the website is blank. Please check.

    Cheers!
    Ismael

    Hey akelly7!

    Thank you for visiting Kriesi’s support forum.

    Please edit the masonry element then change the Size Settings to Flexible Masonry. Enable the mobile menu for iPad or tablets on Enfold > Header Layout > Mobile Menu > Header Mobile Menu activation setting. Choose the second option.

    Cheers!
    Ismael

    in reply to: Background image pixelation & quality issues #299489

    Hi!

    Thanks for the update.

    Yes, that is possible. For example, change the background image of the portfolio section with this:

    @media only screen and (max-width: 767px) {
    div#portfolio {
    background-image: url('IMG URI HERE');
    }
    }

    Cheers!
    Ismael

    in reply to: Slow loading website #299487

    Hi!

    Thank you for the info.

    WP Engine has its own caching system as described on their documentation so I guess you don’t need WP Super cache or any plugin regarding that matter. Regarding the BWP Minify plugin, add this on functions.php to exclude the layout.css and custom.css. These two files usually breaks something when they are included on the minification:

    add_filter('bwp_minify_style_ignore', 'exclude_my_css');
     
    function exclude_my_css($excluded)
    {
        $excluded = array('avia-custom, avia-layout');
        return $excluded;
    }

    Anyway, I tested your installation, load it from scratch-cache removed and it loads fairly well. Note that I’m using a pocket wifi and the connection is quite slow.

    Best regards,
    Ismael

    in reply to: Importing Fontello font zip issue #299486

    Hi mstewar22!

    Thank you for using Enfold.

    I’m sorry but you can’t add additional custom graphics. You can only use fonts available on fontello.com.

    Regards,
    Ismael

    in reply to: Custom sidebar menu #299481

    Hi!

    Alright. You can use the custom menu widget then remove the default bullet points using this on Quick CSS or custom.css:

    #top .widget_nav_menu ul ul li:before {
    content: '';
    position: absolute;
    top: 5px;
    }
    
    #top .widget_nav_menu ul ul li.current-menu-item:before {
    content: url('ARROW GRAPHIC URI HERE');
    width: 3px;
    height: 3px;
    display: block;
    position: absolute;
    top: 5px;
    }

    Create your own arrow image then place it as content value of the current-menu-item.

    Cheers!
    Ismael

    in reply to: Product images pop up in a light box #299480

    Hi!

    Please remove browser cache then reload the page a few times. It does work when I test it on my installation.

    Regards,
    Ismael

    in reply to: Slow loading website #299076

    Hi!

    These are the things that you can do to optimize the website speed and page load courtesy of the wordpress community:

    1. Optimize all images with AI/Photoshop before uploading to server ‘save as web safe’ jpg
    2. Once all images are uploaded on the website, optimize with www optimizer plugin twice 1hr 10mins apart.
    3. Install wp-smushit run once to remove jpeg extra data, then uninstall.
    4. Use BWP minify plugin to minify scripts and stylesheets.
    5. Install WP-Super cache, select all recommended settings.
    6. Logout your website, visit every page at least once to create super cache files.
    7. Join Cloudflare setup your website on their CDN, Choose options: Full CDN Optimisation save then activate purge files. once done log out.
    8. Have a cup of coffee.
    9. Visit your site after 20 minutes or so.
    10. Don’t forget to smile.

    Best regards,
    Ismael

    in reply to: How to add/copy social icon links to footer/socket area #299072

    Hey connect4consulting!

    Thank you for using Enfold.

    I’m sorry but the website is blank. You can generate icon shortcodes on any posts or page then copy the shortcode on a text widget.

    Regards,
    Ismael

    in reply to: Revolution Slider Update & Google Fonts on Slider #299070

    Hey addwebtoday!

    Thank you for using Enfold.

    The theme does support the revolution slider but it doesn’t come with the plugin. You need to purchase the revolution slider separately.

    Cheers!
    Ismael

    in reply to: enfold different header background images possible? #299069

    Hi ctchope!

    Thank you for using the theme.

    I’m sorry but it’s not possible with the theme but you can use a plugin such as https://wordpress.org/plugins/wp-backgrounds-lite/. The downside is you need to use the boxed layout and when adding an image, you need to add the actual image url because the plugin’s media uploader is not working.

    Cheers!
    Ismael

    in reply to: icons in icon circles #299067

    Hey elianab!

    Thank you for visiting Kriesi’s support forum.

    Please refer to this link on how to add or upload your own icons: http://kriesi.at/documentation/enfold/adding-your-own-icon-fonts/

    Regards,
    Ismael

    Hey michaelhiga!

    Thank you for using the theme.

    You can add this on Quick CSS or custom.css to remove the comment tab:

    .tab.widget_tab_comments.tab_counter_2 {
    display: none !important;
    }

    Best regards,
    Ismael

    in reply to: Tab Color change #299065

    Hey!

    Glad it worked.

    This should change on mobile as well. Just remove the browser cache then reload the page.

    Best regards,
    Ismael

    Hey!

    Yes, we checked the screenshots but we can’t reproduce it on our installations. I’m sorry but I have to ask Devin to test it again. You can hire a freelance developer to test it on all kinds of browsers and operating systems.

    Best regards,
    Ismael

    in reply to: Error in Internet Explorer 10 #299063

    Hey set70!

    Thank you for the info.

    Please add this on Quick CSS or custom.css:

    .avia-msie .single .size-full {
    max-width: 600px;
    }

    Cheers!
    Ismael

    in reply to: horizontal line over logo #299058

    Hey Knut!

    Thank you for using the theme.

    Are you referring to the box shadow of the header meta? Please use this on Quick CSS or custom.css:

    #header_meta {
    box-shadow: none;
    }
    
    #header_main {
    border-top: none !important;
    }

    Best regards,
    Ismael

    in reply to: A few questions for a simple blog #299057

    Hey nzjosh!

    Thank you for using the theme.

    1.)

    2.) Add this on Quick CSS or custom.css:

    span.post-meta-infos {
    display: none;
    }

    3.) Use this for the blog title:

    #top .flex_column .template-blog .post-title {
    font-size: 30px;
    }

    4.) You need to add featured images on the posts.

    5.) Please edit the home page then configure the Blog Posts element. Set the Blog Content length to show the Full Content. Unfortunately, you can’t add side arrows but you can enable the pagination.

    Cheers!
    Ismael

    in reply to: flexible content inside a TAB #299056

    Hi kdm!

    Thank you for using the theme.

    I’m sorry but can you please explain a little bit further. A link to the actual page with the TAB will help.

    Regards,
    Ismael

    in reply to: Need to adjust Header Size #299055

    Hey!

    I’m sorry but the screenshot and the website are not loading. When you upload the logo, make sure that you select the Fullsize thumbnail size option before clicking the “Use image as logo” button. I’ll ask Yigit to take a look.

    Regards,
    Ismael

    Hey!

    Did you remove the blog grid element? There’s an issue on your website using Chrome where the header shadow is being duplicated when you scroll the page. Please add this on Quick CSS:

    #header_main_alternate, #header {
    -webkit-transform: translateZ(0);
    }

    Best regards,
    Ismael

    in reply to: Home page #299048

    Hey!

    Thank you for the update.

    What do you mean by “adjusting the images”? Home page looks ok now: http://dev.desertkingwindows.com/

    Regards,
    Ismael

    in reply to: post image hover effect #299047

    Hi!

    Edit the image code on the post itself.

    <a href="http://nonpardon.com/wp-content/uploads/2014/06/hristos_v_pustyne1.jpg" class="lightbox-added aligncenter" style="float: none; text-align: center; margin: 0px; padding: 0px;"><img class="aligncenter size-full wp-image-5456" src="http://nonpardon.com/wp-content/uploads/2014/06/hristos_v_pustyne1.jpg" alt="hristos_v_pustyne" width="566" height="500"><span class="image-overlay overlay-type-image" style="left: 12px; top: 0px; overflow: hidden; display: block; height: 520px; width: 576px;"><span class="image-overlay-inside"></span></span></a>
    

    Replace the image link with the original image:

    <a href="ORIGINAL IMAGE URI HERE" class="lightbox-added aligncenter" style="float: none; text-align: center; margin: 0px; padding: 0px;"><img class="aligncenter size-full wp-image-5456" src="http://nonpardon.com/wp-content/uploads/2014/06/hristos_v_pustyne1.jpg" alt="hristos_v_pustyne" width="566" height="500"><span class="image-overlay overlay-type-image" style="left: 12px; top: 0px; overflow: hidden; display: block; height: 520px; width: 576px;"><span class="image-overlay-inside"></span></span></a>
    

    Regards,
    Ismael

    Hey David!

    Thank you for using the Enfold theme.

    I don’t see any unique styling on the Cart menu item. Please use this to hide it on mobile:

    @media only screen and (max-width: 989px) { 
    #menu-item-1537 { display:none !important; }
    }

    You can use this for the active menu item:

    #menu-item-1537.current-menu-item {
     /* Style here */
    }

    Cheers!
    Ismael

    in reply to: Mobile Menu – Courses page collapse #299044

    Hey midischool!

    Thank you for using Enfold.

    The link takes us to a page prompting us to subscribe. Please give us a temporary login details. Set it as a private reply.

    Cheers!
    Ismael

    in reply to: Product images pop up in a light box #299042

    Hey midischool!

    Thank you for using the theme.

    Please add this on Quick CSS or custom.css:

    function remove_woo_rel(){
    ?>
    <script type="text/javascript">
    jQuery(window).load(function(){
    jQuery('.woocommerce-main-image').removeAttr('rel');	       
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'remove_woo_rel');

    Best regards,
    Ismael

    in reply to: plugin conflict with LayerSlider #299038

    Hi!

    Yigit’s suggestion should disable layer slider plugin. Please try this code:

    add_theme_support( 'deactivate_layerslider' );
    

    If possible, please post the functions.php code on pastebin.com. We would like to check it.

    Best regards,
    Ismael

    in reply to: image overlapping footer #299036

    Hi!

    Thank you for visiting Kriesi’s support forum! 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

Viewing 30 posts - 57,091 through 57,120 (of 67,479 total)