Forum Replies Created

Viewing 30 posts - 2,881 through 2,910 (of 3,695 total)
  • Author
    Posts
  • in reply to: Grid row border size #406416

    Hi!

    Glad I could help you. I leave this post open, in case you need more help.

    Enjoy the theme.

    Regards,
    Günter

    in reply to: Pricing table class names rendered with an apostrophe #406411

    Hi!

    Glad we could help you. Enjoy the theme.

    Cheers!
    Günter

    in reply to: Customise Side bar #406397

    Hey potentialindia!

    Thank you for coming back.

    To increase the size of the thumbnals:

    
    .avia_combo_widget .news-thumb {
        height: 50px !important;
        width: 50px !important;
    }
    
    .avia_combo_widget .news-thumb img {
        height: 50px !important;
        width: 50px !important;
    }
    

    To remove the tabs:

    
    .avia_combo_widget .tab.widget_tab_comments,
    .avia_combo_widget .tab.widget_tab_recent {
        display: none !important;
    }
    
    

    To exclude posts with a special category you have to find the ID’s of the categories to exclude and modify the following core file:
    enfold\framework\php\class-framework-widgets.php look for (line 935):

    
    avia_get_post_list('cat=&orderby=comment_count&posts_per_page='.$posts);
    

    and replace with:

    
    avia_get_post_list('cat=-15,-10&orderby=comment_count&posts_per_page='.$posts);
    

    Replace the numbers with your category ID’s.

    Hope this will help you.

    Best regards,
    Günter

    in reply to: Grid row border size #406390

    Hi Henrikgood!

    Thank you for using our theme.

    You can style the border with CSS.

    For example put in custom.css or Enfold->Styles->QuickCSS the following:

    
    .av-layout-grid-container .flex_cell {
        border: 10px solid red !important;
    }
    

    It will probably be necessary to specify the page and the element more closely.

    If you need help, please give us a link to the page and we can provide you with the correct CSS.

    You can post it here as a private reply.

    Cheers!
    Günter

    in reply to: Icon – text alignment #406378

    Hey!

    Thank you for coming back.

    Try the following:

    
    .avia-icon-list .iconlist_content li {
        list-style-position: outside !important;
    }
    

    Regards,
    Günter

    in reply to: How can outline the text of the titles? #406376

    Hi SpaceDream!

    Thank you for coming back.

    Do you mean the titles (headlines) of the posts or the title of the page ?

    If you can give us a link to your pages and point out in screenshots what you mean we certainly can provide you with the correct CSS.

    You can post your links here as a private reply.

    Maybe you can also specify more closely how you want to outline your titles.

    Cheers!
    Günter

    in reply to: Button color in notification area wrong #406320

    Hey!

    If you need to solve this problem before the next update put this in custom.css:

    
    .avia-button.avia-color-grey, 	.avia-button.avia-color-grey:hover	{background-color: #555 !important; 		border-color: #333333 !important; 	color: #fff !important; }
    .avia-button.avia-color-black, 	.avia-button.avia-color-black:hover	{background-color: #2c2c2c !important;		border-color: #000 !important;		color: #fff !important; }
    .avia-button.avia-color-red, 	.avia-button.avia-color-red:hover   {background-color: #B02B2C !important;		border-color: #8B2121 !important;	color: #fff !important; }
    .avia-button.avia-color-orange, .avia-button.avia-color-orange:hover{background-color: #edae44 !important;		border-color: #CA9336 !important; 	color: #fff !important; }
    .avia-button.avia-color-green, 	.avia-button.avia-color-green:hover	{background-color: #83a846 !important;		border-color: #6F8F3B !important; 	color: #fff !important; }
    .avia-button.avia-color-blue, 	.avia-button.avia-color-blue:hover	{background-color: #7bb0e7 !important;		border-color: #6693C2 !important; 	color: #fff !important; }
    .avia-button.avia-color-aqua, 	.avia-button.avia-color-aqua:hover	{background-color: #4ecac2 !important;		border-color: #3EAAA3 !important; 	color: #fff !important; }
    .avia-button.avia-color-teal, 	.avia-button.avia-color-teal:hover	{background-color: #5f8789 !important;		border-color: #3F5E5F !important; 	color: #fff !important; }
    .avia-button.avia-color-purple, .avia-button.avia-color-purple:hover{background-color: #745f7e !important;		border-color: #514358 !important; 	color: #fff !important; }
    .avia-button.avia-color-pink, 	.avia-button.avia-color-pink:hover	{background-color: #d65799 !important;		border-color: #BB4B85 !important; 	color: #fff !important; }
    .avia-button.avia-color-silver, .avia-button.avia-color-silver:hover{background-color: #DADADA !important;		border-color: #B4B4B4 !important; 	color: #555 !important; }
    
    

    Cheers!
    Günter

    in reply to: "color section" #405895

    Hey ptaljaard!

    Thank you for coming back.

    No, because a color section is a fullwidth element.

    But try to use a “Grid Row”. There you can style the cells with background color and paddings, as you like in the editor and you also have a chance with CSS later.

    Regards,
    Günter

    in reply to: Button color in notification area wrong #405878

    Hey halasyt!

    Thank you for using our theme.

    I could reproduce your bug report and posted a possible fix to Kriesi.

    Thank’s for your help and enjoy the theme.

    Cheers!
    Günter

    in reply to: How can we sort related products by product name? #405741

    Hi!

    Can you try to replace the code (see above):

    
    function avia_woocommerce_output_related_products()
    {
    	global $avia_config;
    	$output = "";
    
    	ob_start();
    	woocommerce_related_products(array('posts_per_page'=>$avia_config['shop_single_column_items'], 'columns'=>$avia_config['shop_single_column'])); // X products, X columns
    	$content = ob_get_clean();
    	if($content)
    	{
    		$output .= "<div class='product_column product_column_".$avia_config['shop_single_column']."'>";
    		//$output .= "<h3>".(__('Related Products', 'avia_framework'))."</h3>";
    		$output .= $content;
    		$output .= "</div>";
    	}
    
    	$avia_config['woo_related'] = $output;
    
    }
    

    with the following:

    
    function avia_woocommerce_output_related_products()
    {
    	global $avia_config;
    	$output = "";
    
    	ob_start();
    	woocommerce_related_products(
    		array(	'posts_per_page' => $avia_config['shop_single_column_items'], 
    				'columns' => $avia_config['shop_single_column'],
    				'orderby' => 'title',
                                    'order' => 'ASC'
    				)); // X products, X columns
    	$content = ob_get_clean();
    	if($content)
    	{
    		$output .= "<div class='product_column product_column_".$avia_config['shop_single_column']."'>";
    		//$output .= "<h3>".(__('Related Products', 'avia_framework'))."</h3>";
    		$output .= $content;
    		$output .= "</div>";
    	}
    
    	$avia_config['woo_related'] = $output;
    
    }
    

    Best regards,
    Günter

    in reply to: Customize contact form #405709

    Hi hsipkin!

    Thank you for using our theme.

    I’m not quite sure about your question. You are talking about the built in contact form.

    You can add a form element to the contact form and choose: “Select Element” from Form Element Type, add your options and move it to be the first element.

    If you want to show different input fields depending on the selection this is not possible out of the box. This wouild need customization and is beyond the scope of support.

    Regards,
    Günter

    in reply to: Large gap between sections #405704

    Hi!

    Glad we could help you. Enjoy the theme.

    Regards,
    Günter

    in reply to: Reduce Excert Length in Enfold #405226

    Hi!

    Glad we could help you. Enjoy the theme.

    Regards,
    Günter

    in reply to: How to increase font size of excerpt text? #405202

    Hey!

    Glad I could help you. Enjoy the theme.

    Regards,
    Günter

    in reply to: Change tabs title and container background color #405199

    Hi!

    Thank you for using our theme. Happy, you found a solution.

    Enjoy the theme and feel free to come back.

    Cheers!
    Günter

    in reply to: Im Menü nur eine Rubrik Farbe ändern #405195

    Hi!

    Freut mich, dass ich Dir helfen konnte.

    Viel Freude mit dem Theme. Gerne kannst Du mit weiteren Fragen kommen,, wenn Du noch Probleme hast.

    Cheers!
    Günter

    in reply to: How to increase font size of excerpt text? #405191

    Hi!

    Thank you for coming back.

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

    
    .page .content .entry-content {
        font-size: 15px !important;
    }
    

    Best regards,
    Günter

    in reply to: Im Menü nur eine Rubrik Farbe ändern #405143

    Hi Dirk!

    Danke dass Du unser Theme verwendest.

    Versuche das folgende:

    
    #menu-item-441 > a .avia-menu-text {
        color: #a81010 !important;
    }
    

    Regards,
    Günter

    in reply to: Title header and breadcrumb modifications #405134

    Hey terveysmaailma!

    Thank you for coming back.

    The option “breadcrumb only” should be released in the next update. Can you wait until this release?

    It should then be possible to edit the single product page and select the option in Layout -> Title Bar Setting

    For the spacing – can you send us a link to your page so we can check for the correct CSS code.

    We can also provide you with a workaround solution for hiding the title before the next release.

    You can post the link as a private reply here.

    Cheers!
    Günter

    Hi!

    Glad we could help you. Enjoy the theme.

    Regards,
    Günter

    in reply to: Default padding keeps reappearing and won't remove. #405075

    Hey LOGTJM!

    Thank you for coming back.

    If you are talking about the space between the header and the first “tribesta” image – there is a codeblock with a hidden hr inside, that causes the space.

    Try to remove this codeblock.

    If I understood you wrong, maybe you can point out more closely your problem – a screenshot would be helpful.

    Cheers!
    Günter

    in reply to: How to increase font size of excerpt text? #405070

    Hi drksteel!

    Thank you for using our theme.

    Can you pls. send us a link to the page, so we can provide you with the correct CSS. You can post it here as a private reply.

    As Enfold offers so many variations it is hard to help you without seeing the page.

    Cheers!
    Günter

    in reply to: Change Border color #405065

    Hi Dong!

    Thank you for using our theme.

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

    
    #top div .avia-gallery img {
        border-color: green !important;
    }
    
    #top .av-catalogue-list,
    #top .av-catalogue-list > li  {
        border-color: green !important;
    }
    
    

    The border color on the demo site is #ebe8e2.

    Cheers!
    Günter

    in reply to: Fullwidth Button Custom CSS #405048

    Hi Jennifer!

    Thank you for coming back.

    Try the following:

    
    #top .avia-button-fullwidth .av-button-description {
        font-size: 12px !important;
    }
    

    Best regards,
    Günter

    Hey!

    Glad we could help you. Enjoy the theme.

    Regards,
    Günter

    in reply to: Post Slider Margins #404533

    Hi!

    Glad we could help you. Enjoy the theme.

    Best regards,
    Günter

    in reply to: Change one menu item's color #404531

    Hi!

    Glad we could help you. Enjoy the theme.

    Cheers!
    Günter

    in reply to: HTML Table – edit CSS to disable border #404523

    Hey!

    I figured out the problem:

    
    td {
        padding: 9px 12px;
    }
    

    When the screen gets too small, this avoids narrowing of the table cells and the table is hidden from the right.

    Try the following and adjust max-width value and the second padding value.:

    
    @media only screen and (max-width: 480px) {
       .page #main table td {
                 padding: 9px 4px;
        }
    }
    

    If you want, you can add several paddings like:

    
    @media only screen and (min-width: 481) and (max-width: 767px) {
       .page #main table td {
                 padding: 9px 8px;
        }
    }
    

    Cheers!
    Günter

    in reply to: HTML Table – edit CSS to disable border #404480

    Hi!

    Thank you for coming back. Try the following:

    
    .page #main table td {
        border-width: 0 !important;
    }
    

    Regards,
    Günter

    in reply to: How to delete white block after masonry? #404421

    Hi!

    Glad I could help you. Enjoy the theme.

    Cheers!
    Günter

Viewing 30 posts - 2,881 through 2,910 (of 3,695 total)