Forum Replies Created

Viewing 30 posts - 3,121 through 3,150 (of 3,706 total)
  • Author
    Posts
  • in reply to: Remove date from search #386928

    Hi!

    @wingman

    Thank you for using the forum.

    Try the following:

    
    .ajax_search_excerpt {
        display: none !important;
    }
    

    If it does not help, can you send us a link to your page so we can have a look?

    Regards,
    Günter

    in reply to: Search filter for Holiday Business #386924

    Hi!

    Thank you for visiting the forum. Enjoy the theme.

    Regards,
    Günter

    in reply to: Remove post title #386921

    Hey!

    Glad I could help you. Enjoy the theme.

    Best regards,
    Günter

    in reply to: Remove blog grid title #386919

    Hey!

    Thank you for coming back.

    Check again in your setup of the contact form, that all opening <div> have a closing </div> – I think there is one missing.

    To get access to your WP Backend we need an admin account: Add a username and password and give that user admin rights. You can post this data in the private section and after we are finished delete this user.

    Best regards,
    Günter

    in reply to: Change color of Strikethrough text #386914

    Hi buellfire!

    Thank you for using our theme.

    To change the color of all del elements you can use:

    
    del {
        color: red !important;
    }
    

    To limit it to a special page, e.g :

    
    .page-id-2632 del {
        color: red !important;
    }
    

    Regards,
    Günter

    in reply to: Remove post title #386911

    Hey!

    Thank you for coming back.

    For the given link the code is:

    
    .home .entry-content-header {
        display: none !important;
    }
    

    Regards,
    Günter

    in reply to: "Title Bar Settings": how to set this to "only breadcrumbs"? #386906

    Hey COLORIT!

    Thank you for using our theme.

    Currently the easiest way is with CSS and limiting the code to the pages, where you want to hide the title like:

    
    
    .page-id-2630 .title_container .main-title,
    .page-id-2632 .title_container .main-title {
        display: none !important;
    }
    

    Alternative you can use a filter hook. Add the following to functions.php at the end:

    
    add_filter('avf_title_args', 'my_avf_title_args', 10, 2 );
    
    function my_avf_title_args ($args, $id)
    {
    		//	enter all the ID's of the pages with no title seperated by ,
    	$no_titles = array(
    			150, 200, 210
    			);
    	if (  in_array( $id, $no_titles ) )
    	{
    		$args['title'] = '';
    	}
    	
    	return $args;
    }
    

    Best regards,
    Günter

    in reply to: How to change the "You are here:" text in breadcrumbs #386898

    Hey!

    Glad we could help you. Enjoy the theme.

    Best regards,
    Günter

    in reply to: Can't seem to bold my body text #386491

    Hi ShortieD!

    Thank you for coming back.

    It looks fine for me on FF. Did you clear your browser cache and reload the page?

    Cheers!
    Günter

    in reply to: Auto-update current year in footer copyright notice #386478

    Hi!

    Glad we could help you. Enjoy the theme.

    Best regards,
    Günter

    in reply to: How to increase the text size inside an accordion element? #386474

    Hi DROR!

    Use the following:

    
    .single_toggle .toggler {
        font-size: 20px !important;
    }
    
    .single_toggle .toggle_content > p {
        font-size: 20px !important;
    }
    

    Best regards,
    Günter

    in reply to: Remove blog grid title #386460

    Hey!

    Thank you for coming back.

    Something seems to break the HTML structure, because the container containing the single blog post stretches over the complete width of the screen and pushes the sidebar down. But I cannot figure out, what is the problem.

    Maybe you can create a new post with only simple text in it, check if it is displayed correctly with the sidebar to the right and then add step by step the elements you used in this post and see, when the design breaks.

    You also should try to deactivate all plugins and reactivate them one by one.- this might also be a reason.

    If you still have problems, can you make us an admin account so we can have a look, pls.

    Cheers!
    Günter

    in reply to: How to increase text size in a pricing table? #386406

    Hey!

    Glad I could help you. Enjoy the theme.

    Cheers!
    Günter

    in reply to: "Button" element with NO LINK not possible? #386403

    Hi!

    Glad we could help you. Enjoy the theme.

    Regards,
    Günter

    in reply to: Do not show sidebar homepage #386401

    Hi dekoff!

    Thank you for coming back.

    If you open the homepage from the WP Dashboard->pages for editing you find a section “Layout” with a select box “Layout”, where you can select “No Sidebar”.

    Best regards,
    Günter

    in reply to: How to increase text size in a pricing table? #386368

    Hi!

    Try the following:

    
    .pricing-table .avia-button {
        font-size: 20px !important;
    }
    

    Cheers!
    Günter

    in reply to: How to change the "You are here:" text in breadcrumbs #386349

    Hey!


    @mediax2014

    You find this string on 2 places: at line 26 and 186. Change both occurrencies.

    Best regards,
    Günter

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

    Hi!

    Glad I could help you. Enjoy the theme.

    Regards,
    Günter

    in reply to: "Button" element with NO LINK not possible? #386338

    Hi COLORIT!

    Thank you for coming back.

    It is actually not possible to use this element without a link.
    Even if you set href = “” in HTML code this link is set to the current page by the browser by default.

    If you want to remove the “manually” from the link you have to change the core code of enfold\config-templatebuilder\avia-shortcodes\buttons.php line 277:

    Find:

    
    $link  = $link == "http://"  ? "" : $link;
    

    and replace with:

    
    $link  = ($link == "http://" || $link == "manually") ? "" : $link;
    

    I suggested this change to Kriesi – probably it will be in the core in future releases.

    Cheers!
    Günter

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

    Hi!

    It is working now.

    You forgot the closing } from the media query and also for the code above.

    Cheers!
    Günter

    in reply to: How to increase text size in a pricing table? #386304

    Hey DROR!

    Thank you for coming back.

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

    
    .pricing-table .first-table-item {
        font-size: 20px !important;
    }
    
    .pricing-table > li {
        font-size: 20px !important;
    }
    
    .pricing-table li.avia-pricing-row {
        font-size: 60px !important;
    }
    

    Cheers!
    Günter

    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

Viewing 30 posts - 3,121 through 3,150 (of 3,706 total)