Viewing 30 results - 213,721 through 213,750 (of 244,480 total)
  • Author
    Search Results
  • #315937

    Hi!

    You are currently using a very old version of the theme. Please update Enfold to the latest version 2.9.2 via FTP – http://vimeo.com/67209750

    Cheers!
    Yigit

    #315936

    Hey!

    Please add this on Quick CSS or custom.css:

    .main_color {
    background: #d6e1dc url(https://www.ivantirtiaux.com/wp-content/uploads/2014/08/background-IvanTirtiaux-texte-11.jpg) top center no-repeat fixed;
    background-size: 100%;
    }

    Your News page have a sidebar so transparent header won’t work unless you place a color section or slider at the top of the page. Set the Blog Style to the very last option on Enfold > Blog Layout panel. Edit the actual blog page then use the Advance Layout Builder to insert the Blog Posts element. You can now add a Color Section or Slider on top of the posts then set the header as transparent. Change the menu color only for blog with this:

    .blog .header_color .main_menu ul:first-child > li > a {
    color: white;
    }

    Regards,
    Ismael

    #315932
    ahirschel
    Participant

    Hi,
    I’m trying to do some work for a client and the Avia layout builder for the site seems to be caught in some sort of “loading” loop.
    Thoughts? I had recently tried to update the theme through the ftp but the updates, don’t seem to be taking. (I viewed the Vimeo video several times to be sure I had done it correctly) I was able to update the theme several months ago with no problem.
    -Amy Hirschel

    #315928
    KarlNewark
    Participant

    I am in the middle of switching a site over to Enfold, and I’m having some trouble getting significant image sizes as can be seen in the examples below

    Private link 1

    I would like the featured images on the page above to hava a consistent sizing as they are on the Enfold demo.

    Private link 2

    On the magazine elements the images are not a consistent size, and the images to do not fit properly into the accordion.

    #315925

    Hi!

    Set the Activate Header transparency to transparent header then add a Color Section at the very top of the page. Apply the background image on the Color Section. In case you have any questions, 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

    #315920

    In reply to: Like buttons

    Hey vunderman!

    Thank you for your kind words but unfortunately you are going to need to find a plugin for such feature or hire a freelance developer to customise the theme for you.
    You can also request such feature here – https://kriesi.at/support/enfold-feature-requests/
    If it gets voted a lot, it would be added in upcoming Enfold versions

    Cheers!
    Yigit

    fetetyper
    Participant

    Hi,

    I am setting up a new version of my companies web-page in Enfold on a staging server. I was helped by one of your support specialists to make the header/menu smaller but when I scroll (using the menu to scroll down the page) there is a “padding” or “space” that shows the bottom of the image (color section) I have put between the color-section items. I would of course love for the page to show the colorsection with the header/text only.

    This is the css I use for the header:

    `#header_main
    {background-color: #e6e3db !important;
    padding-bottom: 0px !important;
    margin-bottom: 0px !important;
    height: 88px !important;
    border: none !important;
    }
    .avia-menu-fx
    {display:none !important;}

    .html_header_top.html_header_topbar_active.html_header_sticky.html_large #top #main {
    padding-top: 100px;
    }

    #top .grid-entry {
    border: 3px solid transparent;
    }

    How may I remove this padding?

    Thanks:)

    Elise

    #315918

    Hi sundialstudios!

    Thank you for using Enfold.

    Please add this on functions.php:

    function add_stuff_to_header_func() {
    	?>
    	<div id="header-right">PUT ANY CONTENT HERE</div>
    	<?php
    }
    add_action('ava_main_header', 'add_stuff_to_header_func')

    Use the #header-right selector on Quick CSS to stylize the new container.

    Best regards,
    Ismael

    #315915

    Hey paolomusic!

    Please go to Enfold theme options > Header Layout > Transparency options and change menu item colors

    Cheers!
    Yigit

    #315914

    Topic: Like buttons

    in forum Enfold
    vunderman
    Participant

    Hello guys! Thank you for this perfect theme. Could you help me with a little problem please. I’m trying to add like buttons on a blog for post pages instead of share buttons. I’ve downloaded 4 snippets for each button but have a problem with inserting it in a single.php. I’ve tried to add it with a widget on a post page but with no success. Could you tell me what is the best way to it qithout using plugins? Should i use a child theme?

    #315902

    Italian translation for 2.9.2

    http://www.giuseppebeghelli.it/portfolio/demo/Enfold-v2.9.2-it_IT.zip

    Best regards,
    Giuseppe Beghelli

    #315901

    Hi ojasray!

    Please update Enfold to the latest version 2.9.2 as well – http://vimeo.com/67209750

    Regards,
    Yigit

    #315896
    melonmelon
    Participant

    I really love ENFOLD! You´re doing a great job.
    I have a new project in the pipeline where i want (allmost) all images displayed in sepia automatically.
    I found some CSS code to do this and added it in QuickCSS. I also added exceptions for the logo and the slider because I dont want them to be affected by the effect. So generally it works quite good on Firefox but not on Safari 6 and below, nor on Iphone and Android.
    I have no Idea how to fix this Problem. Any Idea how to get this reliable for all browsers??

    and here is the code I used:

    /* automatic SEPIA for all images*/
    img {
        filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'old-timey\'><feColorMatrix type=\'matrix\' values=\'0.14 0.45 0.05 0 0 0.12 0.39 0.04 0 0 0.08 0.28 0.03 0 0 0 0 0 1 0\'/></filter></svg>#old-timey");
        -webkit-filter: sepia(1);
        -webkit-filter: sepia(100%);
        -moz-filter: sepia(100%);
        -ms-filter: sepia(100%);
        -o-filter: sepia(100%);
        filter: sepia(100%);
    }
    img:hover {
        filter: none;
        -webkit-filter: sepia(0);
        -moz-filter: sepia(0);
        -ms-filter: sepia(0);
        -o-filter: sepia(0);
        filter: sepia(0);
    }
    
    /* NO SEPIA for Logo */
    .logo img {
     filter: none;
        -webkit-filter: sepia(0);
        -moz-filter: sepia(0);
        -ms-filter: sepia(0);
        -o-filter: sepia(0);
        filter: sepia(0);
    }
    
    /* NO SEPIA for Slider */
    .ls-slide .ls-bg {
     filter: none;
        -webkit-filter: sepia(0);
        -moz-filter: sepia(0);
        -ms-filter: sepia(0);
        -o-filter: sepia(0);
        filter: sepia(0);
    }
    

    P.S.: I´m not a CSS-Pro

    • This topic was modified 11 years, 6 months ago by melonmelon.
    #315895

    after the installation of Enfold theme you find under Enfold ==> import export ==> import dummy data the you can install default demos like on the demo Homepage
    after that, you select under theme options your price page as your default startpage

    #315892

    In reply to: Portfolio Ajax Preview

    Hi Yigit,
    thanks for your reply. Sorry, that doesn’t work too.
    Once again: ENFOLD 2.6.1 limited the ajax preview above of the grid to the items of a chosen category (please have a look at the address on #311917). The demo version / download version (2.9.2) has lost this great feature.
    It’s really mysterious.
    Best regards, Bernd

    #315891

    Hi vin8tan!

    Can you please elaborate? You do not need to buy a separate license for LayerSlider. Updated version of LayerSlider was added with Enfold update, that is all.

    Regards,
    Yigit

    #315887

    for those who have the same problem like me, I could solve the problem
    If you make changes on the small text in Extra Elements it loses default english homepage, so you must select under Enfold (EN) Theme Options show all options + there you have to make your translated english homepage as a default homepage

    • This reply was modified 11 years, 6 months ago by 3DStudio.
    #315882
    codecreative
    Participant

    Hi Enfold

    Just doing some child theme development. With some files you have to copy the parent file to the child folder and then do your changes. It in effect over writes the parent file.

    But with other files such as functions.php you just add your custom functions to a new blank file and it appends them to the parents functions which is very useful.

    My question is regarding header.php I need to add 1 line, a function call. Do I download the parent theme header.php locally, make the modificaiton then re upload it to my child theme folder? Does it replace or append the parent file?

    #315866

    In reply to: Menu broken with dummy

    Hi elmanisero!

    That is because your menu is unordered. Please go to Appearance > Menus and order it as needed as shown in screenshot – http://i.imgur.com/5RV16vv.png
    and check “Enfold main menu” under Menu Settings

    Best regards,
    Yigit

    #315865

    Topic: Menu broken with dummy

    in forum Enfold
    elmanisero
    Participant

    I installed several times in local enfold 3.9.2 with wp 4.0 and imported the dummy but the menu always appears like this

    Thanks in advance

    #315858

    Hi jalmz!

    Can you please firstly update Enfold to the latest version 2.9.2 – http://vimeo.com/67209750

    Cheers!
    Yigit

    #315857

    Hi!

    Website you posted uses Enfold 2.9.1. Have you installed 2.9.2 on a test site? If so, do you mind creating a temporary admin login for it so we can look into it?

    Cheers!
    Yigit

    #315853

    Hi kdm!

    Can you post the link to your website please? Please make sure that you are using the latest version of WordPress 4.0 and Enfold 2.9.2 – http://vimeo.com/67209750

    Regards,
    Yigit

    #315850

    Hey!

    You are welcome, glad we could help :)
    For your information, you can take a look at Enfold documentation here – http://kriesi.at/documentation/enfold/
    And if there are features that you wish Enfold had, you can request them and vote the requested ones here – https://kriesi.at/support/enfold-feature-requests/
    For any other questions or issues, feel free to post them here on the forum and we will gladly try to help you :)

    Regards,
    Yigit

    #315847

    Hi!

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

    @media only screen and (max-width: 1140px) {
    .av-main-nav > li > a { padding: 0 7px; }}

    Best regards,
    Yigit

    #315844
    kdm
    Participant

    Dear all,

    till today, we are not able, to change or add something to our enfold based webside,
    couse the Aviva Layout-Builder is crashed.

    It seems like its loding all the time, buth nothin happend.

    u can see picture here: http://kd-merchandising.de/Ablage/page_load.png

    Do someone have an idea how we can handle?

    best Regards and many thanks in advance…

    Oliver

    #315832

    Hi!

    So far, with over a hundread posts about compatibility with WordPress 4.0 and Enfold we have only one minor css issue that has been verified.

    If you are not using Enfold version 2.9.2, which is the only theme version compatible with WordPress 4.0, please update and then try things without any plugins active so its only WordPress and Enfold.

    Regards,
    Devin

    #315827
    jfmozo
    Participant

    Hi, i’m using ENFOLD theme and i need to add an email verification for my woocommerce plugin.

    I’ve been searching and i find the plugin: “WooCommerce Email Verification” but it doesn’t work too well with ENFOLD theme.

    Can you give me a solution?

    Thanks!

    #315816
    slewman
    Participant

    Hi There,

    Enjoying the overall experience as a relative newbie to wordpress themes.

    On your demo page there are a number page setups i’d like to use as templates, for example the “pricing page”. I can see the .psd files in the theme download, but im unsure how to use / access them in my live site.

    Cheers
    Daz
    WordPress 3.9.2 running Enfold theme.
    http://www.poshelp.com.au

    #315814

    Hey!

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

    .avia-image-container {
    padding-top: 15px;
    }

    Unfortunately i do not have a Windows computer within reach.

    Cheers!
    Yigit

Viewing 30 results - 213,721 through 213,750 (of 244,480 total)