Forum Replies Created

Viewing 30 posts - 52,921 through 52,950 (of 67,510 total)
  • Author
    Posts
  • Hey!

    Select 6 columns on the Portfolio Grid. You can use this for the portfolio entries:

    #top .grid-entry.no_margin.av_one_sixth {
    width: 10%;
    }

    Adding a 7 or more column selection will require modification on the theme that is beyond the scope of support. Please hire a freelance developer or visit Envato Studio or Werkpress for further modifications.

    Best regards,
    Ismael

    in reply to: Masonry Content Element and video portfolio items #369315

    Hey!

    I tested the portfolio links on the page (http://broelando.nl/masonry-test/) with the video lightbox and it plays find without redirecting. I’ll ask the rest of the support team to check.

    Cheers!
    Ismael

    Hey schorni!

    Thank you for using Enfold.

    Use the “Add Media” button. Set the Alignment and the size of the thumbnail before you insert the image.

    Regards,
    Ismael

    in reply to: "Latest news" thumbnails not resizing properly #369311

    Hey!

    You didn’t choose the Portfolio thumbnail on the Post Slider’s On Select custom preview image size setting. Post the login details here so that we can take a look. Also, some of the images that you’re using are very small. Example: http://www.josemontero.es/ceain/wp-content/uploads/2014/11/4fb5c93a8b04b61b.jpg

    Please use images with a minimum width of 900px and above.

    Cheers!
    Ismael

    in reply to: Ajax Search not found text #369308

    Hey!

    Use the Codestyling Localization plugin. Search for the strings inside the $search_messages array.

    Cheers!
    Ismael

    in reply to: Enfold – Image behind page content #369307

    Hi!

    Add a color section then add apply an id to it using the For Developers: Section ID field. Use “white-bg” for example. Apply a background color or image. After that, use this on Quick CSS:

    #white-bg .container {
    background: #ffffff;
    }

    This will work better for Stretched Layout.

    Regards,
    Ismael

    in reply to: Change color of all links #369303

    Hi!

    Thank you for using Enfold.

    You can follow @Flikk’s suggestion. Or change the Highlight Color on Enfold > General Styling. :)

    Regards,
    Ismael

    Hi!

    We can’t see the preview because we don’t have the login details. Please post a screenshot of what you’re trying to do. Use the Grid Row element if you want to create two blocks or cells with different background or style.

    Cheers!
    Ismael

    Hi!

    Glad you figured it out. Regretfully, we cannot provide support for third party plugins or scripts as stated on our support policy due to the fact that there is simply no way to account for all of the potential variables at play when using another developer’s plugin or script. Because of this, any questions you have regarding setup, integration, or troubleshooting any piece of functionality that is not included on the theme package will need to be directed to the plugin author.

    Thank you for your understanding.

    Cheers!
    Ismael

    in reply to: Header & Nav in Sidebar Extend Beyond Wrapper Div #369295

    Hi wunderdojo!

    Thank you for using Enfold.

    You can set the Sticky Sidebar menu to Never Sticky so that the sidebar will not scroll with the content. A link to the actual website will help.

    Cheers!
    Ismael

    in reply to: Blank Pages #369294

    Hey grwebs!

    Thank you for using Enfold.

    Did you transfer the website? Make sure that you transfer the database correctly or you will lose the theme options. We usually recommend the WP MigrateDB or WP MigrateDB PRO plugin. A link to the website will help.

    Cheers!
    Ismael

    in reply to: Header Logo #369286

    Hi!

    You can add a top padding on the menu items:

    .main_menu ul:first-child > li a {
    padding-top: 30px;
    }

    Use css media queries to adjust the top padding on smaller screen sizes. Or use this:

    .main_menu > div > ul.av-main-nav > li > a {
    padding-top: 30px !important;
    }

    Cheers!
    Ismael

    in reply to: SUBMIT Button to RIGHT of TEXT INPUT FIELDS #369283

    Hey!

    You can try this:

    .home div#av_section_1 p.form_element:last-child {
    width: auto;
    clear: none;
    margin-left: 2%;
    top: 25px;
    }
    
    .home div#av_section_1 .form_element .button {
    width: 100%;
    }
    
    .home div#av_section_1 .avia_ajax_form .form_element_third {
    width: 26%;
    }

    Apply a unique id on the color section which contains the form fields. Replace the div#av_section_1 id.

    Regards,
    Ismael

    Hi!

    If you use the Advance Layout builder for portfolio items, it will not show the featured image by default. You need to add it manually using a slider or the image element. If you want to show the featured image automatically, switch to the Default Editor. Please remove the Portfolio Grid element on the portfolio items.

    Cheers!
    Ismael

    in reply to: Fixed button on Layer Slider #369281

    Hi!

    This is what it looks like on iPad screen width:

    Add this on Quick CSS to adjust the minimum height of the input fields container.

    @media only screen and (min-width: 768px) and (max-width: 989px) {
    .flc-inputdata {
    min-height: 60px;
    }
    }

    Cheers!
    Ismael

    in reply to: Changing overlay image on link to lightbox #369279

    Hi!

    The filter doesn’t work because hover overlay icons are declared directly via CSS. It will work when you want to change the icons declared inside the data-av_icon attribute, for example, social icons. This will change the twitter icon to something else:

    add_action('init', 'avia_replace_default_icon', 10, 1);
    function avia_replace_default_icon($icons) { 
    	global $avia_config;
    	
    	$avia_config['font_icons']['twitter']['icon'] = 'ue877';
    	return $icons;
    }

    Note that you can’t use custom font icon on the theme aside from fonts generated on fontello.com.

    Cheers!
    Ismael

    Hi!

    You can edit js > shortcodes.js, find this code on line 2139:

    wh100 		= win.height(),
    

    Replace it with:

    wh100 		= Math.round( win.height() * 0.80 ),
    

    It will only show 80% of the slider. You can adjust the value. Remove browser cache then reload the page.

    Cheers!
    Ismael

    in reply to: wpml – flags and names #369274

    Hi!

    You didn’t set the Head Menu as Enfold Main Menu on Appearance > Menus panel. Please check your site now: http://souvenirsingular.com/

    Best regards,
    Ismael

    in reply to: Multiple versions of Latest CPT widget #369273

    Hi Arjan de Wit!

    Thank you for using Enfold.

    You can try this on functions.php:

    add_action('after_setup_theme','avia_load_additional_widget');
    function avia_load_additional_widget() {	
    	// portfolio
    	if (!class_exists('avia_customcptbox_portfolio')) {
    		class avia_customcptbox_portfolio extends avia_newsbox {
    		function avia_customcptbox_portfolio() {
    			$this->avia_term = 'portfolio_entries';
    			$this->avia_post_type = 'portfolio';
    			$this->avia_new_query = ''; //set a custom query here
    			$widget_ops = array('classname' => 'newsbox', 'description' => 'A Sidebar widget to display latest portfolio entries in your sidebar' );
    			
    			$this->WP_Widget( 'customcptbox_portfolio', THEMENAME.' Latest CPT Portfolio', $widget_ops );
    			}	
    		}
    		register_widget( 'avia_customcptbox_portfolio' );
    	}
    
    	// post
    	if (!class_exists('avia_customcptbox_post')) {
    		class avia_customcptbox_post extends avia_newsbox {
    		function avia_customcptbox_post() {
    			$this->avia_term = 'category';
    			$this->avia_post_type = 'post';
    			$this->avia_new_query = ''; //set a custom query here
    			$widget_ops = array('classname' => 'newsbox', 'description' => 'A Sidebar widget to display latest post entries in your sidebar' );
    			
    			$this->WP_Widget( 'customcptbox_post', THEMENAME.' Latest CPT Post', $widget_ops );
    			}	
    		}
    		register_widget( 'avia_customcptbox_post' );
    	}
    }

    This will show entries for portfolio items and default post type.

    Best regards,
    Ismael

    in reply to: The translation of the theme does not work on my site #369271

    Hi!

    I’ll report the issue to Kriesi. Please wait for his response.

    Best regards,
    Ismael

    in reply to: A list with Letter #369270

    Hi!

    Are you referring to the layer slider or the color section below? If you want to fix the layer slider, go to the Layer Slider panel then follow the instructions above. If you’re looking to adjust the color section background, add this on Enfold > General Styling > Quick CSS field:

    @media only screen and (max-width: 1200px) {
    div#av_section_1 {
    background-position: 80% !important;
    }
    }

    Regards,
    Ismael

    in reply to: Grid Row Covers Sidebar #369269

    Hey!

    Looks like it is fixed. Can you please create a test page with the Special Heading element? We would like to see it in action. Maybe, we can reproduce the issue.

    Cheers!
    Ismael

    in reply to: Fullwidth sub menu questions #369267

    Hey!

    I don’t see any fullwidth submenu element on the page. Please add it then we’ll check it again.

    Best regards,
    Ismael

    in reply to: all languages in search result #369252

    Hi!

    Glad it worked. :)

    Regards,
    Ismael

    in reply to: Problem with private blog posts in Chrome #368796

    Hi!

    We tested this on our installation and the private posts are not visible on the grid layout. The test page that you provided does not exist. Please check. If possible, please deactivate all plugins. We would like to check it.

    Regards,
    Ismael

    in reply to: Magazine #368788

    Hey!

    Edit magazine.php located on config-templatebuilder > avia-shortcodes > magazine.php. Find this code:

    $titleAttr		= "title='".__('Link to:','avia_framework')." ".the_title_attribute('echo=0')."'";
    

    Replace it with:

    $titleAttr		= "title='".__('Link to:','avia_framework')." ".the_title_attribute(array('echo' => 0, 'post' => $entry->ID))."'";
    

    This should be fix on the next update. Unfortunately, the magazine element does not support sticky posts.

    Cheers!
    Ismael

    in reply to: Larger testimonial slider #368779

    Hi!

    Adjust the left and right padding:

    @media only screen and (max-width: 768px) {

    #top .av-large-testimonial-slider.avia-testimonial-wrapper .avia-testimonial {
    padding: 0px 30px;
    }
    
    #top .av-large-testimonial-slider .avia-slideshow-arrows a {
    font-size: 25px;
    }
    
    .prev-slide:before {
    text-indent: -30px;
    }
    
    .next-slide:before {
    text-indent: 30px;
    }
    }

    Remove browser cache then reload the page.

    Regards,
    Ismael

    Hi!

    Why did you add a Portfolio Grid element inside the portfolio items? It will show all portfolio items. What you’re seeing right now is the first portfolio item. Please remove it. If you use the advance layout builder for the portfolio items, you need to add the featured image manually.

    Regards,
    Ismael

    in reply to: LayerSlider auto update and behaviour #368776

    Hi khoogteyling!

    Thank you for using Enfold.

    If you bought a license for the plugin, you need to disable the default layer slider that is included on the theme. Add this on functions.php:

    add_theme_support('deactivate_layerslider');
    

    Install the layer slider plugin. Regarding the text, make sure that Responsive Mode is enabled on the Slider Settings. Add a value on the Full-width slider settings > Responsive Under and Layers Container field. Default is 1140.

    Best regards,
    Ismael

    in reply to: Slider not working and Theme Updates not working #368775

    Hi!

    The latest version is 3.0.4. Please download the latest version from your themeforest account then update the theme via FTP. Please refer to this link for more info: http://kriesi.at/documentation/enfold/updating-your-theme-files/

    Best regards,
    Ismael

Viewing 30 posts - 52,921 through 52,950 (of 67,510 total)