Forum Replies Created
-
AuthorPosts
-
Hey,
Add the css then change the switchWidth value. Please experiment with it. It may depend on the number of menu items and the width of the screen.
Regards,
Ismael
Hey,
Edit config-templatebuilder > aviashortcodes > iconlist.php, find this code:
$output = "";
$output .= "<li>";
$output .= "<div class='iconlist_icon avia-font-".$icon_el['font']."'><span class='iconlist-char'>{$display_char}</span></div>";
$output .= "<div class='iconlist_content_wrap'>";
$output .= "<h4 class='iconlist_title'>".$atts['title']."</h4>";
$output .= "<div class='iconlist_content'>".ShortcodeHelper::avia_apply_autop(ShortcodeHelper::avia_remove_autop( $content ) )."</div>";
$output .= "</div>";
$output .= "<div class='iconlist-timeline'></div>";
$output .= "</li>";Replace it with:
$output = "";
$output .= "<li>";
$output .= "<a href='{$atts['link']}' title=''><div class='iconlist_icon avia-font-".$icon_el['font']."'><span class='iconlist-char'>{$display_char}</span></div></a>";
$output .= "<div class='iconlist_content_wrap'>";
$output .= "<h4 class='iconlist_title'>".$atts['title']."</h4>";
$output .= "<div class='iconlist_content'>".ShortcodeHelper::avia_apply_autop(ShortcodeHelper::avia_remove_autop( $content ) )."</div>";
$output .= "</div>";
$output .= "<div class='iconlist-timeline'></div>";
$output .= "</li>";Cheers,
Ismael
Hey,
You can add Google Fonts, just add this on your functions.php:
add_filter( 'avf_google_heading_font', 'avia_add_heading_font');
function avia_add_heading_font($fonts)
{
$fonts['Patrick Hand'] = 'Patrick Hand';
return $fonts;
}
add_filter( 'avf_google_content_font', 'avia_add_content_font');
function avia_add_content_font($fonts)
{
$fonts['Patrick Hand'] = 'Patrick Hand';
return $fonts;
}Replace the font name.
You can also check this plugins:
http://wordpress.org/plugins/font-uploader/
http://wordpress.org/plugins/wp-google-fonts/
Regards,
Ismael
Hi,
I inspect your website and I can see that the text-shadow property on the specified selectors is applied correctly.
body .avia-button.avia-color-theme-color, body .avia-button.avia-color-theme-color:hover {
text-shadow: none;
}Can you point us to the elements where you want to remove the text shadows? A screenshot will help.
Regards,
Ismael
Hey,
You can add this on your custom.css or Quick CSS:
.avia-slideshow-dots.avia-slideshow-controls {
display: none;
}
.avia-slideshow-arrows.avia-slideshow-controls {
display: none !important;
}Your website is awesome. :)
Regards,
Ismael
Hey,
Yes, sure you can. Please refer to this link if you want to add background to your iconbox and iconlist:
https://kriesi.at/support/topic/adding-gradient-background-to-icons
You can also use this if you want to change the color of the icons:
Icon box:
.iconbox_icon.heading-color.avia-font-entypo-fontello {
color: red;
}Icon list:
.iconlist-char {
color: pink;
}Regards,
Ismael
August 22, 2013 at 3:18 am in reply to: How do I add a Facebook icon next to the Twitter and RSS Feeds Icons? #136340Hey,
You can add the code do_shortcode if the plugin has the code for it or you can edit framework > php > class-framework-widget.php. Find this code:
$output .= "<a href='$link'>".apply_filters('avf_social_widget',"", 'rss')."<strong class='asc_count'>".$follower['rss']."<span>".$feed_text."</span></a>"; }
Below you can a facebook social icon that will link to your facebook page.
$output .= "<a href='http://www.facebook.com/kriesi'>".apply_filters('avf_social_widget',"", 'facebook')."<span>Like us</span></a>";
Regards,
Ismael
Hey,
Please asked your host to set these settings on PHP.
suhosin.post.max_vars = 5000
suhosin.request.max_vars = 5000If you have access to the .htaccess file, add this:
php_value suhosin.post.max_vars 2048
php_value suhosin.request.max_vars 2048Regards,
Ismael
August 22, 2013 at 2:11 am in reply to: Deactivate table functions and borders around images #136300Hey,
The css for the table element is located on css > base.css > #Table. You can edit those or remove them completely if you want your own modifications for the table element. You can also override them using the custom.css or Quick CSS. I notice that you have an inline css code for the table element, it will automatically override the table properties located on base.css.
Regards,
Ismael
Hi,
There is no option to select a right sidebar for single product page. You can hide the sidebar entirely using this:
.single-product .sidebar.sidebar_sidebar_right.three.alpha.units {
display: none !important;
}Regards,
Ismael
Hi,
Sometimes you need to reset the sidebars or widget areas. Please use this plugin: http://wordpress.org/plugins/widgets-reset/
Note: This will remove all of your widgets taking it back to factory settings.
Regards,
Ismael
Hey,
You can add this on your custom.css or Quick CSS:
.stretch_full.container_wrap.title_container {
display: none;
}Regards,
Ismael
Hi,
I don’t see any featured images on your shop page. Please add them.
Regards,
Ismael
Hey,
Edit it a bit
.page-id-2397 .flex_column.av_one_third.first.avia-builder-el-6.el_after_av_hr {
width: 32.333%;
}Regards,
Ismael
Hey,
Please send the login details to ///.
Include the word “Kriesi” on the subject. Add the link of this thread on your email.
Regards,
IsmaelHey,
You can do this:
.current-menu-ancestor {
background: red;
}
#top .main_menu .menu li:hover {
background: orange;
}Regards,
Ismael
Hi,
Is it ok if you create a fresh installation of WordPress 3.6 without any themes? I would like to upload the theme myself if it’s ok with you.
Regards,
Ismael
Hey,
Please add this on your custom.css or Quick CSS to avoid the menu overlapping the logo:
@media only screen and (max-width: 767px) {
.main_menu ul:first-child > li > a {
padding: 0 8px;
font-size: 12px;
}
}Edit js > avia.js, find this code:
switchWidth = 768;
if(first_level_items > 7 && !bottom_menu)
{
switchWidth = 989;
header.addClass('mobile_menu_tablet');
}Replace the first switchWidth value to 990.
Regards,
Ismael
Hey,
Please add this on your custom.css or Quick CSS:
#top .fullsize .template-blog a {
float: none;
display: inline-block;
width: auto;
}Regards,
Ismael
August 21, 2013 at 1:47 pm in reply to: How create images with exactly square corners (no rounding)? #136253Hi,
No, the Enfold is using the Entypo Fontello font for the icons. http://www.entypo.com/
Regards,
Ismael
Hey,
@Björn Sennbrink: Thank you for this. Please let us know if you’re finish. :)
Regards,
Ismael
Hey,
Did you change anything on the css files?
Please add this on your custom.css or Quick CSS
.content .entry-content .entry-content {
padding-left: 100px;
}Regards,
Ismael
Hey,
What type of header do you have? The css selectors are different for header with bottom navigation.
Regards,
Ismael
Hey,
They are the “blue” text, right? They are working fine on my end.
Regards,
Ismael
Hey,
Thanks for the screenshot. Please remove all of the code I gave you then use this instead:
#top .main_menu .menu li {
display: none;
}
#menu-item-search {
display: block !important;
}
#header_main .social_bookmarks {
left: 0;
top: 120%;
}Regards,
Ismael
-
AuthorPosts