Forum Replies Created

Viewing 30 posts - 61,051 through 61,080 (of 66,958 total)
  • Author
    Posts
  • in reply to: Style the excerpts in portfolio #214732

    Hi simmer!

    You can use this on Quick CSS:

    .grid-entry-excerpt.entry-content {
    font-size: 14px;
    color: red;
    font-style: normal;
    }

    Best regards,
    Ismael

    in reply to: Easyslider problem on iPhone #214730

    Hey studiotopo!

    Can you please give us a link and a screenshot of the page?

    Best regards,
    Ismael

    in reply to: Only child menus active #214729

    Hi davidtaylorwebmedia!

    Create a Custom Link on Appearance > Menus then insert a hashtag(#) on the URL field.

    Best regards,
    Ismael

    in reply to: how to replace an fontello Icon for an own customized icon #214718

    Hi 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,
    Ismael

    in reply to: Changing Terms and Conditions Font Size #214711

    Hi!

    Please use this instead:

    .form-row.terms label {
    font-size: 15px !important;
    }

    Remove browser cache then reload the page.

    Regards,
    Ismael

    in reply to: resizing space between columns #214707

    Hi!

    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,
    Ismael

    in reply to: main blog sidebar #214703

    Hey 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,
    Ismael

    in reply to: Gallery publishing wrong pictures #214699

    Hey!

    Please try append this on the .htaccess file:

    php_value upload_max_filesize 10M
    php_value post_max_size 20M
    php_value memory_limit 32M

    Best regards,
    Ismael

    in reply to: Contact Form in Layerslider not responsive #214698

    Hey!

    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-queries

    Cheers!
    Ismael

    in reply to: Accordion, open on hover #214693

    Hey 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,
    Ismael

    in reply to: Image doesn't fullsreen / zoom properly #214690

    Hi!

    I think the wp rocket plugin is causing the issue. Kriesi uses BWP Minify plugin to compress scripts and optimize page speed.

    Cheers!
    Ismael

    in reply to: How do you embed youtube video into layer slider? #214687

    Hey!

    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,
    Ismael

    in reply to: Enfold > Gallery > Mobile > White Space #214686

    Hey 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,
    Ismael

    in reply to: Linking to Anchor – Menue covering #214683

    Hey!

    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,
    Ismael

    in reply to: Responsive Slider #214680

    Hi 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,
    Ismael

    in reply to: Column modal #214675

    Hi 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,
    Ismael

    in reply to: WPML Language Selector on Top #214672

    Hey 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,
    Ismael

    in reply to: Mobile site not formatted correctly… #214670

    Hi!

    Please add this at the very bottom of the code you posted above:

    @media only screen and (max-width: 767px) {
    .responsive .logo {
    height: 85px;
    width: 400px !important;
    position: relative;
    left: -60px;
    }
    }

    The logo should look like this on mobile view:

    Cheers!
    Ismael

    in reply to: header style logo #214669

    Hi!

    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,
    Ismael

    in reply to: white page when creating or updating pages #214668

    Hey 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,
    Ismael

    in reply to: Enfold – Team members photo/box alignment #214666

    Hey!

    Glad it worked. :)

    Regards,
    Ismael

    in reply to: Enfold – Main menu and childs font colors #214665

    Hey 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,
    Ismael

    in reply to: Portfolio entry won't show by Category #214663

    Hey Js-interactive!

    Where did you send the login details? Please post it here as a private reply.

    Best regards,
    Ismael

    in reply to: Single Portfolio: 2/3 Gallery #214662

    Hi 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!
    Ismael

    in reply to: Why does my Logo keep jumping in size? #214661

    Hi!

    Please try this on Quick CSS to fix the logo on initial load:

    .logo img {
    height: 130px;
    width: 181px !important;
    }

    Cheers!
    Ismael

    Hey 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!
    Ismael

    in reply to: Adding a sendpepper smartform to a page breaks it #214656

    Hi 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,
    Ismael

    in reply to: Grayscale support …. help needed #214655

    Hey 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!
    Ismael

    Hey!

    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,
    Ismael

    in reply to: Font Awesome in menu #214652

    Hi 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

Viewing 30 posts - 61,051 through 61,080 (of 66,958 total)