Viewing 30 results - 214,621 through 214,650 (of 244,466 total)
  • Author
    Search Results
  • #311152

    In reply to: Resizing IFRAMES

    Hi autogrupo!

    Thank you for using Enfold.

    The iframe is not working, it says “Operation Time Out”. It does resize though. I’ll ask the rest of the support team to take a look.

    Cheers!
    Ismael

    #311150

    Hi!

    In case you have any questions, regarding the theme, please take some time to review all of the resources in the Theme Documentation as a lot of basic stuff like theme installation, css snippets etc are already available in there with better explanation and awesomeness. Watch some of our Video Tutorials to learn more about the different aspect of the theme. You can also search the forums for queries that has been answered before that might be related to your problem.

    If you find that you still have questions after taking the time on our documentations, don’t hesitate to let us know and we will be happy to assist you. If you have any requests or you feel like giving us a warm hug? You can definitely post it on our Feature Requests page. :)
    Thanks!

    Regards,
    Ismael

    #311149

    In reply to: Copyright in french

    Hey Edna!

    Thank you for using Enfold.

    Please switch to the French language on the wp dashboard then go to Enfold (FR) > Footer Layout > Copyright field. You can change the copyright text there.

    Regards,
    Ismael

    #311147

    Hi Igor!

    Thank you for using Enfold.

    It will only affect the theme’s form / input fields. What is the display property that you have to use for the IDX plugin fields?

    Cheers!
    Ismael

    #311145

    In reply to: change output masonry

    Hi czar!

    Thank you for using Enfold.

    Looks like you managed to hide the images on the masonry element. Is that correct?

    Cheers!
    Ismael

    Hi adman1!

    Thank you for using Enfold.

    Looks like you’re using the default wp gallery. Please try to recreate the gallery using the theme’s Gallery shortcode. You can find it inside the Media Elements using the shortcode wand.

    Best regards,
    Ismael

    #311141

    Hi nwiinc!

    Thank you for using Enfold.

    Please edit the Blog Posts element on the blog then set the Blog Style to Single Author, Big Preview Pic.

    Regards,
    Ismael

    Hey!

    Thank you for using Enfold.

    I tested the login credentials thrice but it’s incorrect. Please check.

    Best regards,
    Ismael

    #311134

    Hi pelyon!

    Thank you for using Enfold.

    First, we would like to see the actual website. We would like to know how you set up the theme initially. We will give you some css snippets after. A screenshot on how you want the theme to look like will help.

    Cheers!
    Ismael

    #311132
    watchamacolin
    Participant

    Hello,

    I am trying to add my own customer jquery and have tried it in numerous locations in the theme files and nothing has seemed to initiate them

    What file and where could I place custom jquery to where it will be initiated and run on load?

    I am trying to add this

    $(document).ready(function() {
    $(“#nav1”).click(function() {
    $(‘html,body’).animate({
    scrollTop: $(“#why”).offset().top},’slow’);
    });

    $(“#nav2”).click(function() {
    $(‘html,body’).animate({
    scrollTop: $(“#why2”).offset().top},’slow’);
    });

    $(“#nav3”).click(function() {

    $(‘html,body’).animate({
    scrollTop: $(“#product”).offset().top},’slow’);
    });

    $(“#nav4”).click(function() {
    $(‘html,body’).animate({
    scrollTop: $(“#how”).offset().top},’slow’);
    });

    $(“#nav5”).click(function() {
    $(‘html,body’).animate({
    scrollTop: $(“#contact”).offset().top},’slow’);
    });
    });

    #311125

    Topic: Color Section Element

    in forum Enfold
    Jagrav
    Participant

    Hi,

    The color section element is full width. I would like it to be part of the natural flow like the elements above and below it. Can you help me with this?

    Shows color section element full width.

    I’ve added an id and class in the color sections options by adding your code to the enfold-child/functions.php page:

    `/* Adds Custom CSS id and class input fields to element options */
    add_theme_support(‘avia_template_builder_custom_css’);

    thanks

    #311102

    Hello,
    Three questions please – (perhaps one should actually be in a different post?)
    1. I want to do the same as webbee – modify the child functions.php file to change image sizes. Do I understand correctly from this thread that this is not possible right now? I def. prefer not to add plugins unless absolutely necessary, but it sounds like the parent functions.php had to be modified. Yes or no? If so, how do I do this and will I lose the change with an update?

    2. You said above “You have to put your code in the child theme in an action hook:” If I post the code (I’ve copied in below) into the child functions.php file – exactly what needs to be posted with it to make it override the parent?

    I changed to Enfold from another theme (loving it so far) and know that I need to regenerate the thumbnails, but I would like to set and test sizes. I want to test with how big images can be without slowing down site and see how various options look before making a decision about the final layout. Last question may belong in another post, but I can’t find search results that address it and this is what I hope to do with the child theme…

    3. Since my site features video and websites, I want proportions to be (at least roughly) 16:9 for all thumbs/images associated with the video category, post format and specific tags. (It would be cool to have 4:3 or even square for the website items, but I can live without that if needed.) The site is small/new enough that I can delete and re-upload images if necessary, because speed on mobile vs great looking video is the decision I am facing when I select optimal sizes.

    I’m starting with 1920X1080 images (or could use 1280X720) as large screen shots for videos, but can anyone advise/explain what – if anything – will happen to the responsive/mobile version if I start changing the proportion here?
    I did find the section (copied below) in the parent functions file that I assume I would need to modify:

    /*
     * Register additional image thumbnail sizes
     * Those thumbnails are generated on image upload!
     *
     * If the size of an array was changed after an image was uploaded you either need to re-upload the image
     * or use the thumbnail regeneration plugin: http://wordpress.org/extend/plugins/regenerate-thumbnails/
     */
    
    $avia_config['imgSize']['widget']  = array('width'=>36,  'height'=>36);      // small preview pics eg sidebar news
    $avia_config['imgSize']['square']  = array('width'=>180, 'height'=>180);   // small image for blogs
    $avia_config['imgSize']['featured']  = array('width'=>1500, 'height'=>430 );  // images for fullsize pages and fullsize slider
    $avia_config['imgSize']['featured_large'] = array('width'=>1500, 'height'=>630 );   // images for fullsize pages and fullsize slider
    $avia_config['imgSize']['extra_large']  = array('width'=>1500, 'height'=>1500 , 'crop' => false);   // images for fullscrren slider
    $avia_config['imgSize']['portfolio'] = array('width'=>495, 'height'=>400 );   // images for portfolio entries (2,3 column)
    $avia_config['imgSize']['portfolio_small']  = array('width'=>260, 'height'=>185 );    // images for portfolio 4 columns
    $avia_config['imgSize']['gallery']  = array('width'=>710, 'height'=>575 );    // images for portfolio entries (2,3 column)
    $avia_config['imgSize']['magazine']   = array('width'=>710, 'height'=>375 );    // images for magazines
    $avia_config['imgSize']['masonry']    = array('width'=>705, 'height'=>705 , 'crop' => false);   // images for fullscreen masonry
    $avia_config['imgSize']['entry_with_sidebar']  = array('width'=>710, 'height'=>270);   // big images for blog and page entries
    $avia_config['imgSize']['entry_without_sidebar']= array('width'=>1030, 'height'=>360 );   // images for fullsize pages and fullsize slider
    
    //overwrite blog and fullwidth image on extra large layouts
    if(avia_get_option('responsive_layout') == "responsive responsive_large")
    {
         $avia_config['imgSize']['gallery']  = array('width'=>845, 'height'=>684 );  // images for portfolio entries (2,3 column)
         $avia_config['imgSize']['entry_with_sidebar']   = array('width'=>845, 'height'=>321);   // big images for blog and page entries
         $avia_config['imgSize']['entry_without_sidebar']= array('width'=>1210, 'height'=>423 );   // images for fullsize pages and fullsize slider
    }
    
    

    Is there an easier/simpler way to approach this? Anyone else doing mostly video who has a solution?
    Thanks so much for any assistance with this.

    • This reply was modified 11 years, 7 months ago by siestajoye.
    #311094
    peterkay
    Participant

    I love the Enfold theme and your support!

    I ran this Google PageSpeed Insights report on my site (www.uhpa.org) and on both the Mobile and Desktop suggestions I’m seeing “Eliminate render-blocking JavaScript and CSS in above-the-fold content” as a key issue I’d like to see addressed if possible.

    Are there any easy ways to fix this, or will this be part of a future improvement?

    #311093

    Folder names under wp-content/themes:
    enfold
    theme 1357
    twentyfourteen
    twentythirteen
    twentytwelve
    index.php

    Version of enfold > style.css:
    Version: 2.9.1

    This is weird, on WordPress under appearance/themes enfold shows 2.6.3.

    I’m open to any suggestions at this point.

    Thanks

    #311087

    In reply to: Website Slowdown

    Hey Benjamin!

    Thank you for choosing Enfold!
    Please try using a minifying plugin such as this one – https://wordpress.org/plugins/bwp-minify/ and try de-activating all unnecessary plugins

    Best regards,

    Yigit

    I did download the given plugin above and installed it but my website is not running correctly. I do not know how to explain but I can only see the menu of my website on the left side of it in blue. http://rediant.com/

    #311074
    igorvavrik
    Participant

    Hi!
    I’m doing an real estate website and there fields misalignment on page http://www.itz-sold.com/buyers/
    Customer support from IDX broker found that conflict is in Enfold CSS and asked me to make following change

    The issue that you are experiencing with the Quick Search widget is related to the styles that are part of your theme.
    In file http://www.itz-sold.com/wp-content/themes/enfold/css/base.css?ver=2 on line #209 you have to remove display: block; or adjust the CSS, so that it does not affect IDX content.

    So if I do that change, will it break Enfold CSS?

    • This topic was modified 11 years, 7 months ago by igorvavrik.
    #311072

    In reply to: Website Slowdown

    Hi!

    Please add following code to Quick CSS in Enfold theme options > General Styling and adjust as needed

    .phone-info {
    font-size: 18px;
    }

    Cheers!
    Yigit

    #311071

    In reply to: Website Slowdown

    I will do it. Thanks.

    I have another question:

    In the Enfold “Theme Options”>”Header Layout”>”Extra elements”>”Phone Number or small info text”

    I add the phone number but I want to change the size of it and I do not find how to do it. Can you help?

    Best,

    Benjamin.

    #311069

    In reply to: anchor

    Hi victor!

    Please add your element inside a Color section element with an unique ID – http://kriesi.at/documentation/enfold/add-anchors-to-your-page-for-single-page-navigation/

    Cheers!
    Yigit

    #311068

    In reply to: Website Slowdown

    Hey Benjamin!

    Thank you for choosing Enfold!
    Please try using a minifying plugin such as this one – https://wordpress.org/plugins/bwp-minify/ and try de-activating all unnecessary plugins

    Best regards,
    Yigit

    #311065

    In reply to: Submenu Spacing

    Hi XTGlobal!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    div#header_main_alternate .container { width: 100%; margin: 0; }
    @media only screen and (min-width: 1140px) {
    .av-main-nav > li > a { padding: 0 51.6px; }}
    @media only screen and (max-width: 1139px) and (min-width: 1010px) {
    .av-main-nav > li > a { padding: 0 51.6px; }}
    @media only screen and (max-width: 990px) {
    .av-main-nav > li > a { padding: 0 22.6px; }}

    Regards,
    Yigit

    #311062

    Ok… after much testing.

    I have create new Image-random shortcode and all is working fine. (now need to work out how to modify to accept a text input of 3 comma separated image ID’s and randomly display 1 only. – similar to https://wordpress.org/plugins/wordpress-random-image/ )
    Outside realm of support, but any tips or hints would be great.)

    However I have found that adding the section.php shortcode into the child theme shortcode folder it give an instant white screen of death.

    I have added all others and are fine.. only the section.php is causing this and it has now been tested on 2 separate enfold + child theme installed.

    Any ideas would be great.

    Thanks again for great support and follow up.

    Cheers

    Paul

    #311061

    Hi @Devin

    No, this is on my desktop. Not looked at mobile devices yet.
    However, this is not a standard “Enfold” post. It is a Time.ly Events post.

    I have posted login details on this Support # https://kriesi.at/support/topic/facebook-social-shareing-not-picking-up-the-correct-image/
    as I am also having issues around Facebook sharing if you wanted to take a look ?

    Many thanks,
    H

    #311054
    pelyon
    Participant

    Hi,
    I’d like to have rounded corners on my enfold site.
    1.on all my pages
    2. the header and
    3. menu bar
    4. tabs for tabbed content

    I read the other support posts on the topic and gleaned the following rules so far. Can you provide with other rules to help? Thanks so much.

    -Pelyon

    div#wrap_all {
    border-radius: 25px;
    -moz-border-radius: 25px;
    -webkit-border-radius: 25px;
    overflow: hidden !important;
    margin: 0 0 20px 0; /* you can remove this if you want */
    }
    #header, .header_bg {
    border-radius: 25px;
    overflow: hidden;

    }

    #311049

    Topic: Website Slowdown

    in forum Enfold
    designred
    Participant

    Good Afternoon,

    I bought the Enfold theme and I am more than happy of it. However, I realized after few weeks that my new website is slow.

    I already called my hosting provider and I am using only 25% of my CPU power.

    They told me that it could be due to some Plugins or script mistakes. They told me to contact my theme provider because you master you product.

    Best,

    Benjamin Laville.

    #311044
    This reply has been marked as private.
    #311036

    Hey!

    Please open up wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/portfolio.php and replace

    
    $output .= "<h3 class='grid-entry-title entry-title' $markup><a href='{$title_link}' $target title='".esc_attr(strip_tags($title))."'>".$title."</a></h3>";
    

    with

    
    $target = !empty($custom_link) ? "target='_blank'" : '';
    $output .= "<h3 class='grid-entry-title entry-title' $markup><a href='{$title_link}' $target title='".esc_attr(strip_tags($title))."'>".$title."</a></h3>";
    

    and:

    
    $link_markup 	= apply_filters('avf_portfolio_custom_image_container', array("a href='{$link}' title='".esc_attr(strip_tags($title))."' ",'a'), $entry);
    

    with

    
    $target = !empty($custom_link) ? "target='_blank'" : '';
    $link_markup 	= apply_filters('avf_portfolio_custom_image_container', array("a href='{$link}'  {$target} title='".esc_attr(strip_tags($title))."' ",'a'), $entry);
    

    Regards,
    Peter

    #311008

    In reply to: Portfolio Ajax Preview

    Hey!

    I’m not quite sure what you mean but this is the demo for what the ajax portfolio can do: http://kriesi.at/themes/enfold/portfolio/portfolio-ajax/

    It has not changed since its release :)

    Regards,
    Devin

    #311005
    palmalorenzo
    Participant

    Dear Support,

    i’m developing a site with the Enfold Theme.
    There are several problems with the responsive version with I.E (all the version) and Chrome, and i don’t know how yo fix this.. The theme is properly updated.

    Sometimes image on the home disappears, or menu is hidden and the logo become bigger (often remaining the only item on the scene).
    (In few words, the home image and the menu aren’t showed properly in several browsers)

    Thanks for your attention
    Palma

    #311004

    If you can post what you have to a gist or pastebin we can take a look. If you are familiar with php it should be pretty straightforward but I also have an example on the docs theme here you can refer to: https://github.com/DevinVinson/enfold-child-docs

Viewing 30 results - 214,621 through 214,650 (of 244,466 total)