Viewing 30 results - 236,611 through 236,640 (of 242,376 total)
  • Author
    Search Results
  • #164908

    In reply to: BCC in email

    Hello Andrew,

    I haven’t tested this because my install is local but this may work:
    Open to this file /enfold/framework/php/class-form-generator.php and go to the line 634:

    Add this line:
    $header .= 'Bcc: (Email address hidden if logged out) '. "\r\n";

    The final code should look like this:

    Best regards,
    Josue

    #164906

    Thanks for getting back to me.

    http://www.valuation.co.il/?theme=enfold

    The sidebar shows only recent comments from posts

    #164904

    In reply to: Adding a custom font

    #164901
    manueldes
    Participant

    Hello, I like to get the Enfold form fields (like text, email etc.) closer, with less distance (lesser line spacing).

    If I set the code bellow in CSS, the fields are closer, but the checkbox field too closer. Do you have perhaps a idea, how can I change only the distance between textfield and checkbox field? Thanks

    .ajax_form p {
    margin-top: 0px;
    margin-bottom: 9px;
    color: #fff;
    }

    #164900

    Topic: Enfold Layer Slider

    in forum Enfold
    bgolpaye
    Participant

    I just downloaded Enfold theme and noticed that the dummy file has only two sample for Layer Slider. Where can I get the resr?

    Thanks

    #164893
    Valerie
    Participant

    Hey there! I would like to make the avia arrow and bar combo that shows which page you’re on larger. I used code I found in the forum to make the arrow bigger and adjust its position. Two questions:

    1. How can I increase the bar height.
    2. Why does the arrow/bar indicator sit higher on the page on my Contact page: http://talentdev.valiantlane.com/contact and how can I fix that?

    Thanks for the great support!

    #164866

    In reply to: Cannot access Editor

    Hey Devin, for some reason the Google webmaster tools still would never verify. Anyhow, I just ended up leaving the Tracking Code in the stock Enfold location, and then just uploaded an html file via ftp to the root on my server.

    All good now, and thanks for your help!

    Best regards,
    Chris

    #164856
    artistic24459
    Participant

    Can you get the images within a easy slider to open in Lightbox?

    Also is there a way to search in the new forum just within the theme you are using? I used to be able to search just within Enfold theme for possible solution’s. It now seems there is only one search and you can narrow the search?

    Regards

    Chris

    #164852
    Valinsy
    Participant

    Hi, I’m having big problems trying to set up woo commerce using the enfold theme. I bought the template as one of the selling points was that it worked perfectly with woo commerce buy I can’t figure out how/where to start.
    I used the dummy pages but they are all empty when I click into them.
    I’ve deactivated and reactivated the plugin but then the page just spools and I get empty pages with no access to the dashboard or anything. Once or twice I’ve managed to load a page with access to the dashboard but then all I get is a spooling loop again.

    Is there a simple step by step document I can be referred to so I can follow so I can see what I’m doing wrong.?

    I can send screenshots of what is happening if necessary,
    Thanks

    #164850

    I would also REALLY appreciate more options in the table. I have made a beautiful table using font icons and images in the header, and I want to put in something at the top, and to do that the only way is to put it all in again. I hope to be able to drag and drop, or move up down arrows. I would also love to be able to pick icons and have a default editor for putting in data. Would make it powerful and really a good tool. I also see that when I put in too much text it brakes the lines. Because they then get different height. Could they all adjust if one row/column needs more space? I loooove the theme and the flexibility and I hope the table will follow the quality the rest of the theme has.

    Another thing is that I would love to see the same choices for the footers. to be able to choose their size and to have avia content builder to create content. That would really be something. What about in stead of choosing the numbers of footers in the theme options and then edit them through widgets, we could just build it like a page, which then is set as footer throughout the website, or on specific pages?

    I love this theme so much I am soon to release it through a network and buy it for every new client that I get. IT really is fantastic, and I am looking forward to see what what improvements will come with time.

    thank you

    #164844

    Hi Pat!

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

    body .container_wrap .avia-builder-el-last { margin-top: 0; }

    Cheers!
    Yigit

    #164843

    In reply to: Change post width

    Hey!

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

    .single-post .template-blog .blog-meta { display: none; }

    Regards,
    Yigit

    #164837

    In reply to: Change post width

    Hey!

    You can choose not to display sidebars in Enfold theme options under Sidebar settings http://i.imgur.com/FrZK99R.jpg

    Best regards,
    Yigit

    #164836

    Topic: Ajax Search Results

    in forum Enfold
    joe88
    Participant

    Hello. On the ajax search results, I see some entries with the title saying “Portfolio Items”. However, I changed the slug name to Cases on the Enfold settings page. Where can I change this so that the search results say “Case Items”? Also, it would be nice it this was a setting in the Admin area. Thanks.

    #164833

    Hi jasonbolger!

    Can you post the link to your website?

    Best regards,
    Yigit

    Just to let you know that every time you update the post your position in the cue will reset. I only know this as I did it once :-)

    Its best to give around 2 days max for a reply. Most of the time they get back to you a day later. For weekends I have had answers but we all need a break sometimes :-) so normally you need to wait till Monday.

    You can reset the thumbnail sizes in the function.php. I used this in my child theme:

    <?php

    function avia_change_image_size_array()
    {
    global $avia_config;
    $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’=>901 ); // 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’=>297 ); // images for portfolio entries (2,3 column)
    $avia_config[‘imgSize’][‘portfolio_small’] = array(‘width’=>260, ‘height’=>156 ); // images for portfolio 4 columns
    $avia_config[‘imgSize’][‘gallery’] = array(‘width’=>710, ‘height’=>426 ); // images for portfolio entries (2,3 column)
    $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’=>619 ); // images for fullsize pages and fullsize slider

    if(avia_get_option(‘responsive_layout’) == “responsive responsive_large”)
    {
    $avia_config[‘imgSize’][‘gallery’] = array(‘width’=>845, ‘height’=>507 ); // 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’=>727 ); // images for fullsize pages and fullsize slider
    }
    avia_backend_add_thumbnail_size($avia_config);
    }
    add_action( ‘init’, ‘avia_change_image_size_array’, 1);

    If you put this in your child theme folder it will override the theme sizes but you will need a plugin to regenerate the images after you have done this. I use Regenerate Thumbnails

    For any more help I would wait the the professionals :-)

    #164826

    Hey Nimrod!

    As carsten mentioned you can update via FTP by following the video I did on updating with Enfold: https://vimeo.com/channels/aviathemes/67209750

    Any CSS changes, as long as they are contained in the Quick CSS or custom.css should be saved but you should back them up in an external file just in case.

    If you have modified the theme files themselves, you will need to back up those changes locally and then re-apply them after you update all of the theme files.

    Cheers!
    Devin

    #164821

    Hello kultura-natura!

    In Enfold 2.2 there is a new option available when you are on a Child theme of Enfold. Under the import dummy data is the option to import data from the parent template so you can just use that once you’ve activated the child theme.

    Cheers!
    Devin

    #164820

    Hey bizzappsconsult!

    Please add following code to Quick CSS in Enfold theme options and adjust as desired

    #top .alternate_color input[type='text'] { border-color: #555555; background-color: #333333; color: #ABAAAB; }
     .alternate_color input[type='submit'] { background-color: #f7f7f7; color: #575557; border-color: #f7f7f7; }
    .alternate_color input[type='submit']:hover { background-color: #676975; color: #575557; border-color: #676975; }

    Cheers!
    Yigit

    #164807

    Thanks for the fix! Also, to which elements does the alternate content formatting apply?

    #164804
    crevlon
    Participant

    Hallo,

    ich habe gerade von 1.8.4 auf 2.2 geupdated.
    Seit dem habe ich zwei Veränderungen bemerkt die ich nicht verstehe und nicht korrigieren kann.
    1. Meine Artikel-Überschriften sind auf einmal sehr klein. (Sie hatten vorher, aufgrund eines Quick CSS Eintrags, die Größe 50)
    2. Die H3 Schrift ist auf einmal ein ganz kleines bisschen größer und die Fett markierten Wörter sind zwar noch Fett geschrieben, aber nicht mehr in meiner “Primary color” (Enfold/Styling).

    Hier alle meine Einträge des Quick CSS Feldes:

    body {
    font-size: 16px;
    }
    .entry-content .post-title {
    font-size: 50px;
    }
    h1, h2 {
    	text-transform: none !important;
    }
    #top h1 a, #top h1, #top h2 a, #top h2, #top h3 a, #top h3{
    display: block;
    font-family: "Droid Serif", Georgia, Times, serif;
    font-weight: normal;
    font-style: italic;
    white-space: normal;
    }
    
    .form-allowed-tags { display:none; }
    
    .ls-wp-container .input-text, #top .ls-wp-container input[type="text"], #top .ls-wp-container input[type="input"], #top .ls-wp-container input[type="password"], #top .ls-wp-container input[type="email"], #top .ls-wp-container input[type="number"], #top .ls-wp-container input[type="url"], #top .ls-wp-container input[type="tel"], #top .ls-wp-container input[type="search"], #top .ls-wp-container textarea, #top .ls-wp-container select {
    display: inline;
    }
    .av-special-heading h1 { font-size: 50px!important; 
    }
    .title_container {
    display: none;
    }

    Liebe Grüße,
    Crevlon

    • This topic was modified 11 years, 9 months ago by crevlon.
    #164803

    Thanks, now is ok. Cheers!

    #164802

    Hi Ismael,
    I am Italian…

    hes guys, i know its sunday, but i need help for my questions blease…

    thanks

    #164795

    hey, wich enfoldversion you have now?

    do you use a childtheme?
    if not do that on first , how look here: http://vimeo.com/channels/aviathemes/67221517

    you can do the update on the ftpway, look here:

    greets

    carsten

    • This reply was modified 11 years, 9 months ago by kc. Reason: here the link for the ftpway: http://vimeo.com/channels/aviathemes/67209750
    #164794

    Hello,

    This is probably more of a bug fix request than a feature addition one.

    I haven’t been able to get page anchors to work properly, when applied in the main menu. That is, if I try navigating to more than one page. Right now my site consists of a single page, with all the main menu options as anchor points to sections within the page: #portfolio or #contact for instance ( http://www.omarramirez.net ). That’s working fine, and getting that core functionality was my main concern, but I also intended to have a link to another section/page – a blog – and I tested it out using full urls for the main menu selections… for instance, http://www.site.com/#contact and http://www.site/blog

    Using the full urls only half works. I can get to the blog section, then back to the home page where the contact or other content area is on my homepage, but getting back, it doesn’t load all the way to selected section anchor. It tends to jump somewhere in the middle of the section just above whatever content you’re trying to reach.

    If you click on the button again, once you’re back on the homepage, it will work as intended, and scroll the page to where it should have gone in the first place, but I think this has the potential to really confuse and/or annoy visitors. So, to avoid the problem, I gave up on adding a blog section, but that didn’t really solve my issue.

    I had casually brought up this problem before, and was hoping it would be fixed in an update. That was about three or four updates ago though, and I just updated to the latest version (2.2), and tried linking to a blog section again in the same manner, and I’m still experiencing the same problem.. so again, I just opted to omit a blog section, but that’s limiting what I can do with my site.

    I’d really appreciate it if that could get fixed, and I’m guessing there are probably a lot more people who have run into the same issue, or will be running into it in the future. Kriesi, I was hoping to bring it to your attention by posting it here.

    All that being said, great theme, and keep up the good work!

    Thanks

    Omar

    #164792
    Jason
    Participant

    I just upgraded to Enfold 2.2. I deleted the old theme folder, extracted the new one. Since doing this, the site logo is displaying stretched when the site is viewed in any responsive mode under approx 1100px.

    enfold-2.2-broken

    Any advice appreciated. I assume this is a bug in the updated theme.

    Cheers,
    Jason

    #164783

    In reply to: enfold.css file

    Thank you!

    #164777
    xpoveda
    Participant

    Hi, responsive layout by default in enfold theme is 1030px and 1210px largest.

    By customer needs would want one of 960px.

    Where would have to modify it?

    Thank you!

    Xavier.

    aledarbo
    Participant

    Hi there

    I recently purchased Enfold. I purchased the template because I was really impressed with the One Page Portfolio option. However I have some problems to make a functional menu.

    I have a one page template, except two items that I need in other pages. In “main menu” I linked all “homepage sections” without problems (using links like #section1, #section2, #section3…), but If I go to other pages, this links do not work.

    How can I link all correctly?
    How can I make a menu link, linking a section, that runs also in other pages?

    Thanks

Viewing 30 results - 236,611 through 236,640 (of 242,376 total)