Forum Replies Created

Viewing 30 posts - 56,431 through 56,460 (of 67,482 total)
  • Author
    Posts
  • in reply to: Substitute Icon Font in Icon List with Image #312636

    Hey bemofunny!

    Thank you for using Enfold.

    You can change the background of the icon list icon invidividually with this on Quick CSS or custom.css:

    .main_color .avia-icon-list li:first-child .iconlist_icon {
    	background: red;
    }
    
    .main_color .avia-icon-list li:nth-child(2) .iconlist_icon {
    	background: blue;
    }
    
    .main_color .avia-icon-list li:nth-child(3) .iconlist_icon {
    	background: green;
    }
    

    Cheers!
    Ismael

    in reply to: Images doubt #312631

    Hi odmv91!

    Thank you for using Enfold.

    Yes, it is ok to replace the images via FTP but make sure that you retain the image file name. You can change the thumbnail sizes on functions.php, look for this code:

    $avia_config['imgSize']['widget'] 			 	= array('width'=>36,  'height'=>36);						// small preview pics eg sidebar news
    $avia_config['imgSize']['square'] 		 	    = array('width'=>180, 'height'=>180);		                 // small image for blogs
    $avia_config['imgSize']['featured'] 		 	= array('width'=>1500, 'height'=>430 );						// images for fullsize pages and fullsize slider
    $avia_config['imgSize']['featured_large'] 		= array('width'=>1500, 'height'=>630 );						// images for fullsize pages and fullsize slider
    $avia_config['imgSize']['extra_large'] 		 	= array('width'=>1500, 'height'=>1500 , 'crop' => false);	// images for fullscrren slider
    $avia_config['imgSize']['portfolio'] 		 	= array('width'=>495, 'height'=>400 );						// images for portfolio entries (2,3 column)
    $avia_config['imgSize']['portfolio_small'] 		= array('width'=>260, 'height'=>185 );						// images for portfolio 4 columns
    $avia_config['imgSize']['gallery'] 		 		= array('width'=>845, 'height'=>684 );						// images for portfolio entries (2,3 column)
    $avia_config['imgSize']['magazine'] 		 	= array('width'=>710, 'height'=>375 );						// images for magazines
    $avia_config['imgSize']['masonry'] 		 		= array('width'=>705, 'height'=>705 , 'crop' => false);		// images for fullscreen masonry
    $avia_config['imgSize']['entry_with_sidebar'] 	= array('width'=>845, 'height'=>321);		            	// big images for blog and page entries
    $avia_config['imgSize']['entry_without_sidebar']= array('width'=>1210, 'height'=>423 );						// images for fullsize pages and fullsize slider

    You can also use this plugin in order to change the thumbnail sizes directly on the wp dashboard: https://wordpress.org/plugins/simple-image-sizes/

    Cheers!
    Ismael

    in reply to: Responsive issues on Tablet Portrait view #312630

    Hi GOWD!

    Thank you for using Enfold.

    You can decrease the font size of the phone info on mobile devices:

    @media only screen and (max-width: 989px) and (min-width: 768px) {
    .phone-info {
    font-size: 13px;
    }
    }

    Go to Enfold > Header > Mobile Menu panel. Choose the second option on Header Mobile Menu activation to show the mobile menu earlier.

    Cheers!
    Ismael

    in reply to: Masonry Blog in Spanish not the same as in English #312627

    Hey optimized!

    Thank you for using Enfold.

    Can you please edit the spanish masonry page? Toggle the Masonry Size Settings again. If that doesn’t work, please post the login details here and set it as a private reply. We would like to check it.

    Best regards,
    Ismael

    in reply to: You tube not working in chrome or firefox #312625

    Hi midischool!

    Thank you for using Enfold.

    I tested the youtube url that you provided using the Video element and it works fine. Please try to deactivate all plugins then test it again. Anyway, where are the youtube videos located? I can’t find any on the home page.

    Cheers!
    Ismael

    in reply to: Mega menu padding (with images) #312623

    Hey!

    Thank you for the update.

    I checked the website again but the mega menu only got one image on it and there is a weird bright green color on the submenu. Please add the images again on the mega menu. We need to inspect it.

    Cheers!
    Ismael

    in reply to: Pencil autor and date removal #312620

    Hey!

    Thank you for the update.

    Please use this instead:

    #top .fullsize .template-blog .blog-meta {
    display: none;
    }
    
    time.date-container.minor-meta.updated, span.text-sep.text-sep-date, span.blog-author.minor-meta, span.text-sep.text-sep-cat {
    display: none;
    }

    Remove browser cache then reload the page a few times.

    Cheers!
    Ismael

    in reply to: Mega menu padding (with images) #312171

    Hi venturephoto!

    Thank you for using Enfold.

    Do you mind if we take a look at the actual page? You can somehow remove the padding with this:

    #header .avia_mega_div .units {
    padding: 0;
    }

    You might still need to adjust the width of the mega menu units.

    Cheers!
    Ismael

    in reply to: Child theme – open links of post format link in a new window #312166

    Hey frescova!

    Thank you for using Enfold.

    You can copy the whole post type link function on the child theme’s functions.php. Copy this one: http://pastebin.com/aRZjTdYT

    Best regards,
    Ismael

    in reply to: functions.php issue #312163

    Hi paolomusic!

    Thank you for using Enfold.

    There are scripts errors on avia.js and shortcodes.js when I checked the site. Please override the whole theme files again via ftp. If that doesn’t work, deactivate all plugins then test it on another browser.

    Best regards,
    Ismael

    in reply to: archive problem #312161

    Hey satucker!

    Thank you for using Enfold.

    Maybe you have category called photography. You can change the title of the photography page or change the slug of the photography category.

    Cheers!
    Ismael

    in reply to: Remove Author Archive Page #312160

    Hey indy1003!

    Thank you for using the theme.

    You can’t remove the actual pages but you disable the author links on Enfold > Blog layout > Blog meta elements. Disable the Blog Post Author. You can also redirect all author links to another page. Add this on functions.php:

    add_filter( 'author_link', 'my_author_link' );
     
    function my_author_link() {
        return home_url();
    }

    Cheers!
    Ismael

    Hi Peter!

    Thank you for using Enfold.

    I’m sorry but the screenshot is on your localhost. Please use imgur, dropbox etc for the screenshot.

    Regards,
    Ismael

    in reply to: Featured Image on Blog Posts #312151

    Hey!

    No problem. Glad you figured it out. If you still have questions, let us know. :)

    Regards,
    Ismael

    in reply to: Image Sizes #312150

    Hi!

    Thank you for the update.

    That is why you need to use media queries to adjust the width on different screen sizes.

    @media only screen and (min-width: 768px) and (max-width: 989px) {
    #adjust-section .container {
    width: 750px;
    }
    
    #adjust-section .container .twelve.units {
    margin-left: 0;
    width: 750px;
    }
    }

    Please refer to this link to learn more about media queries: http://css-tricks.com/css-media-queries/

    Cheers!
    Ismael

    in reply to: Media upload issue #312146

    Hi krisfosh!

    Thank you for using the theme.

    Please go to the Media Library then delete all images that doesn’t have the correct thumbnail. After that, regenerate the thumbnails using this plugin: http://wordpress.org/plugins/regenerate-thumbnails/

    Another user is having the same issue and fix it with this solution: https://kriesi.at/support/topic/gallery-edit-issues/#post-277654

    Best regards,
    Ismael

    in reply to: 500 Internal Server Error #312145

    Hey comcom77!

    Thank you for using Enfold.

    You might need to contact your host because this is a server configuration issue. Try to increase the wordpress php memory limit. Please refer to this link: http://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP

    Best regards,
    Ismael

    in reply to: icl_language_selector #312141

    Hi khrystian!

    Thank you for using Enfold.

    You can add this on functions.php:

    add_action('avia_meta_header', 'ava_icl_language_selector');
    function ava_icl_language_selector(){
    	do_action('icl_language_selector');
    }

    Cheers!
    Ismael

    in reply to: Using 'accordion Slider' plugin full width #312137

    Hi jlhaisma!

    Thank you for using Enfold.

    If you want to use the accordion slider as fullwidth then you have to enable the Advance Layout Builder for posts. Add this on functions.php:

    add_theme_support('add_avia_builder_post_type_option');
    add_filter('avf_builder_boxes','enable_boxes_on_posts');
    function enable_boxes_on_posts($boxes) {
    	$boxes[] = array( 'title' =>__('Avia Layout Builder','avia_framework' ), 'id'=>'avia_builder', 'page'=>array('page','post', 'portfolio'), 'context'=>'normal', 'expandable'=>true );
    	$boxes[] = array( 'title' =>__('Layout','avia_framework' ), 'id'=>'layout', 'page'=>array('page','post', 'portfolio'), 'context'=>'side', 'priority'=>'low');
    	$boxes[] = array( 'title' =>__('Additional Portfolio Settings','avia_framework' ), 'id'=>'preview', 'page'=>array('page','post','portfolio'), 'context'=>'normal', 'priority'=>'high' );
    	
    	return $boxes;
    }
    

    Unfortunately, there maybe some issues when using ALB on posts. You won’t have the share section and the comment section by default. You need to add it manually using the advance layout builder.

    Cheers!
    Ismael

    in reply to: Layout sidepanel missing in enfold? #312132

    Hi!

    Thank you for using Enfold.

    The layout box should be there by default. Do you mind if take a look at the actual website? You can also create your own shop using the advance layout builder. Insert the Product Grid element under Plugin Additions panel. 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. :)

    Best regards,
    Ismael

    in reply to: full screen slider #312129

    Hi!

    Thank you for the info.

    You added this on grid.css:

    html {
    min-width: 910px;
    }

    Cheers!
    Ismael

    in reply to: Cannot change the main-font #312125

    Hi broodjekaas!

    Thank you for using Enfold.

    You don’t need to use a plugin if you want to use the Open Sans google font. You can set it on Enfold > General Styling > Fonts panel.

    Cheers!
    Ismael

    in reply to: Anchor in a page #312121

    Hey!

    Thank you for the update.

    I tested this on my end and the shrink header doesn’t cover the scrolled section. Make sure that you’re running the latest version of the theme plus WordPress 3.9.2. If the site is already live, we would like to check it.

    Regards,
    Ismael

    Hey!

    Thank you for using Enfold.

    Note that we don’t usually provide support for those who want to use the ALB for posts because of issues such as this one. If you want the share section entry below the post content, you can use this:

    add_filter('avf_template_builder_content', 'avia_add_social_toolbar_template_builder', 10, 1);
    function avia_add_social_toolbar_template_builder($content = "")
    {
    	if(is_single()) {
    	$content .= '<div class="container">';
    	$content .= avia_social_share_links(array(), false);
    	$content .= '</div>';
    	$content .= '<div style="height:1px; margin-top:50px;" class="hr"></div>';
    	}
    	return $content;
    }

    Cheers!
    Ismael

    in reply to: Enlarge fly-in caption for full-width easy slider #312118

    Hi Kayzel!

    Thank you for using Enfold.

    You can use this for the caption title:

    h2.avia-caption-title {
    font-size: 50px;
    }

    This one for the caption content:

    .avia-caption-content {
    font-size: 25px;
    }

    Cheers!
    Ismael

    in reply to: Pencil autor and date removal #312117

    Hey medtronica!

    Thank you for using the theme.

    Do you mind if we take a look at the actual page? You can try this on Quick CSS or custom.css:

    .template-blog .blog-meta {
    display: none;
    }

    Best regards,
    Ismael

    in reply to: rounded corners in header and menu bar #312115

    Hey!

    Thank you for the info.

    You can use these:

    #header .avia_mega_div {
    border-radius: 20px;
    }
    
    .container_wrap.container_wrap_first.main_color.sidebar_right {
    border-radius: 20px;
    }

    The header is a bit tricky, I’m not sure if you can apply a border radius on the main container and menu container separately. Please visit Envato Studio or Werkpress for further customization.

    Best regards,
    Ismael

    in reply to: Insert a banner or written info into the header #312111

    Hey pachanights!

    Thank you for using Enfold.

    You can use this on functions.php if you want to insert an extra element anywhere on the header:

     function ava_extra_header_element() { ?>
    ADD ANY CONTENT HERE!
    <?php }
    
    add_action('ava_main_header', 'ava_extra_header_element');

    Cheers!
    Ismael

    in reply to: Parallax Issues on Safari and I think on IE #312109

    Hi!

    Thank you for the update and sorry for the delay.

    Maybe using larger image backgrounds, 1500px in height will fix the issue. You can also try this on Quick CSS or custom.css:

    .avia-full-stretch {
    background-size: 120% !important;
    }

    Best regards,
    Ismael

    Hey glaucofmc!

    Thank you for using Enfold.

    This is actually a temporary error. Please refer to this link for a possible solution: https://kriesi.at/support/topic/several-issues-2/

    Best regards,
    Ismael

Viewing 30 posts - 56,431 through 56,460 (of 67,482 total)