Forum Replies Created

Viewing 30 posts - 60,691 through 60,720 (of 67,534 total)
  • Author
    Posts
  • in reply to: Specify Logo Image Dimensions #231146

    Hey deyowulf!

    Can you please post a screenshot of what you’re trying to do? You can select the logo size before you click the “Insert image as logo” or use css to constrain the width and height.

    Best regards,
    Ismael

    in reply to: Shortcodes Ultimate #231145

    Hey Ahnell!

    We haven’t tested the plugin and we don’t really support third party plugins. You can contact the plugin author.

    Best regards,
    Ismael

    in reply to: Full-Width Masonary Gallery Bug – Cannot Fix #230985

    Hi!

    Please try to increase the wordpress php memory limit. Refer to this link: http://dailyblogging.org/wordpress/increase-wordpress-memory-limit/

    Best regards,
    Ismael

    in reply to: Table alignment issue #230984

    Hi!

    Have you tried adding a <br> tag before the prices? Change the heading text using this on Quick CSS:

    .avia-heading-row {
    color: white;
    }

    Best regards,
    Ismael

    in reply to: Table inside accordion out of alignment #230983

    Hi!

    Please add this on your custom.css or Quick CSS:

    td {
    vertical-align: top;
    }

    Regards,
    Ismael

    in reply to: Enfold Showcase #230982

    Hey!


    @zedduo
    : Nice websites! Thank you for using the theme. :)


    @jahson78
    : You have an old version of the theme. You might want to download the latest version and update it via FTP.

    Regards,
    Ismael

    Hey rodgerreintjes!

    You have an old version of the theme. Please download the latest of version of Enfold on your themeforest account. Update the theme via FTP. Watch this video by Devin: http://vimeo.com/channels/aviathemes/67209750

    Regards,
    Ismael

    in reply to: Portfolio help #230980

    Hi kbrimberry!

    Use the portfolio grid element then look for the “Link Handling” option. Select the AJAX portfolio. You can add the gallery below the portfolio items editor, look for “Ajax Portfolio Preview Settings” > “Add previews images” then select “Gallery” on “Display Preview Images” option. For further customization, please visit Werkpress.

    Regards,
    Ismael

    in reply to: Ajax Portfolio automatically using a resized image #230927

    Hey!

    Glad you figured it out. :)

    Regards,
    Ismael

    in reply to: LayerSlider in IE 9 #230926

    Hi!

    Can you please post a screenshot of the issue? It looks ok when I resized the browser. Let me ask Devin and Josue to check this.

    Best regards,
    Ismael

    in reply to: Category Link on Posts and Feeds #230925

    Hi!

    Glad it worked. :)

    Cheers!
    Ismael

    in reply to: issue with layer slider #230924

    Hi!

    Are you using a theme before with a layer slider plugin? Please deactivate the plugin if you have installed the standalone version.

    Cheers!
    Ismael

    in reply to: Spaces in portfolio page #230509

    Hi hel4eg!

    You can add this on custom.css or Quick CSS:

    .grid-content {
    min-height: 60px;
    }

    Cheers!
    Ismael

    in reply to: WPML vs ENFOLD bug #230507

    Hi!

    Please give us a link to the website. We would like to check. Deactivate all plugins except for the WPML plugin. If you have access to .htaccess file, add this:

    php_value upload_max_filesize 20M
    php_value post_max_size 20M
    php_value max_execution_time 200
    php_value max_input_time 200

    Best regards,
    Ismael

    in reply to: Transparency / Opacity of background (header, main, footer) #230506

    Hey Moritz!

    Use this for the header:

    .nonfixed_header .header_bg {
    opacity: .9;
    filter: alpha(opacity=1);
    }

    Main content:

    .main_color {
    background-color: rgba(255,255,255,.9);
    }
    
    #main, .html_stretched #wrap_all {
    background-color: transparent;
    }

    Footer:

    .footer_color {
    background-color: rgba(255,255,255,.9);
    }

    Best regards,
    Ismael

    in reply to: Background-color in wpml language switcher #230504

    Hey Jonas!

    You can use this:

    .header_color .sub_menu ul li {
    background-color: #f5f5f5;
    }

    Cheers!
    Ismael

    in reply to: issue with layer slider #230503

    Hey totofunk!

    Please try to switch to a default theme then switch back to Enfold.

    Regards,
    Ismael

    in reply to: Mobile view not working #230502

    Hey!

    I’ll report this to Kriesi. He’ll check it on his iPhone. I think there are tricks where you can scroll to top on iPhones. That is why the go to top button is hidden on mobile view. Refer to this link: http://www.imore.com/beginner-tip-scrolling-101

    Anyway, Yigit’s suggestion should show the button on iphone screens.

    Best regards,
    Ismael

    in reply to: Use avia.js in child theme #230498

    Hey 12Switch!

    Create a js folder then place a avia.js file inside. Add this on the child theme’s functions.php:

    function wp_change_aviajs() {
       wp_dequeue_script( 'avia-default' );
       wp_enqueue_script( 'avia-default-child', get_stylesheet_directory_uri().'/js/avia.js', array('jquery'), 2, true );
    }
    add_action( 'wp_print_scripts', 'wp_change_aviajs', 100 );
    

    Cheers!
    Ismael

    in reply to: Category Link on Posts and Feeds #230497

    Hi!

    Edit includes > loop-index.php, find this code on line 151:

    if(!in_array($taxonomy, $excluded_taxonomies))
                                {
                                    $cats .= get_the_term_list($the_id, $taxonomy, '', ', ','').' ';
                                }

    Replace it with:

    if(!in_array($taxonomy, $excluded_taxonomies))
                                {
                                    $cats .= strip_tags(get_the_term_list($the_id, $taxonomy, '', ', ','')).' ';
                                }

    Cheers!
    Ismael

    in reply to: LayerSlider in IE 9 #230494

    Hi awsystems!

    You have a lot of plugins installed and there might be a conflict between them. Please deactivate all plugins then check it again.

    Best regards,
    Ismael

    Hey AsadIC!

    If you want to change the style of a specific element on a certain page or post, you can use the Google Chrome Inspect Element. Look for the unique css body class.

    On the example above, the page’s unique selector is .page-id-2251. We can use it to change the element within that page. In your case, you should be looking for post id. It looks something like this, “postid-1”. Use that to remove the featured image just for specific posts.

    .postid-1 big-preview {
    display: none;
    }

    Best regards,
    Ismael

    Hi v2ginteractive!

    Please give us a link to the website. A screenshot of the issue will help.

    Regards,
    Ismael

    in reply to: Fullscreen Slider Caption Overlay #230480

    Hi!

    Add this on Quick CSS or custom.css:

    .caption_framed .slideshow_caption .avia-caption-title {
    background: rgba(0, 0, 0, .8);
    width: 100%;
    }
    
    .avia-fullscreen-slider .caption_container {
    height: 100%;
    width: 100%;
    }

    Use this for the button:

    body div .avia-slideshow-button {
    font-size: 20px;
    }

    Regards,
    Ismael

    in reply to: Layerslider flickers on ipad #230479

    Hey!

    Please wait for Devin and Josue to respond. They’ll check this on their iOS device.

    Cheers!
    Ismael

    in reply to: Icons in Icon Box are Chinese Characters #230478

    Hi!

    Have you tried using a different icon? Or recreate the whole iconbox entirely.

    Regards,
    Ismael

    in reply to: Ajax Portfolio automatically using a resized image #230476

    Hi smonfils!

    What is the option you’re using for “Display Preview Images” on the portfolio item? You can find the thumbnail sizes on functions.php:

    $avia_config['imgSize']['gallery'] 		 		= array('width'=>710, 'height'=>575 );						// images for portfolio entries (2,3 column)
    

    You can change the width and height then regenerate the thumbnails using this plugin: http://wordpress.org/plugins/regenerate-thumbnails/

    Regards,
    Ismael

    Hi knave2!

    You can add this on functions.php:

    add_filter('avia_post_grid_query', 'avf_custom_post_grid_query');
    
    function avf_custom_post_grid_query ( $query ) {
    $query['orderby'] = 'date';
    $query['order'] = 'DESC';
    return $query;
    }

    Refer to this link for more sorting parameters: http://codex.wordpress.org/Class_Reference/WP_Query#Order_.26_Orderby_Parameters

    Best regards,
    Ismael

    in reply to: Show more text on click #230468

    Hi Ahnell!

    You can add something like this on icon list content:

    <a class="show-content" href="#">Click here</a>
    <span class="hide-content">List Content goes here</span>
    

    Then edit js > avia.js, find this code:

    (function($)
    {
        "use strict";
    
        $(document).ready(function()
        {

    Below, add this code:

    $( ".show-content" ).click(function() {
    	  $( ".hide-content" ).show( "fast", function() {
    		// Animation complete.
    	  });
    	});

    Add this on Quick CSS:

    .hide-content {
    	display: none;
    }

    When you click on the show-content link, it will show the content.

    Best regards,
    Ismael

    in reply to: Disable Lightbox on Single Portfolio Entry #230461

    Hey Mary!

    Did you add the portfolio image using the “Add Media” button? Please edit the Text Block then switch to text editor, you should see something like this:

    <a href="http://www.msfwebdesign.com/msfnew/wp-content/uploads/2014/02/gem.jpg" rel="lightbox"><img class="aligncenter size-gallery wp-image-3472" alt="gem market research" src="http://www.msfwebdesign.com/msfnew/wp-content/uploads/2014/02/gem-710x575.jpg" width="710" height="575"></a>
    

    You can replace the href attribute with the actual website url then add the target=”_blank” attribute to open the image on a new window. Something like this:

    <a href="ACTUAL WEBSITE URL HERE" target="_blank" rel="lightbox"><img class="aligncenter size-gallery wp-image-3472" alt="gem market research" src="http://www.msfwebdesign.com/msfnew/wp-content/uploads/2014/02/gem-710x575.jpg" width="710" height="575"></a>
    

    Regards,
    Ismael

Viewing 30 posts - 60,691 through 60,720 (of 67,534 total)