Forum Replies Created

Viewing 30 posts - 59,491 through 59,520 (of 67,155 total)
  • Author
    Posts
  • in reply to: Please contribute and translate Enfold #242504

    Hey!


    @talelie
    : I’m sorry but there is no chinese translation yet. I’m sure there are chinese websites made using enfold but they haven’t shared the po and mo files yet.

    Cheers!
    Ismael

    in reply to: Layer Slider Layout Dimensions #242502

    Hey!

    AFAIK the responsive under option will trigger the layers container option. When viewing on screen sizes below 1470px, the elements will be constrained inside the width specified on the layers container.

    Best regards,
    Ismael

    in reply to: Fallback option for video #242501

    Hey!

    Please edit functions.php, find this code on line 16:

    if(isset($avia_config['use_child_theme_functions_only'])) return;
    

    Below, add this code:

    add_theme_support('avia_template_builder_custom_css');
    

    On the homepage, add a fullwidth slider then add a “Custom Css Class”. Just scroll at the very bottom to see the field. What we’re trying to do is to show layerslider on desktop view then swap the fullwidth slider when viewing on mobile devices. Let’s add “sample-slider” to the “Custom Css Class” field of the fullwidth slider. Add this on Quick CSS or custom.css:

    @media only screen and (min-width: 769px) {
    .sample-slider { display: none !important opacity: 0 !important; 
    }
    }
    
    @media only screen and (max-width: 768px) {
    .sample-slider { display: block !important opacity: 1 !important; 
    }
    
    #layer_slider_1 {
    display: none !important;
    }
    }

    Cheers!
    Ismael

    in reply to: Mega menu image scaling #242497

    Hey chiummog!

    Sorry for closing the topic. You can add this on Quick CSS or custom.css:

    #header .avia_mega_div img {
        max-width: 100% !important;
        width: 250px;
    }

    Best regards,
    Ismael

    in reply to: Getting a strange error on my local installation #242495

    Hey!

    Can you reproduce the issue on a default theme? Please try to edit wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/masonry_entries.php, find this code:

    if(!is_admin() && !session_id()) session_start();
    

    Replace it with:

    if(!is_admin() && session_id() == "") session_start();
    

    Regards,
    Ismael

    in reply to: Small bugs with Icon Lists and Horizontal ruler #242491

    Hi!

    Yes, you can add something like on Quick CSS:

    .blank-content {
    display: block;
    height: 30px;
    }

    Best regards,
    Ismael

    in reply to: Text in block not centered vertically #242486

    Hi!

    Glad we could help. :)

    Best regards,
    Ismael

    in reply to: Portfolio: Breadcrumbs are displaying incorrectly #242485

    Hey!

    Please try to add this on functions.php to fix the portfolio breadcrumbs:

    add_action('after_setup_theme','avia_remove_portfolio_breadcrumb');
    
    function avia_remove_portfolio_breadcrumb(){
    remove_filter('avia_breadcrumbs_trail','avia_modify_breadcrumb');
    }

    Best regards,
    Ismael

    in reply to: Cannot change height of Easy Slider #242482

    Hey!

    The “Slideshow Image Size” refers to the size of the thumbnail that is going to be use on the Easy Slider. It won’t change the size of the actual slider. You can add this on Quick CSS if you want to specify the height of the slider:

    .avia-slideshow-inner {
    height: 300px !important;
    }

    Best regards,
    Ismael

    in reply to: lightox video after clicking on image gallery #242480

    Hey CreatorsCreations!

    I’m sorry but that’s not possible with the theme yet and adding the feature is beyond the scope of support. Please hire a freelance developer to modify the masonry gallery. For further customization, please visit Werkpress.

    Anyway, you can achieve the same thing using the portfolio items. Edit a portfolio item then look for “Overwrite Portfolio Link setting”, set it to “Define custom link”. Add the url of youtube or vimeo video. Create a page then add the fullwidth masonry element, choose the Portfolio entries.

    Cheers!
    Ismael

    in reply to: porfolio grid customizations #242478

    Hi!

    Looks like you managed to remove the link for the ajax portfolio preview image. I just checked the site on Firefox and the 50/50 column layout is working ok.

    Cheers!
    Ismael

    in reply to: Captcha for Blog Comments #242477

    Hey natespcrepair!

    You can use plugins like these:

    http://wordpress.org/plugins/si-captcha-for-wordpress/
    http://wordpress.org/plugins/simple-captcha/

    Cheers!
    Ismael

    in reply to: ENFOLD + WOOCOMMERCE : Problem #242474

    Hey!

    There are a lot of element option changes since 2.5.2, your previous version before I suggested that you update the theme. You might want to recreate the color section with the parallax effect and other elements or content. Post the login details here if the issues keep on going after you recreate the elements with the problem. Set it as a private reply.

    Best regards,
    Ismael

    in reply to: Update broke the site #242473

    Hi DrNoge!

    Can you please give us a link to the website? Please download the latest version from your themeforest account again. Update the theme via FTP. Watch this video by Devin: http://vimeo.com/channels/aviathemes/67209750

    Best regards,
    Ismael

    in reply to: Iconfont Manager upload problem #242472

    Hi!

    Please ask your host if the php option Ziparchive is enabled. Switch to a default theme then switch back to Enfold, try to upload the fonts again.

    Best regards,
    Ismael

    in reply to: Color of Bold #242469

    Hey!

    It looks ok when I checked it Chrome Win8. Please add this on Quick CSS or custom.css:

    #top h1 a, #top h2 a, #top h3 a, #top h4 a, #top h5 a, #top h6 a {
    font-weight: inherit;
    text-decoration: none;
    color: inherit;
    -webkit-text-stroke: 0.5px;
    -webkit-font-smoothing: antialiased;
    }

    Regards,
    Ismael

    in reply to: Issues with secondary header navigation, top right #242466

    Hi agiombetti!

    Please add this on Quick CSS or custom.css:

    @media only screen and (max-width: 989px) and (min-width: 768px) {
    .responsive .main_menu ul:first-child > li > a {
    padding: 0 5px;
    font-size: 12px;
    }
    }

    Cheers!
    Ismael

    in reply to: Smooth scrolling #242465

    Hey IHEA!

    There’s actually a smooth scroll script already (avia_smoothscroll) on avia.js file for anchor links. Can you please give us a link to the website? A screenshot of the issue will help.

    Regards,
    Ismael

    in reply to: Resizing logo on top navigation #242461

    Hi!

    Remove all css modifications that you did for the header. Please go to Enfold > Header > Header Size, choose the custom pixel value. Select 51px to resize the header height.

    Cheers!
    Ismael

    Hi!

    I just updated the portfolio grid element on the portfolio page and the items show as expected.

    http://www.kindbo.com/hemsida-o-webb/portfolio/

    Please also change the styling on the Enfold (SV) dashboard. I’m not sure what is wrong with the comments, have you tried updating theme like I suggested on the other thread?

    Best regards,
    Ismael

    in reply to: Iphone – socket menu and return to top of page arrow #242458

    Hey!

    Have you tried !important after the css values?

    @media only screen and (max-width: 767px) and (min-width: 480px) {
    .responsive #socket .sub_menu_socket {
    float: left !important; }}
    
    @media only screen and (max-width: 767px) and (min-width: 480px) {
    .responsive #scroll-top-link {
    display: block !important;
    }}
    
    @media only screen and (max-width: 479px) {
    .responsive #socket .sub_menu_socket {
    display: block !important;
    }}
    

    Best regards,
    Ismael

    in reply to: regular hover in gallery unvisible #242454

    Hey CreatorsCreations!

    If I am not mistaken, that is the browser’s default hover for the title attribute. We don’t have control over that. I’m sorry but there’s nothing we can do about it unless you want to remove the title attribute.

    Cheers!
    Ismael

    in reply to: Masonry Detail Order #242453

    Hi!

    Yes, the avia post navigation is being for portfolio items so you can still follow Yigit’s instruction on the link.

    Regards,
    Ismael

    in reply to: Font Color Sidebar Slider #242451

    Hey Valerie!

    Please try this one:

    .main_color .sidebar p.rtw_main > *, .main_color .sidebar p.rtw_meta > *,  .main_color .sidebar p.rtw_main a,  .main_color .sidebar p.rtw_meta a,  .main_color .sidebar .rotatingtweet {
    color: red !important;
    }

    Remove browser cache then reload the page a few times.

    Regards,
    Ismael

    in reply to: Disable CSS "icon overlay" #242448

    Hey LynxXrossed!

    Please add this on Quick CSS or custom.css:

    .image-overlay.overlay-type-extern .image-overlay-inside:before {
        display: none;
    }

    Regards,
    Ismael

    in reply to: social header showing only on scroll #242109

    Hey Sebastian!

    You only want the top bar to show once you scroll? Add this on Quick CSS or custom.css:

    #header_meta { display: none; }
    .header-scrolled #header_meta { display: block; }

    Best regards,
    Ismael

    in reply to: portfolio category in single portfolio item #242093

    Hi mhrnjak!

    You can add something like this on functions.php:

    add_filter('avf_title_args','avf_portfolio_title_args', 10, 1);
    
    function avf_portfolio_title_args($args) { 		
    	$title = get_the_title($id);
    	
    	if(is_singular('portfolio')) {
    	$terms = get_the_terms( $id, 'portfolio_entries' );
    	$portfoliocat = array();
    	foreach ( $terms as $term ) {
    		$portfoliocat[] = $term->name;
    	}	
    	$args['title']    = $title . ", " . $portfoliocat[0];	
    	} else {	
    	$args['title']    = $title;
    	}
    	return $args;
    }
    

    This will echo out the first category of the portfolio item.

    Regards,
    Ismael

    in reply to: Remove space above 1/3 layout #242069

    Hey hlchia!

    Please add this on Quick CSS or custom.css:

    .avia-testimonial {
    padding: 0 20px;
    }
    
    .avia-testimonial-wrapper {
    margin: 0 0 30px 0;
    }

    Regards,
    Ismael

    in reply to: Homepage tweaks #242068

    Hi!

    Please use this on Quick CSS or custom.css:

    #av_section_2 > div > div > div > div > div.flex_column.av_three_fourth.avia-builder-el-18.el_after_av_one_fourth.avia-builder-el-last {
    margin-top: -30px;
    }

    Regards,
    Ismael

    in reply to: Small bugs with Icon Lists and Horizontal ruler #242064

    Hey Mono14!

    You can write a blank div or span on the icon list content. Something like this:4

    <div class="blank-content"></div>
    

    You can also use this on Quick CSS:

    .iconlist_content {
    display: none;
    }
    
    .main_color .avia-icon-list .iconlist_icon {
    color: #c12327!important;
    margin-bottom: 20px;
    }

    Cheers!
    Ismael

Viewing 30 posts - 59,491 through 59,520 (of 67,155 total)