Forum Replies Created

Viewing 30 posts - 3,571 through 3,600 (of 3,732 total)
  • Author
    Posts
  • in reply to: Change Testimonial Font #294275

    Hey tylrsmllr!

    Thank you for using our theme.

    In custom.css or Enfold->Stylings->Quick-CSS field try to put the following and adjust the values:

    
    .avia-testimonial .avia-testimonial_inner{
    font:  
    }
    

    If it does not work give us a link to the page please.

    Cheers!
    Günter

    in reply to: Edit the meta elements on a single blog post #294273

    Hey cindy531!

    Thank you for using our theme.

    You have to modify a theme file. If you are using a child theme, copy enfold/includes/loop-index.php to the corresponding child theme fiolder enfold-child/includes/, otherwide modify the original file:

    
    // goto line 165:
                    echo '<span class="blog-categories minor-meta">'.__('in','avia_framework')." ";
                    echo $cats;
                    echo '</span><span class="text-sep text-sep-cat">/</span>';
    
    // and replace with:
                    echo '<span class="blog-categories minor-meta">';
                    echo $cats;
                    echo '</span>';
    
    

    Best regards,
    Günter

    in reply to: Cannot Update Products in WooCommerce. PHP Error? #294263

    Hey!

    Thank you for using our theme.

    This seems to be a problem of WooCommerce plugin.

    Maybe you can report it to WooCommerce Support https://support.woothemes.com/hc/en-us.

    Regards,
    Günter

    in reply to: Featured image problem #294257

    Hey!

    Glad we could help you.

    Regards,
    Günter

    in reply to: Child functions.php Not Overriding Parent functions.php #294247

    Hey!

    Can you give us an admin account so we can have a look?

    Best regards,
    Günter

    in reply to: Contact form post method #293843

    Hey Luis!

    Thank you for using our theme.

    If you are using cross domain action call this might make problems. Check the following article:
    http://stackoverflow.com/questions/8497609/html-form-post-cross-domain

    For the same domain it should work.

    Cheers!
    Günter

    in reply to: Enfold Table #293816

    Hey!
    To alter the styles of the second table put in custom.css or Endold->Styles->Quick-CSS field the following and adjust the values:

    
    .avia-table-2 tr:nth-child(2),
    .avia-table-2 tr:nth-child(4),
    .avia-table-2 tr:nth-child(6)
    {
    background: #e1e1e1 !important;
    }
    
    .avia-table-2 tr{
    font-size: 12px  !important;
    }
    

    For the first table use .avia-table-1.

    Cheers!
    Günter

    in reply to: radio buttons in form #293812

    Hi BarkProductions!

    Thank you for using our theme.

    At the moment radio boxes are not supported. It may be added in future releases.

    Regards,
    Günter

    in reply to: Menu styles hover and current #293802

    Hi!

    There is currently no support for this in the advanced styling menu.

    Please referr to this post:
    https://kriesi.at/support/topic/menu-hover-color-heading-font-size-remove-borders/

    Come back on further questions.

    Regards,
    Günter

    in reply to: logo cut #293788

    Hey!

    Glad we could help you. Enjoy the theme.

    Best regards,
    Günter

    in reply to: Use latest page as start page instead of latest post #293786

    Hey!

    Glad we could help you. Enjoy the theme.

    Best regards,
    Günter

    in reply to: Portfolio items in Enfold #293784

    Hey Geoffdoyle!

    Thank you for using our theme.

    In custom.css or Enfold->Styling->Quick-CSS field put the following code and adjust px value for border width:

    
    .grid-entry article > a{
    border: 2px white solid;
    }
    

    If this does not work can you give us the linkl to the page please?

    Cheers!
    Günter

    in reply to: Enfold Table #293771

    Hey Geoffdoyle!

    Thank you for using our theme.

    Can you give us the link to the page you want to change?

    Best regards,
    Günter

    in reply to: Child functions.php Not Overriding Parent functions.php #293767

    Hi Webbee!

    Thank you for using our theme.

    The problem is, that functions.php from the parent themes overwrites your settings of the child them, because it is loaded after your code.

    You have to put your code in the child theme in an action hook:

    
    function my_image_size()
    {
    global $avia_config;
    
    $avia_config['imgSize']['entry_with_sidebar'] = array(‘width’=>710, ‘height’=>270); // big images for blog and page entries
    }
    
    add_action('init', 'my_image_size', 1);
    
    

    Regards,
    Günter

    in reply to: No line under header menu #293763

    Hi studioinktvis!

    Thank you for using our theme.

    Try to put the following in custom.css or Enfold->Settings->Quick-CSS field:

    
    .avia-menu-fx { 
    display: none; 
    }
    

    Best regards,
    Günter

    in reply to: Fixed Header Issue #293034

    Hey xyzb!

    Thank you for using our theme.

    Can you give us a link to the page and an admin login, so we can check?

    Regards,
    Günter

    in reply to: enfold portfolio problem #293024

    Hallo gowapi!

    Danke dass Sie unser Theme benutzen.

    Können Sie uns bitte den Link zu der Seite geben und auch einen admin login, damit wir uns das anschauen können?

    LG
    Günter

    in reply to: Sidebar #292941

    Hey!

    Thank you for using our theme.

    Can you send us a link to your page(s) so we can check?

    Shall this be done on all pages or only certain pages.

    Cheers!
    Günter

    in reply to: Changing textbox bordercolor #292873

    Hey cindy531!

    Thank you for using our theme.

    In custom.css or Enfold->Styling->Quick-CSS field put the following and adjust the color value:

    
    
    form input{
    border-color: #a2a2a2;
    }
    

    Regards,
    Günter

    • This reply was modified 10 years, 8 months ago by Günter.
    in reply to: Header Background #292554

    Hey!

    Glad we could help you. Enjoy the theme.

    Regards,
    Günter

    in reply to: Changing header Blog – latest news to something else #292423

    Hi motylanogha!

    Thank you for using our theme.

    To get the categories for a post:

    
    $post_categories = wp_get_post_categories( $id );
    $cats = array();
    	
    foreach($post_categories as $c){
    	$cat = get_category( $c );
    	$cats[] =  $cat->name;
    }
    
    $args['title'] = implode (',', $cats);
    
    

    Regards,
    Günter

    in reply to: How to add widgets to the pages #292414

    Hey cbehen!

    Thank you for using our theme.

    Widgets are specially designed for the widget areas.

    Some provide a shortcode, others not.

    If you do not find something in the documentation you can look in the code for:

    
    add_shortcode( .......  );
    

    In this case you can use a shortcode to activate the widget on a page.

    See also: http://codex.wordpress.org/Shortcode_API

    Regards,
    Günter

    in reply to: Changing text color in enfold combo widget #292410

    Hi srmathis!

    Thank you for using our theme.

    In custom.css or Enfold->styling->Quick-CSS field put following:

    
    .avia_combo_widget .news-headline{
    color: #fff;
    }
    

    Best regards,
    Günter

    in reply to: Space between columns and promo box #292404

    Hi costin!

    Thank you for using our theme.

    In Custom.css or Enfold->Styling->Quick CSS field put the following:

    
    .home .avia-builder-el-10{
    margin-top: 0 !important;
    }
    

    Regarding background image:

    Can you give us an admin access so we can check your settings or send us a screenshot of the settings page with the footer?

    Best regards,
    Günter

    • This reply was modified 10 years, 8 months ago by Günter.
    in reply to: CSS codes for text block #292385

    Hey!

    Glad we could help you.

    Enjoy the theme.

    Best regards,
    Günter

    in reply to: CSS codes for text block #292139

    Hey!

    Sorry, I got the wrong class: Replace with this:

    
    .page-id-514 #av_section_1 .avia_textblock {
    font-size: 17px;
    }
    

    Cheers!
    Günter

    in reply to: CSS codes for text block #292120

    Hi!

    In coustom.css or Enfold->Styling->Quick CSS field put the following and adjust the px value:

    
    .page-id-514 #av_section_1 .av_textblock{
    font-size: 17px;
    }
    

    Best regards,
    Günter

    in reply to: Footer socket not displayed #292116

    Hi!

    Enfold integrates only Enfold Advertising Area Widget.

    You can look at WordPress.org plugins, there you probably will find one (they are free).

    Regards,
    Günter

    in reply to: Footer socket not displayed #292082

    Hey!

    Thanks for the update.

    Using widgets you must setup the page to use sidebars (Enfold->Sidebar Layout) and on Edit Page screen.

    Under Utseende->Widget you find all available Widgets and on the right side Areas, where to use them (Drag and Drop the Widgets from left to right) and you also can define custom widget areas.

    Best you start experimenting a little and see the output.

    Regards,
    Günter

    • This reply was modified 10 years, 8 months ago by Günter.
    in reply to: some css changes #292033

    Hey xpoveda!

    Thank you for using our theme.

    In custom.css put the following and adjust px values:

    ad 1)

    
    #header.av_header_transparency .social_bookmarks{
    color: #000;
    }
    

    ad 2)
    I only see the text like Facebook, no icons. Is the link above correct?

    ad 3)

    
    #after_section_2 .avia-builder-el-8,
    #after_section_2 .avia-builder-el-10,
    #after_section_2 .avia-builder-el-12,
    #after_section_2 .avia-builder-el-14{
    margin-top: 32px;
    }
    
    #after_section_3 .avia-builder-el-19{
     margin-top: 32px;
    }
    

    Cheers!
    Günter

    • This reply was modified 10 years, 8 months ago by Günter.
Viewing 30 posts - 3,571 through 3,600 (of 3,732 total)