Forum Replies Created

Viewing 30 posts - 59,911 through 59,940 (of 66,152 total)
  • Author
    Posts
  • in reply to: Hover on Blog Icon #220804

    Hi hawea74!

    I’m not sure what is the blog icon that you’re referring to. Please post a screenshot and the link to the actual blog page.

    Regards,
    Ismael

    in reply to: LayerSlider Bug – Bad Transitions and Cannot Disable #220802

    Hi trezaei!

    Have you tried removing the browser cache or have you test it on another browser? If you have a cache plugin, try to flush the cache settings then test the slider again.

    Cheers!
    Ismael

    in reply to: I have some questions! #220801

    Hi bbettega!

    1.) Looks like you managed to remove the date on all posts.

    2.) Please try to add a blank Text Widget on all widget areas in the Appearance > Widgets panel. The nested sidebar navigation will only appear if there is no widget on the widget areas.

    3.) You can edit includes > error404.php.

    Regards,
    Ismael

    in reply to: Icon Set #220799

    Hi masterr!

    You can watch this video by Devin on how to add icons: http://vimeo.com/channels/aviathemes/75743285

    Cheers!
    Ismael

    in reply to: Erasing padding/space in general lay-out #220798

    Hey!

    Please add this on Quick CSS or custom.css:

    .content, .sidebar {
    padding-top: 10px;
    padding-bottom: 10px;
    }

    Cheers!
    Ismael

    in reply to: Navegation Post (avia-post-nav) only in the same category #220796

    Hey jmaguirrei!

    Edit functions-enfold.php, find this code on line 327:

    function avia_post_nav($same_category = false, $taxonomy = 'category')

    Replace it with:

    function avia_post_nav($same_category = true, $taxonomy = 'category')

    Regards,
    Ismael

    in reply to: Removal of shortlink from header #220794

    Hey aribann!

    I don’t get any errors when I added it on functions.php and I don’t really see any difference neither.

    Cheers!
    Ismael

    in reply to: Install not working #220793

    Hey!

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

    Cheers!
    Ismael

    Hey!

    I checked the website on Chrome, Firefox 26.0 and IE9. The icons show properly. Please try to remove browser cache then reload the page a few times. Please refer to this link for trouble shooting: https://kriesi.at/support/topic/invisible-icons/#post-216288

    Regards,
    Ismael

    in reply to: Blog post image without link #220791

    Hi Raul!

    1.) Please edit includes > loop-index.php, find this code:

    //echo preview image
            if(strpos($blog_style, 'big') !== false)
            {
                if($slider) $slider = '<a href="'.$link.'" title="'.$featured_img_desc.'">'.$slider.'</a>';
                if($slider) echo '<div class="big-preview '.$blog_style.'">'.$slider.'</div>';
            }

    Replace it with:

    //echo preview image
            if(strpos($blog_style, 'big') !== false)
            {
                if($slider) echo '<div class="big-preview '.$blog_style.'">'.$slider.'</div>';
            }

    2.) Add this on Quick CSS to create a separator below the image:

    .single .big-preview.multi-big {
    border-bottom: 1px solid gray;
    }
    
    .template-blog .post .entry-content-wrapper, .template-blog .blog-meta {
    overflow: hidden;
    margin-top: 10px;
    }

    3.) You can use this:

    .tag .post-title.tag-page-post-type-title {
    border-top: 1px solid gray;
    padding-top: 10px;
    margin-top: 10px;
    }

    Best regards,
    Ismael

    in reply to: Enfold Showcase #220789

    Hey!


    @chavamx
    : Lucky friend! The website http://orwa.com.mx/ is not loading.


    @Raymmar
    : Nice website. Clean and sleek. Thank you for using Enfold. :)

    Cheers!
    Ismael

    in reply to: Icons in Icon Box are Chinese Characters #220784

    Hi!

    This is what I see on my end. Is this correct? On what browser and OS are you testing this with? Please remove browser cache then reload the page a few times.

    Cheers!
    Ismael

    in reply to: Header Background Image #220782

    Hi aliquill!

    Please remove the header background then add this on Quick CSS or custom.css:

    .bottom_nav_header.social_header #header_main .container {
    height: 88px;
    line-height: 88px;
    background: #ffffff url(https://test.brightminder.co.uk/wp-content/uploads/2013/04/header-710x100.jpg) center left no-repeat scroll;
    }

    Regards,
    Ismael

    Hi Felix!

    Please edit config-templatebuilder > avia-shortcodes > postslider.php, find this code on line 366:

    $markup = avia_markup_helper(array('context' => 'entry_time','echo'=>false));
    						$output .= "<time class='slide-meta-time updated' $markup>" .get_the_time(get_option('date_format'), $the_id)."</time>";

    Replace it with:

    $markup = avia_markup_helper(array('context' => 'entry_time','echo'=>false));
    						$output .= "<time class='slide-meta-time updated' $markup>" .get_the_modified_time(get_option('date_format'), $the_id)."</time>";

    Cheers!
    Ismael

    in reply to: Menu Image items on Mobile. #220776

    Hey!

    Can you please post the login details here as a private reply? You can add a text on the “Buy Now” menu item then enclose it on div or span tag. We can hide it on desktop view. I don’t think it is possible to show images on the mobile dropdown menu without major modifications.

    Regards,
    Ismael

    in reply to: Hiding very top Banner so not a double navigation #220770

    Hey!

    Create a new contact page but don’t add the menu on Appearance > Menus. The menu item will not show unless you add it.

    Regards,
    Ismael

    in reply to: Internet Explorer 10 and under compatibility issue #220768

    Hi!

    Please deactivate all plugins then post the login details here as a private reply. Add this plugin, see if it helps: http://wordpress.org/plugins/html5shiv/

    Regards,
    Ismael

    in reply to: Images not adjusting correctly #220767

    Hey!

    I’m sorry but there is no screenshots. Please post a screenshot of the issue. Like Yigit, I can see the Easy Slider is working normally as expected.

    Regards,
    Ismael

    in reply to: Replace breadcrumbs with social icons #220761

    Hi!

    Please add this on functions.php:

    add_filter('avf_title_args', 'change_breadcrumb', 10, 2);
    function change_breadcrumb($args,$id) {
    	if($args['breadcrumb'] == true) {
    		$args['breadcrumb'] = false;
    		avia_social_media_icons();
    	}
    	
    	return $args; 	
    }

    Add this on Quick CSS or custom.css:

    #top .social_bookmarks {
    width: 1030px;
    margin: 0 auto;
    height: 0;
    position: relative;
    top: 45px;
    }
    
    #top .social_bookmarks li {
    height: 30px;
    position: relative;
    float: right;
    z-index: 1000;
    border-right: none;
    }
    
    #main {
    position: relative;
    top: -31px;
    }

    Regards,
    Ismael

    Hi!

    The CryptX plugin is causing the issue. Please deactivate it for portfolio pages. I disable the plugin specifically for this page: http://www.ekb.com/our-team/lawyers/

    I’m sorry I have to deactivate the Post Types order plugin while testing. I think I messed up the portfolio order.

    Regards,
    Ismael

    Hey JavaLavaJoe!

    Add this on Quick CSS or custom.css:

    .avia-button.avia-size-large {
    padding: 15px 30px 13px;
    font-size: 13px;
    min-width: 183px;
    }

    Cheers!
    Ismael

    in reply to: bbpress Login Widget problem #220256

    Hi!

    The “Logout” button looks ok on my end. Please remove browser cache then reload the page a few times:

    Regards,
    Ismael

    in reply to: Horizontal Ruler Whitespace Problems. #220248

    Hey!

    The HR element on the test page is working properly. You set it to 10px and it applied the height property with 10px value. This is the html code of the horizontal rule on this page: http://startwishing.com/test-page/

    <div style="height:10px" class="hr hr-invisible avia-builder-el-7 el_after_av_section avia-builder-el-no-sibling"><span class="hr-inner"><span class="hr-inner-style"></span></span></div>

    Cheers!
    Ismael

    in reply to: Display similar to Demo Template #220245

    Hey!

    First, go Enfold > Footer > Footer Columns, set it to 4 columns. Go to Appearance > Widgets then insert the Enfold Latest News widget on the Footer – columns widget areas. Interesting links is created using a Text widget and you need to use social plugin for the twitter count and rss feeds.

    Regards,
    Ismael

    in reply to: Portfolio items: Error 404 not found #220244

    Hi Michael64142!

    Please try to flush the permalink settings on Settings > Permalink. Click the “Save” button once. If you have access on the .htaccess file, delete it then flush the permalink settings again.

    Cheers!
    Ismael

    in reply to: Menu Animation #220243

    Hey!

    I’ll close it. Glad you figured it out. :)

    Best regards,
    Ismael

    in reply to: Header height #220242

    Hi themesuite!

    You can use this on the Quick CSS or custom.css to change the height of the header.

    #header_main .container, .main_menu ul:first-child > li a {
    height: 130px;
    line-height: 130px;
    }
    

    Best regards,
    Ismael

    in reply to: facebook icon in widget #220239

    Hey!

    Glad you figured it out. :)

    Best regards,
    Ismael

    in reply to: tab title color & font size #220238

    Hey Munford!

    You can use this:

    .js_active .tab {
    font-size: 14px;
    }
    
    .js_active .active_tab {
    font-weight: bold;
    }

    Cheers!
    Ismael

    in reply to: Issues with Forms #220237

    Hey wildwoodbranding!

    Please try to install a plugin like Contact Form 7 or Gravity Forms. See if the plugins work for you.

    Regards,
    Ismael

Viewing 30 posts - 59,911 through 59,940 (of 66,152 total)