Forum Replies Created

Viewing 30 posts - 66,481 through 66,510 (of 82,620 total)
  • Author
    Posts
  • in reply to: Post/page/homepage text size #312807

    Hi kleinpenning!

    Please see – http://kriesi.at/documentation/enfold/change-the-default-font-size/

    Best regards,
    Yigit

    in reply to: Error message table.php on line 185 #312806

    Hey!

    Please try updating Enfold to the latest version 2.9.2 via FTP and make sure to overwrite all files – http://vimeo.com/67209750

    Cheers!
    Yigit

    in reply to: Styling Queries #312803

    Hi!

    1- Please add following code to Quick CSS and adjust as needed

    .html_main_nav_header #top .main_menu .menu>li:last-child>a, .html_bottom_nav_header #top #menu-item-search>a {
    padding-right: 13px;
    }

    2- I cannot see a Post Slider element on your home page. Have you removed it?

    Regards,
    Yigit

    in reply to: Error message table.php on line 185 #312799

    Hey motylanogha!

    Can you post the link to your website please?

    Regards,
    Yigit

    in reply to: Portfolio post navigation #312794

    Hi roy_eyal!

    Please refer to Peter’s post here – https://kriesi.at/support/topic/portfolio-link-arrows/#post-245040

    Cheers!
    Yigit

    in reply to: widget menu #312790

    Hi!

    I am sorry but i do not understand. Can you please elaborate? If you can post a screenshot and show the changes you would like to make that would help

    Cheers!
    Yigit

    in reply to: Problem with comments count icon on a portfolio page #312785

    Hi!

    You are welcome, glad we could help :)
    For your information, you can take a look at Enfold documentation here – http://kriesi.at/documentation/enfold/
    And if there are features that you wish Enfold had, you can request them and vote the requested ones here – https://kriesi.at/support/enfold-feature-requests/
    For any other questions or issues, feel free to post them here on the forum and we will gladly try to help you :)

    Regards,
    Yigit

    • This reply was modified 11 years, 5 months ago by Yigit.
    in reply to: Pricing table font size #312784

    Hi!

    Please add following code to Quick CSS as well

    .avia-desc-col li.avia-pricing-row { min-height: 115px; }

    Regards,
    Yigit

    in reply to: Unable to edit Text Block #312782

    Hi!

    Glad it is working fine now! Let us know if you have any other questions or issues

    Cheers!
    Yigit

    in reply to: Layerslider WP not scaling #312777

    Hi DarkNemos!

    Please adjust “responsive under” and “layers container” values in LayerSlider WP > Slider Settings > Layout – http://i.imgur.com/E2YOJ5x.png

    Regards,
    Yigit

    in reply to: Problem with comments count icon on a portfolio page #312776

    Hi nelsonbeguin!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    span.comment-count:nth-child(2) {
    display: none;
    }

    Regards,
    Yigit

    in reply to: Iconbox – is it possible to add our own image to the icons? #312774

    Hi!

    This is how it looks on my local installation – http://i.imgur.com/Y7M3Rvr.png
    Please post the link to your website when you launch it so we can take a look. We cannot say what is wrong without seeing your website, especially when the code works totally fine on our end.

    Regards,
    Yigit

    in reply to: widget menu #312772

    Hey patriscia!

    Please go to Appearance > Widgets and add “Pages” or “Custom Menu” widget to your sidebar widget area

    Cheers!
    Yigit

    in reply to: Change "Blog – Latest News"…text and link #312771

    Hi!

    You can try following code in Quick CSS

    .single .main-title.entry-title a {
    display: none;
    }
    .single .main-title.entry-title:after {
    content: 'My title here';
    }
    .single .main-title.entry-title {
    pointer-events: none;
    }

    But text would be still in the source code and as Gunter said, you are going to need to stick to other ways.

    Cheers!
    Yigit

    in reply to: Different content on mobile vs. PC browsers #312770

    Hey!

    Weird :/ Can you try deactivating all active plugins and check if that helps?

    Best regards,
    Yigit

    in reply to: Replace RSS by Facebook widget (footer) #312542

    Hi!

    There are single quotes in the beginning and at the end of both codes, please do not add them. It should start with “function…” and end with “}”

    Cheers!
    Yigit

    in reply to: Replace RSS by Facebook widget (footer) #312541

    Hi ProAnts!

    Please go to Enfold/framework/php folder and open class-framework-widgets.php file and find

    `
    
    function widget($args, $instance) {
    			// prints the widget
    
    			extract($args, EXTR_SKIP);
    			$twitter = empty($instance['twitter']) ? '' : $instance['twitter'];
    			$rss 	 = empty($instance['rss'])     ? '' : $instance['rss'];
    			$rss = preg_replace('!https?:\/\/feeds.feedburner.com\/!','',$rss);
    
    
    			if(!empty($twitter) || !empty($rss))
    			{
    				$addClass = "asc_multi_count";
    				if(!isset($twitter) || !isset($rss)) $addClass = 'asc_single_count';
    
    				echo $before_widget;
    				$output = "";
    				if(isset($twitter))
    				{
    					$link = 'http://twitter.com/'.$twitter.'/';
    					$before = apply_filters('avf_social_widget', "", 'twitter');
    					$output .= "<a href='$link' class='asc_twitter $addClass'>{$before}<strong class='asc_count'>".__('Follow','avia_framework')."</strong><span>".__('on Twitter','avia_framework')."</span></a>";
    					
    				}
    
    				if($rss)
    				{
    					$output .= "<a href='$rss' class='asc_rss $addClass'>".apply_filters('avf_social_widget',"", 'rss')."<strong class='asc_count'>".__('Subscribe','avia_framework')."</strong><span>".__('to RSS Feed','avia_framework')."</span></a>";
    				}`

    and change it to

    `
    function widget($args, $instance) {
    			// prints the widget
    
    			extract($args, EXTR_SKIP);
    			$twitter = empty($instance['twitter']) ? '' : $instance['twitter'];
    			$facebook = empty($instance['facebook']) ? '' : $instance['facebook'];
    
    			if(!empty($twitter) || !empty($rss))
    			{
    				$addClass = "asc_multi_count";
    				if(!isset($twitter) || !isset($rss)) $addClass = 'asc_single_count';
    
    				echo $before_widget;
    				$output = "";
    				if(isset($twitter))
    				{
    					$link = 'http://twitter.com/'.$twitter.'/';
    					$before = apply_filters('avf_social_widget', "", 'twitter');
    					$output .= "<a href='$link' class='asc_twitter $addClass'>{$before}<strong class='asc_count'>".__('Follow','avia_framework')."</strong><span>".__('on Twitter','avia_framework')."</span></a>";
    					
    				}
    
    				if(isset($facebook))
    				{
    					$link = 'http://facebook.com/kriesi.at/';
    					$before = apply_filters('avf_social_widget', "", 'facebook');
    					$output .= "<a href='$link' $addClass'>{$before}<strong class='asc_count'>".__('Follow','avia_framework')."</strong><span>".__('on Facebook','avia_framework')."</span></a>";
    					
    				}`

    Please do not forget to change Facebook link

    Cheers!
    Yigit

    in reply to: I dont see favicon, the site is constantly in loading mode #312537

    Hey Soapmarine!

    I checked your website on Firefox 32 on OS X 10.9.4 and favicon shows up fine on my end – http://i.imgur.com/w3ltwxg.png

    Cheers!
    Yigit

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

    Hey!

    1- Can you firstly uncheck “Let logo and menu position adapt to browser window” in Enfold theme options > Header Layout > Header Behaviour?
    2- Please add following code to Quick CSS

    .avia-button {
    border-radius: 25px!important;
    }

    3- Please post the link to your page where we can see an example
    4- Please refer to my post here – https://kriesi.at/support/topic/how-to-control-the-css-in-widget/#post-310956

    Regards,
    Yigit

    in reply to: Website Slowdown #312533

    Hi!

    Please go to Users > Add New and create a new user with Administrator role. You can use (Email address hidden if logged out) as email address but please post login credentials here

    Regards,
    Yigit

    in reply to: Title/tagline "|" separator next to favicon #312531

    Hi NickyCheese!

    Please go to Enfold/framework/php folder and open function-set-avia-frontend.php and find

    $title = get_bloginfo('name').' | ';

    and change it to

    $title = get_bloginfo('name').'';

    Cheers!
    Yigit

    in reply to: Cropping image on portfolio single page #312529

    Hi elianab!

    Please go to Appearance > Editor and open Functions.php and find&edit image sizes

    $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'=>710, 'height'=>575 );						// 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'=>710, 'height'=>270);		                 // big images for blog and page entries
    $avia_config['imgSize']['entry_without_sidebar']= array('width'=>1030, 'height'=>360 );						// images for fullsize pages and fullsize slider
    
    //overwrite blog and fullwidth image on extra large layouts
    if(avia_get_option('responsive_layout') == "responsive responsive_large")
    {
    	$avia_config['imgSize']['gallery'] 		 		= array('width'=>845, 'height'=>684 );					// images for portfolio entries (2,3 column)
    	$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
    }

    then regenerate thumbnails using this plugin – https://wordpress.org/plugins/regenerate-thumbnails/
    Cheers!
    Yigit

    in reply to: Shrink the distance between Main Menu and bottom of header #312522

    Hi!

    You are welcome Michael, glad we could help :)
    You too have a nice evening!

    Best regards,
    Yigit

    in reply to: LOAD MORE neeв translate #312520
    in reply to: Insert a banner or written info into the header #312518

    Hi!


    @pachanights
    You are welcome :)

    @alexrvs
    after adding the code to Functions.php file you should adjust its position using the code i posted here – https://kriesi.at/support/topic/display-a-banner-or-written-info-in-header/#post-312446

    Cheers!
    Yigit

    in reply to: How to customize theme color #312517

    Hey rubieandersson!

    Please go to Enfold theme options > General Styling tab and adjust element colors

    Regards,
    Yigit

    in reply to: Pricing table font size #312516

    Hey jeffreyvanoostrom!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab and adjust as needed

    .avia-desc-col li.avia-pricing-row {
    font-size: inherit;
    font-weight: inherit;
    }

    Cheers!
    Yigit

    in reply to: List of shortcodes with usage, please. #312513

    Hey solarmediapro!

    You can enable debugging mode to see shortcodes you have created in pages using Advanced Layout Builder – http://kriesi.at/documentation/enfold/enable-advanced-layout-builder-debug/
    You can switch to Default Editor and click on Magic Wand to see full list of shortcodes http://i.imgur.com/n4KXkdm.jpg
    then you can create any of them and copy/paste shortcode into any other content element or into text widget.
    There are so many shortcodes with so many options so we do not have a list of shortcodes. Also all pages on demo site created using Advanced Layout Builder

    Cheers!
    Yigit

    in reply to: Display problem #312511

    Hey!

    Glad you figured it out!
    For your information, you can take a look at Enfold documentation here – http://kriesi.at/documentation/enfold/
    And if there are features that you wish Enfold had, you can request them and vote the requested ones here – https://kriesi.at/support/enfold-feature-requests/
    For any other questions or issues, feel free to post them here on the forum and we will gladly try to help you :)

    Regards,
    Yigit

    in reply to: Website Slowdown #312510

    Hi!

    Do you mind creating a temporary admin login and posting it here privately so we can look into it?

    Cheers!
    Yigit

Viewing 30 posts - 66,481 through 66,510 (of 82,620 total)