Forum Replies Created
-
AuthorPosts
-
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ünterHi 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ünterHey!
Glad we could help you.
I’ll leave this post open for further inquiries to this topic for you.
Best regards,
GünterFebruary 12, 2015 at 4:07 pm in reply to: White border 1px under my footer. Cant get rid of it? #395114Hey 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ünterHey 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ünterFebruary 12, 2015 at 3:48 pm in reply to: Question regarding the Partner/Logo Element (avia framework) #395089Hey 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ünterHey 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ünterHi Morticka!
Thank you for coming back.
Use the following:
.nocomments { display: none !important; }
Best regards,
GünterHey 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ünterHi 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ünterHey 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ünterHey 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ünterHey!
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ünterHey 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 .= " – <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 .= " – <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ünterHey 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ünterHey 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ünterFebruary 11, 2015 at 1:33 pm in reply to: Portfolios – Are they compatible with other themes? #394304Hey 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ünterHi!
Glad we could help you. Enjoy the theme.
Feel free to come back with further questions.Best regards,
GünterFebruary 11, 2015 at 1:26 pm in reply to: Username is shown in a blog post next to my author display name #394298Hey!
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ünterHi!
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ünterHey 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ünterHey 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ünterHey!
Thank you for using our theme.
You have to modify the core file enfold\config-templatebuilder\avia-shortcodes\postslider.php.
Goto line 375 you find:
if($show_meta && !empty($excerpt)) { $output .= "<div class='slide-meta'>"; if ( $commentCount != "0" || comments_open($the_id) && $entry->post_type != 'portfolio') { $link_add = $commentCount === "0" ? "#respond" : "#comments"; $text_add = $commentCount === "1" ? __('Comment', 'avia_framework' ) : __('Comments', 'avia_framework' ); $output .= "<div class='slide-meta-comments'><a href='{$link}{$link_add}'>{$commentCount} {$text_add}</a></div><div class='slide-meta-del'>/</div>"; } $markup = avia_markup_helper(array('context' => 'entry_time','echo'=>false, 'id'=>$the_id, 'custom_markup'=>$custom_markup)); $output .= "<time class='slide-meta-time updated' $markup>" .get_the_time(get_option('date_format'), $the_id)."</time>"; $output .= "</div>"; }
Replace with:
if($show_meta && !empty($excerpt)) { $output .= "<div class='slide-meta'>"; $author_id = $entry->post_author; $author_name = get_the_author_meta('display_name', $author_id); $author_link = get_the_author_meta('user_url', $author_id); $output .= "<div class='slide-meta-comments'><a href='{$author_link}'>{$author_name}</a></div>"; // $output .= "<div class='slide-meta-del'>/</div>"; // if ( $commentCount != "0" || comments_open($the_id) && $entry->post_type != 'portfolio') // { // $link_add = $commentCount === "0" ? "#respond" : "#comments"; // $text_add = $commentCount === "1" ? __('Comment', 'avia_framework' ) : __('Comments', 'avia_framework' ); // // $output .= "<div class='slide-meta-comments'><a href='{$link}{$link_add}'>{$commentCount} {$text_add}</a></div><div class='slide-meta-del'>/</div>"; // } // $markup = avia_markup_helper(array('context' => 'entry_time','echo'=>false, 'id'=>$the_id, 'custom_markup'=>$custom_markup)); // $output .= "<time class='slide-meta-time updated' $markup>" .get_the_time(get_option('date_format'), $the_id)."</time>"; $output .= "</div>"; }
Cheers!
GünterFebruary 11, 2015 at 12:18 pm in reply to: Custom post types to look like small and large Enfold Blog feed #394252Hey!
There is a problem with the intermal rewrite rules of WP.
The permalink suha-gradnja seems to link to the old post, you deleted. It must be found in a .htaccess file.
I added a new empty post with the permalink suha_gradnja that works. If you can live with that, simply copy your content into that post.
Otherwise you must find the entry and remove it from the htaccess file.
Cheers!
GünterFebruary 10, 2015 at 1:35 pm in reply to: Remove bottom white area under footer and center text? #393664Hi crewneck!
Thank you for coming back.
Due to some reason the hr element is set to a height of 2500px causing this white area.
Use the following and adjust the value:
.home #main .entry-content-wrapper div.hr { height: 5px !important; }
To center the headling text use:
.home .entry-content-wrapper .avia_textblock h1 { text-align: center !important; }
Cheers!
Günter -
AuthorPosts