Forum Replies Created
-
AuthorPosts
-
Hi!
Please add this on Quick CSS:
.header_scrolled, .logo, .logo a, .logo a img, #header_main .container { min-height: 70px !important; } #top .header-scrolled .main_menu { margin-top: 15px; }
Adjust the top margin of the menu according to the height of the header.
Best regards,
IsmaelJanuary 18, 2014 at 11:38 pm in reply to: How to get “RSS Link and Twitter account” WIDGET to open new window #211764Hi!
No, it will not. You can request it here: https://kriesi.at/support/topic/enfold-feature-requests/
Best regards,
IsmaelHi!
Yeah, I can see it now. I’m not really sure why it jumps. Please add this on Quick CSS:
.alignnone:hover { padding: 0; margin: 0; }
Best regards,
IsmaelJanuary 18, 2014 at 11:09 pm in reply to: How to change overlay hover of related posts under blog post #211752Hi!
My bad! You can edit funtions.php, find this code:
'standard' => array( 'font' =>'entypo-fontello', 'icon' => 'ue836')
Change “ue836” to something else. Please get the icon codes here: http://fontello.com/. You can remove the icon using this on Quick CSS:
.related-format-icon-inner, .related-format-icon{ display: none !important; }
Cheers!
IsmaelJanuary 18, 2014 at 10:37 pm in reply to: How to change overlay hover of related posts under blog post #211735Hey!
I see all of the featured images on the related posts. Please remove browser cache then reload the page a few times. You should test this on another browser.
Best regards,
IsmaelHi!
Please watch these videos to learn more about the theme. This one will teach you how to create a mega menu: http://vimeo.com/channels/aviathemes/67651241
You should probably create a test site then Import the Dummy data. This will give you a lot of ideas on how the theme works.
Cheers!
IsmaelHi!
Your code is incorrect. Remove the + sign:
add_filter( 'avf_google_heading_font', 'avia_add_heading_font'); function avia_add_heading_font($fonts) { $fonts['PT Sans Narrow'] = 'PT Sans Narrow:400,700'; $fonts['PT Sans'] = 'PT Sans:400,700,400italic,700italic'; return $fonts; } add_filter( 'avf_google_content_font', 'avia_add_content_font'); function avia_add_content_font($fonts) { $fonts['PT Sans'] = 'PT Sans:400,700,400italic,700italic'; $fonts['PT Sans Narrow'] = 'PT Sans Narrow:400,700'; return $fonts; }
Best regards,
IsmaelHey gentlemansgazette!
You can upload the image background on Enfold > Styling. Apply a Background image for Header, Main Content etc.
Best regards,
IsmaelHi jh100!
You can add this on Quick CSS to specify a width for the table columns:
.avia-table.avia-data-table.avia-table-1.avia-builder-el-1.el_after_av_textblock.avia-builder-el-last td { width: 200px; }
Best regards,
IsmaelJanuary 18, 2014 at 10:24 pm in reply to: How to change overlay hover of related posts under blog post #211724Hey Mattias!
Switch to Advance Layout Builder then you can use the Logo/Partner Element under Media Elements panel.
Best regards,
IsmaelHey zebraz!
Add the phone number on Enfold > Header > Phone Number or small info text.
Cheers!
IsmaelHey!
Please do the following:
1.) Add this to increase the height of the logo on mobile view:
@media only screen and (max-width: 767px) { .responsive .logo { height: 130px; } }
2.) Use this to remove the gap below the layer slider:
@media only screen and (max-width: 767px) { .responsive #main .container_wrap:first-child { border-top: none; height: 150px !important; } }
3.) Did you set a “Responsive Header Main Menu” on Enfold > Header?
Best regards,
IsmaelHi Tommy!
You can use this to modify the portfolio excerpt:
.grid-entry-excerpt.entry-content { font-size: 20px; font-family: Arial; font-style: normal; }
Change the values. Add this to center align the excerpt:
.grid-entry-excerpt.entry-content { text-align: center; }
Cheers!
IsmaelJanuary 18, 2014 at 10:12 pm in reply to: How to change overlay hover of related posts under blog post #211713Hi gentlemansgazette!
You need to add a featured image for each posts to remove the pen icon.
Cheers!
IsmaelJanuary 18, 2014 at 10:10 pm in reply to: spacing between rows of columns on a page and a css issue #211711Hey tonyiatridis!
You can add this on Quick CSS to decrease the top padding of columns:
body .column-top-margin { margin-top: 10px; }
Add this to remove the underline on hover state:
a:hover, a:focus, a:visited { outline: 0; text-decoration: none; }
This one for the hover color:
.experiencecaptions:hover { color: red; }
Regards,
IsmaelHi josephnarai!
I have reported the issue to Kriesi. We’ll let you know.
Regards,
IsmaelHey!
Let me ask Dude about this. Please wait for his response. Please do the solutions above then remove browser cache or test it on another browser.
Best regards,
IsmaelJanuary 18, 2014 at 9:54 pm in reply to: Top Navigation not being displayed on Search Results Page #211697Hi Anthony!
Seems like a plugin issue to me. 35 plugins will possibly cause you an issue or two. Please post the login details here as a private reply. Deactivate all plugins first. We would like to check it after you deactivate all the plugins because we don’t want to mess with your plugin settings.
Best regards,
IsmaelHey!
Edit js > avia.js, find this code on line 1011:
if(pos.left + megaDiv.width() < parentContainerWidth) { megaDiv.css({right: -megaDiv.outerWidth() + item.outerWidth() }); //item.css({position:'static'}); } else if(pos.left + megaDiv.width() > parentContainerWidth) { megaDiv.css({right: -mainMenuParent.outerWidth() + (pos.left + item.outerWidth() ) }); }
Replace it with:
if(pos.left + megaDiv.width() < parentContainerWidth) { megaDiv.css({right: 0 }); //item.css({position:'static'}); } else if(pos.left + megaDiv.width() > parentContainerWidth) { megaDiv.css({right: 0 }); }
Remove browser cache then reload the page a few times.
Cheers!
IsmaelHey caesss!
Thank you for the heads up. Appreciated! Anyway, the markup has been changed on latest version of Enfold.
$link = aviaHelper::get_url($link); if(!empty($link)) { $title = "<a href='$link' title='".esc_attr($title)."' $blank>$title</a>"; }
Regards,
IsmaelJanuary 18, 2014 at 9:27 pm in reply to: How to get “RSS Link and Twitter account” WIDGET to open new window #211682Hi Anthony!
Edit framework > php > class-framework-widgets.php, find this code on line 594:
echo $before_widget; $output = ""; if(isset($twitter)) { $link = 'http://twitter.com/'.$twitter.'/'; $before = apply_filters('avf_social_widget', "", 'twitter'); $output .= "<a href='$link' class='asc_twitter $addClass'>{$before}<strong class='asc_count'>".__('Follow','avia_framework')."</strong><span>".__('on Twitter','avia_framework')."</span></a>"; } if($rss) { $output .= "<a href='$rss' class='asc_rss $addClass'>".apply_filters('avf_social_widget',"", 'rss')."<strong class='asc_count'>".__('Subscribe','avia_framework')."</strong><span>".__('to RSS Feed','avia_framework')."</span></a>"; }
Replace it with:
echo $before_widget; $output = ""; if(isset($twitter)) { $link = 'http://twitter.com/'.$twitter.'/'; $before = apply_filters('avf_social_widget', "", 'twitter'); $output .= "<a target='_blank' href='$link' class='asc_twitter $addClass'>{$before}<strong class='asc_count'>".__('Follow','avia_framework')."</strong><span>".__('on Twitter','avia_framework')."</span></a>"; } if($rss) { $output .= "<a target='_blank' href='$rss' class='asc_rss $addClass'>".apply_filters('avf_social_widget',"", 'rss')."<strong class='asc_count'>".__('Subscribe','avia_framework')."</strong><span>".__('to RSS Feed','avia_framework')."</span></a>"; }
Regards,
IsmaelJanuary 18, 2014 at 9:24 pm in reply to: How can I add my own social icons in a widget area or using the avia builder? #211681Hi thyon!
You can use the Icon shortcode. Render it using a test page then copy the shortcode. Place inside a Text widget.
Regards,
IsmaelHi pako69!
You can add a unique selector for each Avia Elements. Edit functions.php, find this code:
if(isset($avia_config['use_child_theme_functions_only'])) return;
Below, add this code:
add_theme_support('avia_template_builder_custom_css');
Edit any avia elements then look for “Custom Css Class”.
Best regards,
IsmaelHey Artinet!
I’m sorry but there is no content below the image on the link you gave us. I don’t see the “jump”. This usually happens when you add the alignleft, alignright css selectors if I am not mistaken.
Regards,
IsmaelHi!
Glad you found it. You can also add the code on css > custom.css file.
Cheers!
IsmaelHi!
Please give us a link to the website and if possible please translate the inquiry in english. Thanks.
Best regards,
IsmaelHi fjrichart!
he Advanced Layout Builder is not set up to run on posts correctly so it isn’t something we support. You can watch this video how: http://vimeo.com/64996057
These are the following problems that may occur when you switch to Advance Layout Builder on posts.
– Featured image will be lost on the single post view.
– The post title will switch to the left of the header instead of below the featured image.
– You can’t comment on posts.
– No related posts will be shown or interesting links.Best regards,
Ismael -
AuthorPosts