Forum Replies Created

Viewing 30 posts - 62,191 through 62,220 (of 66,745 total)
  • Author
    Posts
  • in reply to: Flash Integration for a Client Site #193675

    Hey blueunderground!

    Can you please post the flash code here? Did you switch to text mode when you insert the code? Embedded flash objects or movie should work properly on the theme but like you said they are not supported on iOS devices and that would be a problem.

    Regards,
    Ismael

    in reply to: Home Slider Issues #193670

    Hey!

    Go to LayerSlider WP > Slide > Global Settings > Layers Container. Specify a specific width for it.

    Cheers!
    Ismael

    in reply to: Set width for #193396

    Hey!

    It would have affected the post layout and other elements header because the selector “.entry-content-header” are being use on a lot of elements within the theme if I am not mistaken. Yes,that is exactly what it says “In portfolio-preview-content, change the width for entry-content header”. :)

    Best regards,
    Ismael

    in reply to: how to reverse "next portfolio item" from left to right #193395

    Hi dulei07!

    It should be in the correct order but if you want to reverse it, you can edit functions-enfold.php then find this code on line 341:

     $entries['prev'] = get_previous_post($same_category);
            $entries['next'] = get_next_post($same_category);

    Replace it with:

    $entries['prev'] = get_next_post($same_category);
            $entries['next'] = get_previous_post($same_category);

    Best regards,
    Ismael

    in reply to: Problems – Elements, Versions, Tables #193394

    Hey ovanes84!

    Can you please give us a link to the website? Try to deactivate all plugins and increase the php memory limit, see if it fixes the issue: http://dailyblogging.org/wordpress/increase-wordpress-memory-limit/

    Best regards,
    Ismael

    in reply to: Non-clickable blog preview #193386

    Hey!

    I hope it work. :)

    Regards,
    Ismael

    Hi!

    Do you have the latest version of Enfold? Have you recently upgrade the WordPress installation? Please post the login details here as a private reply. Deactivate all plugins if possible, we don’t want to mess with your plugin settings. Also check if disabling the plugins fix the issue.

    Regards,
    Ismael

    in reply to: Image Size Error at Partner-Grid in Internet Explorer #193382

    Hey!

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

    #top .avia-logo-element-container img {
    width: auto;
    }
    
    #top .avia-smallarrow-slider .slide-image, #top .avia-logo-element-container img {
    width: auto;
    }

    Cheers!
    Ismael

    Hey!

    Please use this instead to remove the featured image:

    .single .small-preview {
    display: none !important;
    }

    The website seems to load properly on mobile devices including iPad when I check it here: http://responsinator.com/?url=http%3A%2F%2Fwww.interiorinnovations.com.au%2Ftest%2F

    Cheers!
    Ismael

    in reply to: Set width for #193378

    Hi agarkitekter!

    Can you please give us a link to the website? We need to inspect it to give you a proper css solution. You can try this:

    .portfolio-preview-content .entry-content-header {
    width: 200px;
    }

    Cheers!
    Ismael

    in reply to: Ajax portfolio #193376

    Hi!

    Sorry but it is not possible yet. You can request it here: https://kriesi.at/support/topic/enfold-feature-requests

    Cheers!
    Ismael

    in reply to: Logo is not working properly #193372

    Hey disruptivevision!

    Are you using the Small Fixed Header? You can edit js > avia.js, find this code:

    var st = win.scrollTop(), newH = 0;
    
                    if(st < el_height/2)
                    {
                        newH = el_height - st;
                        header.removeClass('header-scrolled');
                    }
                    else
                    {
                        newH = el_height/2;
                        header.addClass('header-scrolled');
                    }

    Replace it with:

    var st = win.scrollTop(), newH = 0;
    
                    if(st < el_height/1.5)
                    {
                        newH = el_height - st;
                        header.removeClass('header-scrolled');
                    }
                    else
                    {
                        newH = el_height/1.5;
                        header.addClass('header-scrolled');
                    }

    You can decrease the 1.5 value if you want a larger header when you scroll down the page. Please remove browser cache then reload the page a few times. You can also test it on another browser.

    Regards,
    Ismael

    in reply to: Remove Feature Image From Portfolio Page #193371

    Hi vmp68!

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

    .single-portfolio .page-thumb {
    display: none;
    }

    Regards,
    Ismael

    in reply to: changing the font of the titles on the accordian… #193330

    Hey earthyblue!

    You can change the color using this on Quick CSS or custom.css:

    .main_color .toggler {
    color: red;
    }

    Regards,
    Ismael

    in reply to: Featured Images Not Showing On Pages #193328

    Hey codemode!

    If you want the featured image to show on pages, you need to switch to the Default Editor.

    Cheers!
    Ismael

    in reply to: style not load in catalan pages – wpml #193322

    Hi xpoveda!

    Where did you get the Mahalia font? I’ve search google but I didn’t find anything like that.

    Cheers!
    Ismael

    in reply to: Layout Slider won't display full width #193312

    Hey Premanjali2!

    Please post the login details here as a private reply. Also, check the Global Settings > Layers Container. Set it to 1140.

    Cheers!
    Ismael

    in reply to: Diable the Enfold Lightbox (urgent) #193309

    Hey!

    Please do Devin’s instruction. Edit js > avia.js, find this code:

    //activates the prettyphoto lightbox
            $(container).avia_activate_lightbox({callback:'avia_lightbox_callback'});

    Replace it with:

    //activates the prettyphoto lightbox
           //$(container).avia_activate_lightbox({callback:'avia_lightbox_callback'});

    This should disable the lightbox entirely. Make sure to remove browser cache then reload the page or check the site on another browser. You can find the avia_hover_effect on the same file.

    Cheers!
    Ismael

    in reply to: Issues using Enfold #193305

    Hey dkiessling!

    1.) Please increase the php memory limit: http://dailyblogging.org/wordpress/increase-wordpress-memory-limit/

    2.) I hope the first solution fix the issue. Do you have any other plugins installed?

    3.) Yes, it is possible. You can use the Quick CSS field to apply certain styling changes on the theme.

    4.) Please switch to Advance Layout Builder then go to Media Elements. You can select different kinds of sliders like LayerSlider and Fullwidth Easy Slider.

    Cheers!
    Ismael

    in reply to: BB Edit – Register and Login pages #193301

    Hi MichaelT1!

    You can create a page using this shortcodes: http://codex.bbpress.org/shortcodes/

    Create a register page using [bbp-register] and a login page using [bbp-login]. Create a menu item on Appearance > Menu.

    Best regards,
    Ismael

    in reply to: Facebook Box Cropped / Hide some Posting Details #193266

    Hi!

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

    #top .fullsize .template-blog .post-title {
    text-align: left;
    }

    Best regards,
    Ismael

    in reply to: Secondary Menu to include a Search Bar? #193263

    Hey!

    My bad! Please use this instead:

    #header_meta #searchform {
    float: right;
    top: -20px;
    position: relative;
    }
    
    #header_meta .sub_menu {
    float: right;
    margin-right: 250px;
    margin-top: -10px;
    }

    Remove browser cache then reload the page.

    Regards,
    Ismael

    in reply to: square images in blog grid #193262

    Hey!

    You need to regenerate the thumbnails. Use this plugin: http://wordpress.org/plugins/regenerate-thumbnails/

    Regards,
    Ismael

    in reply to: Non-clickable blog preview #193259

    Hi MarieAn!

    I’m sorry but I don’t think that this is possible without major customization. It is only possible to hide them. You can also use the Advance Layout Builder to replicate the look of the Blog Grid layout. Insert a 4 1/4 Columns element then add an Image element and a Text Block for each column. The Image element will work as the featured image, you can set the link manually to the designated post if it is available and set it to “No Link” for other post which is not. The Text Block below can work as the Title and you can add a little excerpt or summary below.

    Regards,
    Ismael

    in reply to: Probleme with plugin Premium SEO Pack #193258

    Hey apparence!

    Can you please give us a link to the website? Do you have any other plugins installed?

    Cheers!
    Ismael

    in reply to: form builder #193257

    Hi sdeceulaer!

    I’m not sure about the database sync but you can use the Contact Form 7 or the Gravity Forms plugin.

    Best regards,
    Ismael

    in reply to: Button Error #192781

    Hi kaMai!

    Please post the login details here as a private reply. We would like to test the button shortcode. Download the theme again on your themeforest account then override the files via FTP. Watch this video : http://vimeo.com/channels/aviathemes/64927356

    Best regards,
    Ismael

    in reply to: woocommerce order-view #192779

    Hi chrisholemar!

    Please give us a link to the actual website. We need to inspect it live.

    Best regards,
    Ismael

    in reply to: Icon Boxes in Content Slider #192778

    Hi kaMai!

    That is doable with the help of this plugin: http://wordpress.org/plugins/insert-php/

    Create a page then insert the Content Slider. Add then edit a slide. Go to the Visual Editor. Add this code:

    [insert_php]echo do_shortcode("[av_icon_box icon='' position='left' title='IconBox Title' link='' linktarget='no']
    Click here to add your own text
    [/av_icon_box]");[/insert_php]

    The plugin requires you to insert the shortcode inside [insert_php] and [/insert_php]. We use the do_shortcode function to render the Icon Box element properly. Please try it. :)

    Best regards,
    Ismael

    in reply to: Adding Logo on Coming Soon page? #192772

    Hey bogosavljev!

    You can insert an Image element on the page. Add your logo. I think you can add the percentage value on the “Progress Bars Title”.

    Best regards,
    Ismael

Viewing 30 posts - 62,191 through 62,220 (of 66,745 total)