Viewing 30 results - 140,941 through 140,970 (of 142,644 total)
  • Author
    Search Results
  • #130662

    In reply to: Translate to PT-BR

    Please use Codestyling: http://wordpress.org/plugins/codestyling-localization/ to translate the missing text strings. Install the plugin, go to Tools > Localization and select “Themes”. Then search for “Enfold” in the list and click on “Add new language”. Then select PT_BR from the list and click the “create po-file” button. Click on “Rescan” to fetch all text strings. Then click on “Edit” and translate the required strings from the “avia_framework” textdomain. At least click the “create mo file” button next to the “Textdomain” selection dropdown (top left corner).

    Thank you Nick. Enfold made it easy! Will the update you mention help with the fonts issue?

    best,

    –Lee

    FLSouthPaw
    Participant

    I have successfully hidden the enfold cart doohickey while not logged in with the below css…

    but if you happen to have an item in your cart via cookie and you are not logged in hit the my account page the cart icon shows up still…

    but only on that link… no other pages…

    .cart_dropdown.visible_cart {

    display: none;

    }

    #top.logged-in .cart_dropdown.visible_cart {

    right: -2px;

    display: block;

    }

    Kriesi rules….

    TY

    #130449

    In reply to: Font Icon in Header

    Hi,

    You can do this.

    . I tried using Custom Links and entered this as a label, but i think it will also work on regular labels for menu items: (if you dont see a house icon in code below but gibberish, you need to create a page that uses the icon you want in some other way (icon box for example) then view the source and copy it from there, just make sure you are keeping the classes i am using in css i posted or it will not work. It would be best if you copied the code i pasted here.

    In Appearance > Menu paste this code as the Navigation Label

    <div class="menu-home avia-font-entypo-fontello">⌂</div>

    and add this css code to your /css/custom.css or to quick css

    .menu-home.avia-font-entypo-fontello {
    color: blue;
    font-size: 2.4em;
    top: -5px;
    position: relative;
    opacity: 100 !important;
    display: block !important;
    }

    and if you want a change of color on hover you can add this block of css

    .menu-home.avia-font-entypo-fontello:hover {
    color: green;
    }

    Mine turned out like this http://i.imgur.com/4jR3WCk.png

    Thanks,

    Nick

    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.

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