Viewing 30 results - 140,941 through 140,970 (of 142,640 total)
  • Author
    Search Results
  • Hi,

    Nice looking site. Crisp with soothing colors and very readable fonts. However there is an update for Enfold available that you should install after downloading it from themeforest.net. It will overwrite every theme file and should be administered via ftp after you make a backup.

    Thanks,

    Nick

    #127451

    Hi,

    Please turn off your cache plugin while you are developing or you will never see any changes you are making until the old cache expires.

    Your home page is also your Services page on the menu?

    this css controls the background of the site. But I modified it by adding .home … When you view the source of every page of your site in a browser, you can see there is a <body> tag that has a whole bunch of class names in side like <body class=”home page page-id-10 page-template-default boxed open_sans open_sans ” . You can use those classes to create css specific to individual pages or groups of pages. so if you want to target home page you view source in chrome of firefox, look at body tag, find the class that is unique to that page, page-id-10 is another good choice, and then you replace .home with .page-id-10. Make a duplicate and replace .home with some other page on your site. And add this to Quick CSS located in Enfold > (Theme Options) > Layout Styling … text box at bottom of page or to /css/custom.css

    html.html_boxed .home {
    background: #333 url(https://bea.avmhost.com/wp-content/themes/enfold/images/background-images/gradient-top-dark.png) top center repeat scroll;
    }

    html .home {
    background-color: #333;
    }

    I would remove the background you added in the Layouts, and leave it empty if you want to have different background on each page, do it through css .

    Thanks,

    Nick

    Hey Ismael!! Thanks for the quick reply but it didn’t work :(. I tried

    .fixed_header.social_header #main {

    padding-top: 110px;

    }

    and

    .fixed_header.social_header #main {

    padding-top: 0px;

    }

    but no response :(

    #26504

    Topic: Fixed Cart

    in forum Enfold
    kermit73
    Participant

    Hi!

    Is it possible to have a “fixed” cart (e.g. in the Menu or Topmenu) or do I have to use a Plugin for that instead?

    If a plugin is necessary – how can I switch of the Enfold cart?

    Thanks a lot!

    Hi,

    Open functions.php, look for these codes

    wp_register_script( 'avia-compat', $template_url.'/js/avia-compat.js', array('jquery'), 1, false ); //needs to be loaded at the top to prevent bugs
    wp_register_script( 'avia-default', $template_url.'/js/avia.js', array('jquery'), 1, true );
    wp_register_script( 'avia-shortcodes', $template_url.'/js/shortcodes.js', array('jquery'), 1, true );
    wp_register_script( 'avia-prettyPhoto', $template_url.'/js/prettyPhoto/js/jquery.prettyPhoto.js', 'jquery', "3.1.5", true);
    wp_register_script( 'avia-html5-video', $template_url.'/js/mediaelement/mediaelement-and-player.min.js', 'jquery', "1", true);

    and these codes

    wp_register_style( 'avia-style' ,  $child_theme_url."/style.css", array(), '1', 'screen' ); //register default style.css file. only include in childthemes. has no purpose in main theme
    wp_register_style( 'avia-grid' , $template_url."/css/grid.css", array(), '1', 'screen' );
    wp_register_style( 'avia-base' , $template_url."/css/base.css", array(), '1', 'screen' );
    wp_register_style( 'avia-layout', $template_url."/css/layout.css", array(), '1', 'screen' );
    wp_register_style( 'avia-scs', $template_url."/css/shortcodes.css", array(), '1', 'screen' );
    wp_register_style( 'avia-custom', $template_url."/css/custom.css", array(), '1', 'screen' );
    wp_register_style( 'avia-prettyP', $template_url."/js/prettyPhoto/css/prettyPhoto.css", array(), '1', 'screen' );
    wp_register_style( 'avia-media' , $template_url."/js/mediaelement/skin-1/mediaelementplayer.css", array(), '1', 'screen' );
    wp_register_style( 'jquery-ui-datepicker', apply_filters('avf_datepicker_skin', 'https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.18/themes/smoothness/jquery-ui.css'), array(), '1', 'screen');

    Remove the version number, for example:

    wp_register_style( 'avia-grid' , $template_url."/css/grid.css", array(), '1', 'screen' );

    should be replace with

    wp_register_style( 'avia-grid' , $template_url."/css/grid.css", array(), $ver, 'screen' );

    $ver will default to false. Refer to this link: http://codex.wordpress.org/Function_Reference/wp_register_style & http://codex.wordpress.org/Function_Reference/wp_register_script

    Regards,

    Ismael

    #130528

    Hi,

    We only said that Kriesi is working on it and we can’t be sure when. For the meantime, you can refer to this link.

    https://kriesi.at/support/topic/youtube-icon

    Regards,

    Ismael

    #129392

    Alright i got it. I edit the Quick CSS Box with:

    #header {

    background-color:rgba(255, 0, 0, 1);

    }

    The Header goes red but not like here: http://www.css3.info/preview/rgba/

    It is to light. What do i have to do to get the color like that?

    Hi!

    Please activate the debug mode ( instructions can be found here https://kriesi.at/support/topic/is-it-possible-to-customizea-theme-on-one-blog-and-then-transfer-it-to-another#post-124550 ) and post the entire page content (including shortcodes). Wrap it into backtick ( ` ) characters.

    Best regards,

    Peter

    #130391

    Hi,

    Looks like the issue has been fixed here: https://kriesi.at/support/topic/javascript-broken-on-post-edit-page

    Regards,

    Ismael

    #130350

    Officially Enfold just supports the icons which are bundled with the theme. We’ll add a “font icon generator” to the theme framework but we have no ETA for this update yet. Devin wrote a short tutorial: https://kriesi.at/support/topic/youtube-icon#post-117381 which shows you how to include custom social icons manually.

    #130083

    Hi,

    You can request to add the function here:

    https://kriesi.at/support/topic/enfold-feature-requests

    Regards,

    Ismael

    #129930

    In reply to: Postslider bug

    1) Personally I can’t reproduce the issue and the j,g, p, etc. letters display just fine for me. However try to insert following code into the quick css field

    .avia-content-slider .slide-entry-title {
    font-size: 14px;
    line-height: 1.4em;
    }

    and change the font size and/or line height value – this should fix the issue.

    2) You can activate the excerpt field with the “Screen Options” in the top right corner of the post/page editor page

    #130370

    Hey!

    Please try following css code – insert it into the quick css field

    #lang_sel {
    display: inline;
    float: right;
    margin-top: -7px;
    }

    Regards,

    Peter

    #130560

    In reply to: Holding Page Error

    Hi,

    Please add this on your custom.css or Quick CSS

    #top.avia-blank #main {
    display: block;
    }

    Regards,

    Ismael

    #130618

    Hi,

    1.) Re-install the woocommerce plugin, please use the latest version.

    2.) Adding your own social icons is a bit complicated right now. Please refer to this link: https://kriesi.at/support/topic/youtube-icon

    Regards,

    Ismael

    Hi,

    You can decrease the top padding of the main div.

    .fixed_header.social_header #main {
    padding-top: 110px;
    }

    Regards,

    Ismael

    #129886

    In reply to: Header Colours Control

    You can try:

    #top #header .avia_mega_div .sub-menu {
    background: #999;
    }
    #top #header .avia_mega_div .sub-menu .sub-menu li a{
    background: transparent !important; /*remove the background of the sub menu links*/
    }

    #128086

    Hi, I have looked through the forums and still have not found the right solution for this problem. The solutions describe above only works when I add more top level items to my menu. (i.e if the menu goes the full width if the header) Right now my menu overlaps the logo just slightly on ipad horizontal view. I want to force the menu to appear as the slide in mobile menu sooner then it appears now. What is the best way to do this.

    Thank you

    #114748

    Hi guys, in the next update could you make it so the images in sections can align flush to bottom? I had a support request on this which worked for one site and I tried the same on another site and it’s continuing to add padding under images in mobile devices.

    When you select “no padding” in the section settings it automatically adds about 30px below images. When you view on mobile devices it adds about 20 px to top and bottom of section even if no padding is selected. This is a major issue with theme as it’s the basis of how I need my clients sites to work with images so it’s a deal breaker at this point since it’s not working.

    Thanks much,

    Chris Omlor

    I’m sorry for the trouble but is there a way that you can show me an example of the code I need to input into the desktop section of my custom.css in order to achieve the aforementioned? You told me I need to add the margin: 0, padding: 0 declarations to the needed selectors but what are the names of those selectors I need to call out. Like for the advanced layer slider for instance or even the avia widget or product grid. What would I have to call them in the custom css for the margin:0 to be applied?

    Is it like this? :

    .ls-layer {

    margin:0;

    padding:0;

    width: auto;

    }

    and if so what do I substitute “.ls-layer” in order to apply the declarations for the advanced layer slider?

    #26488

    Topic: Slides Disappeared

    in forum Enfold
    tmunz
    Participant

    While working on one of my slides within Layer Slider, I hit Save. During the save process it hung and I got a ‘stop script’ error. Upon revisiting my slider backend, all of my other slides were gone. Is there a way to recover them, or a way to prevent this from happening again?

    #129391

    I just want to know how the code is called for the headersection to fill in the RGBA Colors

    #header_backround {

    color:rgba(255, 0, 0, 0.25);

    }

    ??

    #26482
    filianluthien
    Participant

    Hi,

    Is there a way to enable the “Avia Layout Builder” for bbPress topics and/or posts? (when creating/editing as admin)

    I mean, all drag & drop functionality as when creating pages. Right now I can only use shortcodes or create a page then copy/paste the code to the forum topic or post.

    Thanks.

    #130448

    Glad Ismael could help :)

    Let us know if you have any other questions or issues.

    Regards,

    Devin

    #130551

    Hi Thomas,

    The way that Quform adds in the code for the various forms unfortunately doesn’t work well with the theme. Instead of pulling in an outside javascript file through wordpress it embeds the code directly where the form is which leads to errors wihen used with the advanced layout editor.

    I’ll tag Peter and Kriesi on the topic and maybe they can reach out to the author of the plugin to see about better integration or adding theme support for it like we did with Gravity Forms.

    Regards,

    Devin

    #130447

    Hi Ismael – Thank you. Adding another color section after it did the trick.

    #130504

    Hi corly,

    If you import it again on top of what you have it will reset your Enfold options and duplicate the menu items. It would be easier to just re-make the ajax portfolio since its really simple to do so.

    The Ajax Portfolio Preview Settings allow you to set a preview image or a group of images to be used specifically in the Ajax portfolio view. This layout isn’t as flexible so that the previews will load predictably for the theme.

    These are just under the visual editor on each portfolio item. You add a single image and some data for each portfolio item and then when you have a portfolio element you have a new option of making it ajax enabled.

    Regards,

    Devin

    #26470
    Oli
    Participant

    Three weeks ago, I opened a topic “How adding social buttons in the header ?” and you said it will be possible in the next version (1.8), but I didn’t see any possibility of adding social buttons in the header in the new version 1.8.

    Is it still a goal and, if yes, when will it be released ?

    Thanks.

    #126776

    Alright, I think the best thing to do here is to start completely from scratch: the page itself looks terrible now. Tables are not corresponding/aligning correctly in a horizontal manner and first box in the final row is consistently too large compared to the rest – about 3 times too large.

    So, as of today, these are the 3 dilemmas:

    1. Tables are not aligning correctly (the descriptive and default columns are not equalized)

    2. Tables are not displaying properly on iPhones – only default column shows

    3. (New) Tables are not displaying properly on iPads – content is cut off after a certain number of characters.

    In this thread, https://kriesi.at/support/topic/description-column-in-tables-not-aligning-properly-with-adjoining-columns the alignment issue in number 1. was sorted, but now the tables have gone wonky again, which is why I suggest starting over, because there’s no point

    in creating css to resolve the iPhones and iPads issues if the tables are displaying incorrectly in the first place.

    Tables can be seen on these two pages:

    http://siptrunkplus.com/

    http://siptrunkplus.com/marketdemandsforcallrecording/

    #26459

    Topic: Slideshow Problem

    in forum Enfold
    col323webdesign
    Participant

    Hey,

    Please take a look at my slideshow: http://www.col323webdesign.com/projekt61/

    Why is it acting so wired on the transitions? and why are the play and stop buttons displayed twice?

    Thanks,

    Mika

Viewing 30 results - 140,941 through 140,970 (of 142,640 total)