Forum Replies Created

Viewing 30 posts - 2,971 through 3,000 (of 3,695 total)
  • Author
    Posts
  • in reply to: edit tag TITLE on social image profile changed by myself #396906

    Hey!

    Glad we could help you.

    Enjoy the theme.

    Best regards,
    Günter

    in reply to: Blog Post Grid Layout On Single Post #396905

    Hey!

    Glad we could help you. Enjoy the theme.

    Cheers!
    Günter

    in reply to: background social toolbar #396898

    Hey Dutchman!

    Try to use the following in QuickCSS or custom.css:

    
    #main {
        background: url("//www.reisfreaks.com/wp-content/uploads/2013/04/bghomev445.jpg") repeat scroll center top #ffffff !important;
    }
    

    Best regards,
    Günter

    in reply to: Darstellung von Preis, Versand und MwSt. #396874

    Hey!

    Entweder in custom.css am Ende oder, falls nur wenige Modifikationen in Enfold->Styles->QuickCSS Feld.

    Versuche es einmal. Falls Du Probleme hast, lege uns einen Admin Zugang an und wir helfen Dir.

    Regards,
    Günter

    Hi!

    Thank you for coming back.

    I would advise to use this filter hook and not to modify the core file.

    You can use the hook as follow:

    
    add_filter('avf_which_archive_output','avf_change_which_archive', 10, 3);
    function avf_change_which_archive($output)
    {
    
          // put here your code to modify $output;
    
                return $output;
    }
    

    $output is the string ready for output. If you want to remove parts of the string you can do it with a code similar to:

    
     $output = str_ireplace ( 'Archive for category:', '', $output);
    

    Or you can add parts of the core file to modify $output.

    Hope, this will help you.

    Do not forget at the end of the function:

    
         return $output;
    

    Cheers!
    Günter

    in reply to: Sidebar widgets background colour #396854

    Hey!

    Thank you for coming back.

    Try to use the following:

    
    .sidebar .widget_mc4wp_widget {
        background: none repeat scroll 0 0 red;
    }
    

    You probably will have to add some padding also.

    Each widget also has a unique ID you can use.

    Best regards,
    Günter

    in reply to: Custom form fields width and Submit button #395167

    Hi!

    Thank you for coming back.

    It is not possible for us to support all 3rd party plugins.

    We try to help you with small adoptions, but it is out of scope of support to implement and support that plugin.

    Cheers!
    Günter

    in reply to: Get rid of big row spaces on mobile devices #395128

    Hi crewneck!

    Try to put it in a media Query and adjust the width value:

    
    @media only screen and  (max-width: 989px) {
        .responsive #top .container .av-content-small, .responsive #top #wrap_all .flex_column, .responsive #top #wrap_all .av-flex-cells .no_margin {
    	margin: 0 0 0px !important;
    	width: 100%;
    }
    }
    

    Best regards,
    Günter

    in reply to: Custom form fields width and Submit button #395119

    Hey!

    Glad we could help you.

    I’ll leave this post open for further inquiries to this topic for you.

    Best regards,
    Günter

    in reply to: White border 1px under my footer. Cant get rid of it? #395114

    Hey crewneck!

    Thank you for coming back.

    Try the following:

    
    
    #footer {
        max-height: 50px !important;
    }
    

    I think it was caused by the backgriund image, which is only 50px high

    Regards,
    Günter

    in reply to: Custom form fields width and Submit button #395108

    Hey JTV Digital!

    Thank you for using our theme.

    You can use a code like that:

    
    #mc_signup_form input {
        width: 100% !important;
    }
    
    #mc_signup_form select {
        width: 100% !important;
    }
    
    

    And add your stylings.

    Cheers!
    Günter

    in reply to: Question regarding the Partner/Logo Element (avia framework) #395089

    Hey Lev!

    Thank you for coming back.

    Sorry, but there is no easy way. This popup is realized as a tooltip and not part of the HTML structure – so we have no chance to display it.

    You must modify the core file: enfold\config-templatebuilder\avia-shortcodes\logoslider.php, if you want to integrate it.

    But this is customizations and bejond the scope of support.

    Regards,
    Günter

    in reply to: Transparent background for Accordions #395064

    Hey sensationallife14!

    Thank you for using our theme.

    Try to put the following in Enfold->Styles->QuickCSS or custom.css:

    
    .toggle_content {
        background: none repeat scroll 0 0 transparent !important;
    }
    

    For the headline use:

    
    .toggler {
        background: none repeat scroll 0 0 transparent !important;
    }
    

    If it does not work, can you post us a link to your page so we can checlk for the CSS.
    You can do it as a private reply.

    Regards,
    Günter

    in reply to: Remove Comments are closed #395060

    Hi Morticka!

    Thank you for coming back.

    Use the following:

    
    .nocomments {
        display: none !important;
    }
    

    Best regards,
    Günter

    in reply to: footer height same as socket #395023

    Hey humanbrand!

    Thank you for using our thjeme.

    Try the following instead of your code:

    
    #footer .widget {
        margin-bottom: 15px !important;
        margin-top: 15px !important;
    }
    

    To right align the text:

    
    #footer .widget .textwidget {
        text-align: right !important;
    }
    

    Best regards,
    Günter

    in reply to: Hide transparent header only on desktop devices #395003

    Hi!

    Glad you found a solution. Enjoy the theme.

    Best regards,
    Günter

    in reply to: Hide transparent header only on desktop devices #395001

    Hi cberentz!

    Thank you for coming back.

    You have to put the CSS in a media query like below and adjust the width:

    
    @media only screen and (min-width: 989px)  {
           .home .av_header_transparency { display: none !important; }
    }
    

    Cheers!
    Günter

    in reply to: Blog meta elements #394996

    Hey Bubarama!

    Thank you for coming back.

    You have to alter the following core file: enfold\includes\loop-index.php.

    Goto line 169 and look for:

    
    echo '<span class="blog-categories minor-meta">'.__('in','avia_framework')." ";
    

    You can replace ‘in’ with the value you like.

    Do not forget to do this replacement on every update.

    Best regards,
    Günter

    in reply to: Text in Portfolio titles #394569

    Hey luiso!

    Thank you for using our theme.

    Did you find a solution – when going to your site and “projects” I find a white backgrund behind the title (screenshot is black.

    Or do I understand something wrong?

    To make it like screenshot:

    
    .page-id-402 #main .grid-content {
        background-color: #381000 !important;
    }
    
    .page-id-402 #main .grid-content .grid-entry-title {
        background: none repeat scroll 0 0 transparent !important;
        color: white !important;
    }
    

    Cheers!
    Günter

    in reply to: Author Name in Blog Archive (blog-grid mode) #394503

    Hey!

    Thank you for coming back.

    The code above should affect only pages that use elements from the layout builder, not the standard pages.

    But to be sure try to setup a testpage and check it.

    Regards,
    Günter

    in reply to: Testimonial Author Position #394336

    Hey brandonwu!

    Thank you for using our theme.

    You have to modify the file enfold\config-templatebuilder\avia-shortcodes\testimonials.php.

    Goto line 385ff and you find:

    
    				$output .= "<div class='avia-testimonial {$class}' $markup>";
    				$output .= "<div class='avia-testimonial_inner'>";
    	if($grid)   $output .= $avatar;
    				$output .= 		"<div class='avia-testimonial-content {$this->content_class}'  {$this->content_styling} {$markup_text}>";
    				$output .= 		ShortcodeHelper::avia_apply_autop(ShortcodeHelper::avia_remove_autop($content));
    				$output .= 		"</div>";
    				$output .= 			"<div class='avia-testimonial-meta'><div class='avia-testimonial-arrow-wrap'><div class='avia-arrow'></div></div>";
    	if(!$grid)  $output .=  $avatar;
    				$output .= 				"<div class='avia-testimonial-meta-mini'>";
    	if($name)	$output .= 					"<strong  class='avia-testimonial-name'  {$this->title_styling} {$markup_name}>{$name}</strong>";
    if($subtitle)	$output .= 					"<span  class='avia-testimonial-subtitle {$this->subtitle_class}' {$this->title_styling}  {$markup_job}>{$subtitle}</span>";
        if($link)	$output .= 					"<span class='hidden avia-testimonial-markup-link'  {$markup_url}>{$link}</span>";
    	if($link)	$output .= 					" &ndash; <a class='aviablank avia-testimonial-link' href='{$link}' >{$linktext}</a>";
    				$output .= 				"</div>";
    				$output .= 			"</div>";
    				$output .= "</div>";
    				$output .= "</div>";
    

    Replace with:

    
    				$output .= "<div class='avia-testimonial {$class}' $markup>";
    				$output .= "<div class='avia-testimonial_inner'>";
    	if($grid)   $output .= $avatar;
    				$output .= 			"<div class='avia-testimonial-meta'><div class='avia-testimonial-arrow-wrap'><div class='avia-arrow'></div></div>";
    	if(!$grid)  $output .=  $avatar;
    				$output .= 				"<div class='avia-testimonial-meta-mini'>";
    	if($name)	$output .= 					"<strong  class='avia-testimonial-name'  {$this->title_styling} {$markup_name}>{$name}</strong>";
    if($subtitle)	$output .= 					"<span  class='avia-testimonial-subtitle {$this->subtitle_class}' {$this->title_styling}  {$markup_job}>{$subtitle}</span>";
        if($link)	$output .= 					"<span class='hidden avia-testimonial-markup-link'  {$markup_url}>{$link}</span>";
    	if($link)	$output .= 					" &ndash; <a class='aviablank avia-testimonial-link' href='{$link}' >{$linktext}</a>";
    				$output .= 				"</div>";
    				$output .= 			"</div>";
    				
    //  these 3 lines have been moved !!!!
    				$output .= 		"<div class='avia-testimonial-content {$this->content_class}'  {$this->content_styling} {$markup_text}>";
    				$output .= 		ShortcodeHelper::avia_apply_autop(ShortcodeHelper::avia_remove_autop($content));
    				$output .= 		"</div>";
    				
    				$output .= "</div>";
    				$output .= "</div>";
    
    

    Regards,
    Günter

    in reply to: Possible to move Sharebox? #394330

    Hey!

    Glad we could help you. Enjoy the theme.

    Cheers!
    Günter

    in reply to: Colored boxes #394327

    Hey phil78!

    Thank you for coming back.

    Could you explain more clearly what you want to do and where you want to have the boxes? If possible, a link to the page and a screenshot would be helpful.

    Can you post us a link to your page, where you want to have transparent color and also what you want to be transparent?

    Regards,
    Günter

    in reply to: Sidebar not working properly on blog page #394311

    Hey Junior013!

    Thank you for using our theme.

    Can you post us a link to your page and we would need an admin account to check it pls.

    You can post it here as a private reply.

    Cheers!
    Günter

    in reply to: Portfolios – Are they compatible with other themes? #394304

    Hey mattmikulla!

    Thank you for using our theme.

    portfolios are custom post types and there is no WP standard rule for using them. It is most likely, that other themes handle it differently.
    Kriesi’s themes use portfolios in a standard way, so switching between our themes shouldn’t be a problem.

    If you really want to be theme independent you have to stick to standard WP posts and categories only.

    Hope this will help you.

    Cheers!
    Günter

    in reply to: Redirect Author Picture link to another page #394299

    Hi!

    Glad we could help you. Enjoy the theme.
    Feel free to come back with further questions.

    Best regards,
    Günter

    Hey!

    Thank you for coming back.

    I checked your page. To me it looks OK.

    On the homepage I do not see an author name at all.

    Clicking on a single post like “Against Cessationism” only shows “by Sam King”.

    Clicking “Essays” also leads to posts only showing “by Sam King”.

    Can you specify more closely how to come to your described problem and give us some scrrenshots please?

    Best regards,
    Günter

    in reply to: Using posts for portfolio #394296

    Hi!

    Thank you for coming back.

    This is a general WP problem.

    “Posts” are WP standard post types and portfolio are custom post types. The query for these posts is different and you must rewrite the complete logic for the queries.

    Cheers!
    Günter

    in reply to: Formatting Issues #394292

    Hey HiDrew!

    Thank you for coming back.

    Try the followign for the title and adjust the values:

    
    #header .inner-container .logo {
        color: red !important;
        font-size: 45px !important;
    }
    

    Your code is too general, it is overwritten by the styling of other elements. You have to use a code like:

    
    #main p {
        line-height: 181% !important;
    }
    

    Come back if you need more help with styling.

    Best regards,
    Günter

    in reply to: HOW ON EARTH DO I REMOVE RELATED PRODUCTS? #394283

    Hey sambo258!

    Thank you for using our theme.

    The link you gave us is not working.

    It would be helpful to see your site. And can you also specify more closer, on which pages you want to remove the related products.

    Regards,
    Günter

Viewing 30 posts - 2,971 through 3,000 (of 3,695 total)