Forum Replies Created

Viewing 30 posts - 56,821 through 56,850 (of 67,479 total)
  • Author
    Posts
  • in reply to: Add background image on 1 page #305259

    Hi!

    Thank you for using Enfold.

    If you don’t mind, please post a screenshot of what you’re trying to do. We’ll try to help you with the css in order to accomplish it. By default, you can only add a background image if you’re using a boxed layout. You can also add Color Sections on a page using the Advance Layout Builder then apply the background on the element itself.

    Best regards,
    Ismael

    in reply to: Layer Slider hidden by menu bar on mobile #305256

    Hi Slade!

    Thank you for using Enfold.

    You can add a top margin on the layer slider:

    @media only screen and (max-width: 768px) {
    div#layer_slider_1 {
    margin-top: 30px;
    }
    }

    Regards,
    Ismael

    in reply to: Random issues with pictures and logo #305249

    Hi!

    Thank you for the update.

    Not sure why that’s happening. Anyway, I visited your facebook page but I don’t see any link for the website. All I see is the http://www.fuelsocofitness.com/ link which leads me to a blank page.

    Regards,
    Ismael

    in reply to: Logo in Mobile format Is Stretched #305248

    Hey!

    Thank you for using Enfold.

    Please use this on Quick CSS or custom.css to adjust the logo on mobile view:

    @media only screen and (max-width: 767px) {
    .responsive .logo a, .responsive .logo img {
    max-width: 100%;
    height: 27px !important;
    max-height: 27px !important;
    }
    
    .responsive .mobile_slide_out .logo {
    float: left;
    top: 30px;
    position: relative;
    }
    }

    Regards,
    Ismael

    in reply to: problem linking to WIKIMEDIA COMMONS pages #305247

    Hi Heathcliffe!

    Thank you for using the theme.

    You need to disable the lightbox for these Image elements. In order to do that, add a unique selector to the element. 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 the image element then add a unique css selector on “Custom Css Class” field. Add the “noLightbox” css class to disable the lightbox.

    Best regards,
    Ismael

    in reply to: Missing Icons #305207

    Hey!

    It looks like you’re not using the latest version of Enfold. 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

    in reply to: How to show a widget in a category of posts? #305205

    Hi!

    FYI, a lot of premium themes doesn’t have this widget conditional option by default. Anyway, if you still have questions, let us know. Note that you can also show the widgets on a category page using the Sidebar Blog widget area but it will also be applied on the actual blog page and single post pages. :)

    Cheers!
    Ismael

    in reply to: Images in Categories and Read More #305203

    Hey AriadPart!

    Thank you for using Enfold.

    Please go to Enfold > Blog Layout then select the same Blog Style that you applied on the Blog Posts element inside the home page in order to show the featured image on category or archive pages. Refer to this link on how to add the read more link on category pages: https://kriesi.at/support/topic/archive-pages-2#post-267111

    Best regards,
    Ismael

    in reply to: How to modify the blog page layout #305202

    Hi!

    Thank you for the update.

    You can actually use the advance layout builder on posts but there are some minor issue on featured images etc. Add this on functions.php:

    add_theme_support('add_avia_builder_post_type_option');
    add_filter('avf_builder_boxes','enable_boxes_on_posts');
    function enable_boxes_on_posts($boxes) {
    	$boxes[] = array( 'title' =>__('Avia Layout Builder','avia_framework' ), 'id'=>'avia_builder', 'page'=>array('page','post', 'portfolio'), 'context'=>'normal', 'expandable'=>true );
    	$boxes[] = array( 'title' =>__('Layout','avia_framework' ), 'id'=>'layout', 'page'=>array('page','post', 'portfolio'), 'context'=>'side', 'priority'=>'low');
    	$boxes[] = array( 'title' =>__('Additional Portfolio Settings','avia_framework' ), 'id'=>'preview', 'page'=>array('page','post','portfolio'), 'context'=>'normal', 'priority'=>'high' );
    	
    	return $boxes;
    }

    Best regards,
    Ismael

    in reply to: responsive on mobile #305200

    Hi!

    Thank you for the update.

    Please use this on Quick CSS or custom.css:

    @media only screen and (max-width: 767px) {
    .responsive #top #header {
    position: relative;
    width: auto;
    height: 200px;
    top: 80px;
    }
    
    .header_color {
    background: transparent url(https://cashfactory.ie/wp-content/uploads/2013/04/header34.png) top left no-repeat scroll;
    background-size: 100%;
    }
    
    .header_color .header_bg {
    background: transparent url(https://cashfactory.ie/wp-content/uploads/2013/04/header34.png) top left no-repeat scroll;
    background-size: 100%;
    }
    }

    You set the logo as header background, that’s why it is not responsive. Please hire a freelance developer to fix any other issues that may come up with your customization. Thank you for your understanding.

    Best regards,
    Ismael

    in reply to: Video Background with Vimeo #305197

    Hi alterednative!

    Thank you for visiting the support forum.

    On what element are you trying to add the video? Please give us a link to the actual website so that we can inspect it.

    Cheers!
    Ismael

    Hi!

    Thank you for the info.

    Did you transfer all contents including the plugins? Please watch this video on how to properly use the wp migrate db plugin: https://code.tutsplus.com/tutorials/migrating-your-wordpress-database-wp-migrate-db-production-to-development–wp-32684

    Cheers!
    Ismael

    in reply to: Create a twitter "masonry" of followed accounts? #305195

    Hi UncleGroOve!

    Thank you for visiting the support forum.

    Unfortunately, this particular request is beyond the scope of support and is not a theme related issue. You might need to find a plugin which I doubt if available or hire a freelance developer to add the feature for you. Please visit Envato Studio or Werkpress for further customization. You can also vote or post the feature on our Feature Requests page.

    If you have any further questions about the theme, we are more than happy to provide you with assistance on these inquiries. Thank you for your understanding.

    Cheers!
    Ismael

    in reply to: Streched and boxed layout #305194

    Hi 5ikor!

    Thank you for using the theme.

    You can set the width of the home page with this on Quick CSS or custom.css:

    @media only screen and (min-width: 768px) {
    .home {
    width: 100% !important;
    }
    }

    Regards,
    Ismael

    in reply to: Image sizes? #305193

    Hi codersAcumium!

    Thank you for visiting Kriesi’s support forum.

    You can edit functions.php, find this code code on line 118:

    $avia_config['selectableImgSize'] = array(
    	'square' 				=> __('Square','avia_framework'),
    	'featured'  			=> __('Featured Thin','avia_framework'),
    	'featured_large'  		=> __('Featured Large','avia_framework'),
    	'portfolio' 			=> __('Portfolio','avia_framework'),
    	'gallery' 				=> __('Gallery','avia_framework'),
    	'entry_with_sidebar' 	=> __('Entry with Sidebar','avia_framework'),
    	'entry_without_sidebar'	=> __('Entry without Sidebar','avia_framework'),
    	'extra_large' 			=> __('Fullscreen Sections/Sliders','avia_framework'),
    	
    );

    Add additional image options. You also need to register additional thumbnails if you want more options.

    Best regards,
    Ismael

    Hey Philip!

    Thank you for using Enfold.

    Use this on Quick CSS or custom.css:

    .woocommerce-checkout .woocommerce h2 {
    clear: both;
    margin: 10px 0;
    }

    Cheers!
    Ismael

    in reply to: Partner/Logo Element arrows #305191

    Hi!

    Just set the position property to absolute. Use this:

    #top .avia-smallarrow-slider .avia-slideshow-arrows {
        width: 100%;
        top: 70px;
        position: absolute;
    }

    Cheers!
    Ismael

    in reply to: 404 error in portfolio pages #305190

    Hey!

    Thank you for the info.

    Please post the login details here. Set it as a private reply. We would like to check it.

    Cheers!
    Ismael

    in reply to: How to locate #305189

    Hey!

    Thank you for the update.

    Please give us a link to the actual page with the social icons. We would like to check it.

    Best regards,
    Ismael

    in reply to: unable to add content to site (photos, text) #305188

    Hey!

    Thank you for the info and we’re very sorry that you’re having this issue.

    On what browser and OS are you testing the gallery? As you can see I managed to add two images, one that already exist and another new image. Anyway, I did test a new gallery and the images are not added. Please refer to this link for a possible fix: https://kriesi.at/support/topic/gallery-edit-issues/#post-277654

    Best regards,
    Ismael

    in reply to: Small simple slider with text only ? #305187

    Hi marienoisette!

    Thank you for using Enfold.

    Right now, it’s not possible to apply a background color on the slides but you can upload solid background images then apply the text on the caption. You can also vote or post the feature on our Feature Requests page.

    Cheers!
    Ismael

    in reply to: Slideshow height #305186

    Hey Richard!

    Thank you for using the theme.

    Add this on Quick CSS or custom.css to display the actual width of the images:

    .avia-slideshow li img {
    width: auto;
    }

    Best regards,
    Ismael

    in reply to: Jquery error loading script #305183

    Hi!

    Thank you for using Enfold.

    I’m sorry but you gave us a link to the jquery file not the error. What is the actual error that you’re having? Please try to deactivate all plugins then test the accordion slider again on another browser or computer.

    Cheers!
    Ismael

    in reply to: Masonry Gallery Title Overlay #305182

    Hey!

    Thank you for the info.

    You can set the caption to always display on Element Title and Caption settings. Choose “Always Display”. This will also put the caption below the image.

    Best regards,
    Ismael

    in reply to: Partner Logo Element – Overlay #305180

    Hey blankonblank!

    Thank you for using Enfold.

    Unfortunately, there’s no option for that but you can apply a top margin in order to push the tooltip downwards. Use this on Quick CSS or custom.css:

    .avia-tooltip {
    margin-top: 200px;
    }

    Regards,
    Ismael

    in reply to: Incorrect page titles #305179

    Hi brian7454!

    Thank you for using Enfold.

    1.) You can remove the avia_which_archive function’s default title with this on functions.php:

    add_filter('avf_title_args', 'fix_single_post_title', 10, 2);
    function fix_single_post_title($args,$id)
    {
    		if ( is_category() )
    		{
    			$output = __('','avia_framework')." ".single_cat_title('',false);
    		}
    		elseif (is_day())
    		{
    			$output = __('','avia_framework')." ".get_the_time( __('F jS, Y','avia_framework') );
    		}
    		elseif (is_month())
    		{
    			$output = __('','avia_framework')." ".get_the_time( __('F, Y','avia_framework') );
    		}
    		elseif (is_year())
    		{
    			$output = __('','avia_framework')." ".get_the_time( __('Y','avia_framework') );
    		}
    
    		if(!empty($output)) $args['title'] = $output;
    
    return 

    2.) Add this one in order to input the actual name of the post instead the word “Blog” for single post view:

    add_filter('avf_title_args', 'fix_blog_page_title', 10, 1);
    function fix_blog_page_title($args) {
    if(is_singular() && !is_page()) {
    $args['title'] = get_the_title();
    $args['link'] = get_permalink();
    }
    return $args;
    }

    3.) No, unfortunately, it doesn’t have a login page but you can browse the wordpress plugin library for such plugins. Honestly, we haven’t tested this kind of plugins yet but I’m sure they won’t interfere with the theme.

    Cheers!
    Ismael

    in reply to: Enfold Portrait iPad – Menu covers the logo #305178

    Hey ccarberg!

    Thank you for visiting Kriesi’s support forum.

    Please go to Enfold > Header Layout > Mobile Menu panel. Look for the Header Mobile Menu activation setting, select the second option to activate the mobile menu earlier.

    Best regards,
    Ismael

    in reply to: Coloring the Search icon in the menu #305176

    Hi ccarberg!

    Thank you for using the theme.

    Please use this on Quick CSS or custom.css:

    @media only screen and (max-width: 989px) {
    .responsive .av_mobile_menu_tablet .main_menu {
    display: block !important;
    position: absolute;
    }
    
    .responsive #header .main_menu ul {
    display: block;
    }
    
    .av-main-nav > li {
    	display: none;
    }
    
    .av-main-nav > #menu-item-search {
    	display: block;
    	right: 50px;
    }
    }

    Regards,
    Ismael

    in reply to: Animations Breaking in Firefox #305175

    Hey travtex!

    Thank you for using Enfold.

    We need to see the actual website. Please post the url here. Make sure you’re running Enfold 2.9.1 plus WordPress 3.9.2.

    Best regards,
    Ismael

    in reply to: Left and Right Sidebar #305174

    Hey Wils1234!

    Thank you for using Enfold.

    There is no available option to create two sidebars but you can use the advance layout builder to accomplish this. Add a 1/5, 3/5 and another 1/5 column layout respectively. Add the content on 3/5 column and one Widget Area element on each of the 1/5 column layouts.

    Cheers!
    Ismael

Viewing 30 posts - 56,821 through 56,850 (of 67,479 total)