Forum Replies Created

Viewing 30 posts - 3,151 through 3,180 (of 3,715 total)
  • Author
    Posts
  • in reply to: Custom CSS Class dont work in quick Css #386271

    Hi!

    Thank you for coming back.

    It works, when I insert it directly in FireBug.

    Did you refresh your browser cache?

    Recheck, that you do not have a syntax error in QuickCSS.

    If you have still problems – can you give us an admin access so we can check directly?

    Best regards,
    Günter

    in reply to: Custom CSS Class dont work in quick Css #386242

    Hi Tina62!

    Thank you for coming back.

    Try the following:

    
    .tik-boks-farve .iconbox_content {
        background-color: rgb(87, 113, 49) !important;
    }
    

    Regards,
    Günter

    in reply to: Remove blog grid title #386155

    Hi changegroup!

    Thank you for using our theme.

    In custom.css or Enfold->Styles->QuickCSS put the following:

    
    .avia-content-slider h3 {
        display: none !important;
    }
    

    If it does not work, can you send us a link to your page, where you want to remove the title so we can check the CSS?

    Regards,
    Günter

    in reply to: Problem with padding between sections. #385419

    Hey JPOsteen!

    Thank you for using our theme.

    Can you send us a link to this page so we can have a look ?

    Regards,
    Günter

    in reply to: Location of the language files #385418

    Hi berniemdraudzigs!

    Thank you for coming back.

    The language files are located:

    themes\enfold\lang\

    Best regards,
    Günter

    in reply to: Sidebar settings for custom post types and CPT archives #383872

    Hi Kevin!

    Thank you for coming back.

    Out of the box this is not possible.

    You can only add an action hook around line 68:

    
    // forum pages sidebars
                if ($avia_config['currently_viewing'] == 'forum' && dynamic_sidebar('Forum') ) : $default_sidebar = false; endif;
    
    

    replace with:

    
    // forum pages sidebars
                if ($avia_config['currently_viewing'] == 'forum' && dynamic_sidebar('Forum') ) : $default_sidebar = false; endif;
    
    add_action ('avf_add_custom_side_bar', $avia_config['currently_viewing']);
    

    Best regards,
    Günter

    in reply to: Move logo in header to the right 20 px #383839

    Hey!

    Glad we could help you. Enjoy the theme.

    Regards,
    Günter

    in reply to: Strange html css being injected on page #383833

    Hey codecreative!

    Thank you for coming back.

    I do not see the widget on the link you sent us.

    But try the following:

    
    		<div class="gfcustomized-widget-archives-2 gfcustomized-widget-sidebar-2 gfcustomized-widget">
    				<section class="widget clearfix widget_archive" id="archives-2">
    						<h3 class="widgettitle">
    							<span class="gfcustomized-sidebar-2 gfcustomized-sidebar">
    								Archives
    							</span>
    						</h3>
    						<span class="gfcustomized-widget-body-sidebar-2 gfcustomized-widget-body">
    							September 2014
    						</span>
    				</section>
    		</div>
    

    Regards,
    Günter

    in reply to: Blog Settings #383621

    Hey!

    Versuche das folgende:

    
    .avia-slider-testimonials .avia-testimonial-arrow-wrap {
        left: 37px !important;
    }
    

    Cheers!
    Günter

    in reply to: Getting rid of spacing #383617

    Hi elames!

    Thank you for coming back.

    Try the following in QuickCSS and adjust the values:

    
    .av-special-heading.av-special-heading-h3.avia-builder-el-8.el_before_av_textblock.avia-builder-el-first {
        margin-bottom: -80px !important;
    }
    
    .avia-builder-el-7  .avia_textblock > a {
        float: right !important;
        margin-right: 107px !important;
        margin-top: -47px !important;
    }
    
    

    Regards,
    Günter

    in reply to: Blog Post Excerpt #383607

    Hey!

    Thank you for coming back.

    You can try to change the code from the post above to something like:

    
    function avia_category_content_filter($current_post)
    {
    if( is_single() )
    {
    	global $more;
    	$more = 0;
    
            $current_post['content']  = get_the_excerpt();
    	$current_post['content'] .=  get_the_content(__('Read more','avia_framework').'<span class="more-link-arrow">  &rarr;</span>');
    }
    return $current_post;
    }
    

    Cheers!
    Günter

    in reply to: Import dummy data in child theme or in parent theme? #383597

    Hey!

    Glad I could help you.

    Enjoy the theme.

    Best regards,
    Günter

    in reply to: Randomize Testimonials Slider #383114

    Hi!

    There is a syntax error in the code above. Replace it with the following:

    
    $.fn.randomize = function(childElem) {
      return this.each(function() {
          var $this = $(this);
          var elems = $this.children(childElem);
    
          elems.sort(function() { return (Math.round(Math.random())-0.5); });  
    
          $this.remove(childElem);  
    
          for(var i=0; i < elems.length; i++)
            $this.append(elems[i]);      
    
      });    
    } (jQuery);
    

    It should not make any difference, where you place this code.

    If you still recieve errors, try to place it at the beginning (or at least before the code snippet that uses randomize).

    Cheers!
    Günter

    in reply to: Blog Post Excerpt #383104

    Hi!

    Thank you for coming back.

    Have a look at this post:

    https://kriesi.at/support/topic/sequel-cut-excerpt-off-at-more-tag-instead-of-using-wordcharacter-count/

    Maybe it will help you.

    But actually it does not make sense to cut off the text on a single post page without any further logic behind.

    Cheers!
    Günter

    in reply to: Modify line height of a bullet point list #383091

    Hey!

    Glad I could help you.

    Enjoy the theme.

    Best regards,
    Günter

    in reply to: Spezielle Überschrift #383089

    Hi!

    Danke für das Feedback.

    Vermutlich war der Browsercache nicht geleert oder ein Cache am Server war noch aktiv.

    Viel Freude mit dem Theme.

    Best regards,
    Günter

    Hey Marc!

    Thanky you for using our theme and your feedback.

    No, there is no better way, as this filter is always called in comjunction with the post type. WP does not support to add filters with wild cards.

    Cheers!
    Günter

    in reply to: bread crumbs #383080

    Hi espressotech!

    Thank you for using our theme.

    In custom.css or Enfold->Styles->QuickCSS put the following:

    
    .title_container .breadcrumb {
        float: right !important;
        position: relative !important;
    }
    
    

    Cheers!
    Günter

    in reply to: Sidebar displaying unwanted content #383071

    Hey!

    Thank you for the feedback.

    Glad you could fix the problem.

    Enjoy the theme.

    Cheers!
    Günter

    in reply to: Portfolio Tags #383065

    Hey hookedonweb!

    Thank you for using our theme.

    Have a look at:

    https://kriesi.at/support/topic/portfolio-tags-and-photo-galleries-for-images-with-different-sizes/

    Maybe this will help you.

    Regards,
    Günter

    in reply to: Modify line height of a bullet point list #383058

    Hey Jean-Francois!

    Thank you for using our theme.

    In custom.css or Enfold->Styles->QuickCSS put the following and adjust the value:

    
    .iconbox_content {
        line-height: 20px !important;
    }
    
    .iconbox_content ul {
        margin-bottom: 5px !important;
    }
    

    For margin you can also use negative numbers.

    Regards,
    Günter

    in reply to: Picture with text-fly over #383052

    Hi greengraphicsvienna!

    Thank you for coming back.

    It is not a task to make out of the box.

    Have a look at:
    http://stackoverflow.com/questions/12661124/how-to-apply-hovering-on-html-area-tag
    http://stackoverflow.com/questions/17857906/html-map-area-hover-effect

    Maybe it can help you.

    Cheers!
    Günter

    in reply to: Blog Settings #383045

    Hi diefleischerei!

    In custom.css or Enfold->Styles->QuickCSS put the following and adjust the value:

    
    #top .av-icon-display.av-masonry-media {
        top: -145px !important;
    }
    

    If you want to limit it to the given page:

    
    .page-id-2590 #top .av-icon-display.av-masonry-media {
        top: -145px !important;
    }
    

    Cheers!
    Günter

    in reply to: Logo vertically centred #383033

    Hi!

    Glad we could help you. Enjoy the theme.

    Best regards,
    Günter

    in reply to: Indent Subcategories #383031

    Hey!

    Thank you for coming back.
    Enjoy the theme.

    Best regards,
    Günter

    in reply to: Import dummy data in child theme or in parent theme? #383029

    Hey!

    Thank you for using our theme.

    I would recommend to import it in the child theme, if you want to work with a child theme and use elements of the demo.

    Best regards,
    Günter

    in reply to: HTML showing on page #383026

    Hi tambo12!

    Thank you for using our theme.

    Something is breaking the code.

    Try to disable all plugins.
    Download the theme again from themeforest and reinstall it again (also try to do it via FTP)
    Reactivate one plugin after the other.

    If you added code manually, also remove this and try to add the code one by one.

    Cheers!
    Günter

    in reply to: I don´t want to show date in blog metadata #383018

    Hey TiinaJanson!

    Thank you for using our theme.

    In custom.css or Enfold->Styles->QuickCSS try to put the following:

    
    .av-masonry-date {
        display: none !important;
    }
    

    Regards,
    Günter

    in reply to: Vertical align inside pricing table #381868

    Hi guyg!

    Thank you for using our theme.

    On the link you sent us the cells are aligned as you wish (on FF). Did you solve the problem already?

    Best regards,
    Günter

    in reply to: Custom Search Messages #371601

    Hi xyzb!

    Thank you for coming back.

    In functions.php (child or parent theme) add the following:

    
    add_filter('avf_ajax_search_messages', 'my_search_text', 10,2);
    		
    function my_search_text ($search_messages, $search_query)
    {
    //   possible values to change:
    //   
    //	$search_messages = array(
    //	            'no_criteria_matched' => __("Sorry, no posts matched your criteria", 'avia_framework'),
    //	            'another_search_term' => __("Please try another search term", 'avia_framework'),
    //	            'time_format'         => get_option('date_format'),
    //	            'all_results_query'   => http_build_query($_REQUEST),
    //	            'all_results_link'    => home_url('?' . http_build_query($_REQUEST)),
    //	            'view_all_results'    => __('View all results','avia_framework')
    //            );
    	
    	$search_messages ['no_criteria_matched'] = 'your message text to replace';
    	
    	return $search_messages;
    	
    }
    

    Enter a line for each message to replace.

    Cheers!
    Günter

Viewing 30 posts - 3,151 through 3,180 (of 3,715 total)