Forum Replies Created
-
AuthorPosts
-
Hi simmer!
You can use this on Quick CSS:
.grid-entry-excerpt.entry-content { font-size: 14px; color: red; font-style: normal; }Best regards,
IsmaelHey studiotopo!
Can you please give us a link and a screenshot of the page?
Best regards,
IsmaelHi davidtaylorwebmedia!
Create a Custom Link on Appearance > Menus then insert a hashtag(#) on the URL field.
Best regards,
IsmaelJanuary 25, 2014 at 4:47 am in reply to: how to replace an fontello Icon for an own customized icon #214718Hi David!
Please add this on Quick CSS or custom.css:
.avia-icon-list-container.avia-builder-el-6.el_after_av_textblock.avia-builder-el-last .iconlist_icon { background: url('http://www.cadeaugolf.nl/wp-content/uploads/2013/04/image_rl2.png') no-repeat center center; background-size: 40px 40px; } .avia-icon-list-container.avia-builder-el-6.el_after_av_textblock.avia-builder-el-last .iconlist-char { display: none; }Best regards,
IsmaelHi!
Please use this instead:
.form-row.terms label { font-size: 15px !important; }Remove browser cache then reload the page.
Regards,
IsmaelHi!
You might need to adjust the width of the flex columns. Add this on Quick CSS:
div .av_one_fourth { margin-left: 2%; width: 24.5%; }Best regards,
IsmaelHey jmalevic!
What page did you set as blog or home page? You can set it on Enfold > Theme Options > Frontpage settings. You can create a custom sidebar on Appearance > Widgets > Enfold custom widget area then apply it on that page.
Regards,
IsmaelHey!
Please try append this on the .htaccess file:
php_value upload_max_filesize 10M php_value post_max_size 20M php_value memory_limit 32MBest regards,
IsmaelHey!
I’m sorry but making an element that is not really part of the theme responsive takes some time and we don’t have it now because the forum is being flooded with questions. You can refer to this links if you want to learn about media queries or hire a freelance developer to make the form responsive. You can use the “signupcontainer” selector to target the form.
http://mobile.smashingmagazine.com/2010/07/19/how-to-use-css3-media-queries-to-create-a-mobile-version-of-your-website/
http://webdesignerwall.com/tutorials/css3-media-queriesCheers!
IsmaelHey ey3!
Edit js > shortcodes.js, find this code on line 1082:
thisheading.on('click', function()Replace it with:
thisheading.on('hover', function()Remove browser cache then reload the page a few times.
Best regards,
IsmaelHi!
I think the wp rocket plugin is causing the issue. Kriesi uses BWP Minify plugin to compress scripts and optimize page speed.
Cheers!
IsmaelHey!
The next release of the theme will include a video implementation on the Fullscreen slider. I think that is what you need when I checked what you’re doing on the test site. I don’t think it is possible to add a fullscreen video on the layer slider without major modification. Try to enclose the iframe or video tag inside a div with 100% width:
<div style="width:100%;"><iframe src="//www.youtube.com/embed/UDW1bp6ANlE" frameborder="0" allowfullscreen></iframe></div>You should probably wait for the Fullscreen Slider video implementation on Enfold 2.5.
Regards,
IsmaelHey David!
The code above target the mobile screens like iPhone etc. Please add this below:
@media only screen and (max-width: 989px) and (min-width: 768px) { #top div .avia-gallery img { max-height: 217px; } }Best regards,
IsmaelHey!
Add this on the child theme’s functions.php:
/* * Register frontend javascripts: */ if(!is_admin()) { add_action('wp_enqueue_scripts', 'avia_register_child_frontend_scripts', 100); } function avia_register_child_frontend_scripts() { $child_theme_url = get_stylesheet_directory_uri(); //register js wp_register_script( 'avia-default-child', $child_theme_url.'/js/avia.js', array('jquery'), 1, false ); }Create a js folder on the child theme then add a avia.js file. You can insert Dude’s code on the new avia.js file.
Regards,
IsmaelHi bc3inca!
Please use the Fullscreen Slider because it is much more responsive and less complicated than the Layer Slider. You can also hide the slider on mobile view. Add this on Quick CSS:
@media only screen and (max-width: 767px) { #layer_slider_1 { display: none; } }Best regards,
IsmaelHi clecocq!
I’m sorry but this is beyond the scope of support. Please hire a freelance developer to help you. You can visit this link. Request the feature here.
Regards,
IsmaelHey t-creator!
Please add this at the very bottom of functions.php:
if(!function_exists('avia_append_lang_flags')) { //first append search item to main menu add_filter( 'wp_nav_menu_items', 'avia_append_lang_flags', 10, 2 ); function avia_append_lang_flags( $items, $args ) { if ((is_object($args) && $args->theme_location == 'avia')) { global $avia_config; global $sitepress; $languages = icl_get_languages('skip_missing=0&orderby=custom'); if(is_array($languages)) { foreach($languages as $lang) { $currentlang = (ICL_LANGUAGE_CODE == $lang['language_code']) ? 'avia_current_lang' : ''; if(is_home() || is_front_page()) $lang['url'] = $sitepress->language_url($lang['language_code']); $items .= "<li class='language_".$lang['language_code']." $currentlang'><a href='".$lang['url']."'>"; $items .= " <span class='language_flag'><img title='".$lang['native_name']."' src='".$lang['country_flag_url']."' /></span>"; $items .= "</a></li>"; } } } return $items; } }Best regards,
IsmaelHi!
You can actually use the “Header with social icons and bottom navigation” then set the theme to “Boxed Layout”. You can apply the logo as header background. Add something like this on QUuick CSS:
#header { background-repeat: no-repeat; background-image: url(https://localhost/kriesi/enfold/wp-content/uploads/2012/04/2.jpg); background-attachment: scroll; background-position: center center; background-size: cover; } .header_bg { opacity: 0; filter: alpha(opacity=0); } .logo { display: none; }Change the background-image url with your logo background.
Regards,
IsmaelHey newmesis!
It must be a plugin conflict, please try to deactivate all existing plugins specially the SEO plugin. Check it on another browser. Also, please try to increase the wordpress php memory limit. Refer to this link.
Regards,
IsmaelHey Monsoon!
What type of header do you have?
You can use this for the main menu color:
.header_color .main_menu ul:first-child > li > a { color: red; }You can use this for the menu background:
.header_color .main_menu ul:first-child > li { background: white; }A screenshot of what you’re trying to do will help.
Regards,
IsmaelHey Js-interactive!
Where did you send the login details? Please post it here as a private reply.
Best regards,
IsmaelHi Monique!
I’m sorry but I don’t see the difference between the two. Can you please elaborate? Add this on Quick CSS to set the thumbnail image on the navigation to 100% width with a minimum height and width of 80px:
.avia-post-nav .entry-image img { border-radius: 100px; display: block; width: 100%; height: 100%; min-height: 80px; min-width: 80px; }Cheers!
IsmaelHi!
Please try this on Quick CSS to fix the logo on initial load:
.logo img { height: 130px; width: 181px !important; }Cheers!
IsmaelJanuary 25, 2014 at 2:25 am in reply to: Colorbox 100% height doesn't seem to work on large monitors. #214660Hey biklops!
It does work on my end. If you select 50%, the color section’s container css will be set like this:
.av-minimum-height-50 .container { height: 205px; }75% will look like this:
.av-minimum-height-75 .container { height: 308px; }Cheers!
IsmaelHi ClaireBrummell!
I’m sorry but we don’t support third party plugins. Please contact the plugin author, maybe they can give you some insights on why this is happening.
Regards,
IsmaelHey Mario!
I’m sorry but this is beyond the scope of support. The code you posted above is not enough to create a grayscale effect. You need to hire a freelance developer to modify the masonry images.
Cheers!
IsmaelJanuary 25, 2014 at 2:14 am in reply to: How to change overlay hover of related posts under blog post #214653Hey!
I don’t see the overlay anymore. Please remove browser cache then reload the page a few times. Test it on another browser.
Best regards,
IsmaelHi studio-dlhastings!
You can generate the Icon shortcode on a page then get the icon shortcode’s actual html. You can do this using google chrome. Inspect the elements to see the actual markup. It looks something like this:
<span class="av_font_icon avia_animate_when_visible av-icon-style- av-no-color avia-icon-pos-left avia_start_animation avia_start_delayed_animation" style=""><span class="av-icon-char" style="font-size:40px;line-height:40px;" aria-hidden="true" data-av_icon="" data-av_iconfont="fontello"></span></span>Create a custom link on Appearance > Menus then add the code above as menu label.
Cheers!
Ismael -
AuthorPosts

