Viewing 30 results - 142,381 through 142,410 (of 142,596 total)
  • Author
    Search Results
  • #114607

    To add Advanced Layout Editor To Posts or Custom Post Types please watch video here (easy instructions) – https://vimeo.com/64996057


    To be able to switch between the advanced layout editor and the standard editor without having content set with the advanced editor show up as blank in the standard editor see code here -> https://kriesi.at/support/topic/cant-edit-or-change-a-text-block-in-avia-layout-builder#post-110199

    #23024
    itechtimesNet
    Participant

    Hi,

    I have a new fresh install of WordPress and Enfold + dummy data. No plugins.

    I have the following error displayed on the top of the page. Also, the “Home” menu link simply redirecrt to http://kriesi.at/themes/enfold/

    I have the same issue after multiple re-install. Even without dummy data. Also, despite I do not install dummy data I have all the menu links and “Home” link redirect to http://kriesi.at/themes/enfold/

    Warning: session_start() [function.session-start]: open(/tmp/sess_c0077b9e2074290fbb7230a6891b13cb, O_RDWR) failed: Permission denied (13) in /home/balusite/public_html/enfold/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/portfolio.php on line 27

    Warning: session_start() [function.session-start]: Cannot send session cookie – headers already sent by (output started at /home/balusite/public_html/enfold/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/portfolio.php:27) in /home/balusite/public_html/enfold/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/portfolio.php on line 27

    Warning: session_start() [function.session-start]: Cannot send session cache limiter – headers already sent (output started at /home/balusite/public_html/enfold/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/portfolio.php:27) in /home/balusite/public_html/enfold/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/portfolio.php on line 27

    #118257

    That works :)

    Thanks for the quick response.

    I really love the theme, guys. Great job.

    john

    PS :

    can I correct the version number (currently 1.3.1) in style.css to 1.4 without consequence ?

    I know it’s a detail, but it irritates me that versioning is incorrect.

    #118256

    Hi!

    You need to use following shortcode:

    [av_layerslider id="1"]

    Best regards,

    Peter

    #23019
    lemedia
    Participant

    Hi guys,

    [layerslider id=”1″] stopped functioning in the default editor after upgrade from Enfold 1.3.1 to 1.4

    in the Themes interface version still shows 1.3.1 as that is still in style.css

    Any ideas how i can correct that ?

    Thanks.

    John

    #117556

    Andy,

    You are the first person to ever ask me that question (whether to start a new thread), most just ask 3 pages of unrelated questions over 5 months. Thanks for asking! Nah you can continue here since its relevant to the overall theme of our exchange.

    I felt that in your case best thing to do was to get you hooked on the google tool since then you can customize your own look. read somewhere carefully about position:absolute and position:relative and how they relate to each other when one div is relative inside an absolute div and vice versa and how that affects margin and padding. Also try to move your logo for example to the bottom right corner of screen without messing anything else up using right:20px .left, down, top, and the position: tag… Goodstuff.

    It’s not difficult to edit it. Now sitting down in front of an empty screen and writing it from nothing is difficult.

    So ask away.

    Thanks,

    Nick

    #118185

    Thanks, the ‘custom.css’ file doesn’t show up in the ‘styles’ list from within ‘edit themes’… why is this? I can access it via FTP but this is a chore obviously. Can you advise on how I ca add it or make it appear?

    Secondly, this code you provided it to make the UI elements a darker colour and appear on top of any content, including a full-width slider, right? The reason it didn’t appear there is that it was underneath the slider? Just confirming.

    Is there any way to deactivate the UI elements altogether if wished?

    It occurs on the homepage, when Fullwidth Easy Slider, normal settings with multiple sliders

    These are the settings for the colour section that I added, that is having the problem. The background in the coloured section disappears an and turns white, and then reappears when the flexislider transitions to the next slide.

    Color Section:

    Section Colors: main content

    Custom Background Image: yes

    Background Image Position: repeat

    Background Repeat: Repeat

    Background Attachment: Fixed

    Section Padding: Default

    Section Top Shadow: Display Shadow

    Thanks a lot Ismael

    Hi,

    The selector use for the very top header is

    #header_meta {
    border-top: none;
    box-shadow: inset 0px 0px 1px 0px rgba(0, 0, 0, 0.2);
    z-index: 400;
    min-height: 30px;
    background: white;
    }

    If you want to remove it you can use this

    #header_meta {
    display: none;
    }

    Regards,

    Ismael

    #116576

    Hi,

    What you are showing on the site can be changed in file /includes/loop-index.php , with the blog image on line 101 the way you have the blog setup, remember there are multiple settings. However all are controlled on this page. But yours is line 101 for the image.

    I suggest you get NotePad++ and download the theme folder somewhere on your desktop home computer, then use notepad++ to search through all files in the entire folder for classes you see when you view source around the parts you want to edit and then you will see how the structure is and which pages it is located on. https://kriesi.at/support/topic/changing-to-antoher-language#post-102486

    Thanks,

    Nick

    #118165

    In reply to: Small logo

    Hi,

    Please edit js > avia.js then find this code

    //check if the browser supports element rotation
    function avia_header_size()
    {
    var win = $(window),
    header = $('.fixed_header #header'),
    elements = $('#header_main .container, .main_menu ul:first-child > li > a:not(.avia_mega_div a)'),
    el_height = $(elements).filter(':first').height(),
    isMobile = 'ontouchstart' in document.documentElement,
    scroll_top = $('#scroll-top-link'),
    set_height = function()
    {
    var st = win.scrollTop(), newH = 0;

    if(st < el_height/4)
    {
    newH = el_height - st;
    //header.removeClass('shadow');
    }
    else
    {
    newH = el_height/2;
    //header.addClass('shadow');
    }

    elements.css({height: newH + 'px', lineHeight: newH + 'px'});
    }

    if(!header.length) return false;

    if(isMobile)
    {
    return false;
    }

    win.scroll(set_height);
    set_height();
    }

    Replace it with

    //check if the browser supports element rotation
    function avia_header_size()
    {
    var win = $(window),
    header = $('.fixed_header #header'),
    elements = $('#header_main .container, .main_menu ul:first-child > li > a:not(.avia_mega_div a)'),
    el_height = $(elements).filter(':first').height(),
    isMobile = 'ontouchstart' in document.documentElement,
    scroll_top = $('#scroll-top-link'),
    set_height = function()
    {
    var st = win.scrollTop(), newH = 0;

    if(st < el_height/1.5)
    {
    newH = el_height - st;
    //header.removeClass('shadow');
    }
    else
    {
    newH = el_height/1.5;
    //header.addClass('shadow');
    }

    elements.css({height: newH + 'px', lineHeight: newH + 'px'});
    }

    if(!header.length) return false;

    if(isMobile)
    {
    return false;
    }

    win.scroll(set_height);
    set_height();
    }

    Regards,

    Ismael

    #118183

    Hi,

    Please try to add this on your custom.css

    .isotope-item .grid-content {
    height: 46px !important;
    }

    See if it fix the issue.

    Regards,

    Ismael

    jwferne
    Participant

    I’m having trouble sorting out what the top bar is called… where you would put a phone number etc. I want to change the color of that bar only. I found the code which colors it, but I was hoping I could remove everthing but the specific bar. Which one is that called?

    .header_color table, .header_color .widget_nav_menu ul:first-child > .current-menu-item, .header_color .widget_nav_menu ul:first-child > .current_page_item, .header_color .widget_nav_menu ul:first-child > .current-menu-ancestor, .header_color .pagination .current, .header_color .pagination a, .header_color.iconbox_top .iconbox_content, .header_color .av_promobox, .header_color .toggle_content, .header_color .toggler:hover, .header_color .related_posts_default_image, .header_color .search-result-counter, .header_color .container_wrap_meta, .header_color .avia-content-slider .slide-image, .header_color .avia-slider-testimonials .avia-testimonial-content, .header_color .avia-testimonial-arrow-wrap .avia-arrow, .header_color .news-thumb {
    background: none repeat scroll 0 0 #D9FFD9;
    }

    Thanks,

    – John

    p.s. I used firebug to grab that. If there’s a better way to see the structure and know what it’s called, I would be grateful to find out. Trying to learn how to do all this!

    #118075

    Hi,

    Open footer.php then find this code

    <?php

    echo "<div class='sub_menu_socket'>";
    $args = array('theme_location'=>'avia3', 'fallback_cb' => '', 'depth'=>1);
    wp_nav_menu($args);
    echo "</div>";

    ?>

    Replace it with this

    <?php $social_args = array('outside'=>'ul', 'inside'=>'li', 'append' => ''); avia_social_media_icons($social_args); ?>

    <?php

    echo "<div class='sub_menu_socket'>";
    $args = array('theme_location'=>'avia3', 'fallback_cb' => '', 'depth'=>1);
    wp_nav_menu($args);
    echo "</div>";

    ?>

    Edit custom.css then add this code

    #top #socket .social_bookmarks {
    position: absolute;
    right: 0;
    }

    Regards,

    Ismael

    #118198

    Do you mean the *menu* ? The header is just the page title and breadcrumbs. The menu is done in Appearance>menus. This is the list of pages at the top of the page.

    #117792

    Hi rynleigh,

    How did you add in that menu on the left? It seems to be just a regular menu and is only getting the normal list styling (not anything theme specific).

    It can be removed with:

    #top .entry-content #nav_menu-32 ul {
    list-style: none outside;
    }

    But I’m not sure if that solves the issue since you may be trying to get some other kind of effect.

    Regards,

    Devin

    Hi rrdr,

    In this video I create a section very much like that one: https://vimeo.com/channels/aviathemes/64927358

    You just need to use a color section and set a background image to get that kind of effect. Then you can add other elements on top of it.

    Additional videos are posted on that same channel and you can make requests for new ones here: https://kriesi.at/support/topic/video-requests

    Regards,

    Devin

    rrdr
    Participant

    I would really appreciate if you could tell me if there is a way to create nested elements. For example, creating a box with an image background that has text on top of the image.

    There is an example found on this page, http://kriesi.at/themes/enfold/, all the way at the bottom that reads “In case you need help”. This would be an example of a nested element, the background image is laid behind some other text/images. Did you use a rotator to create this item?

    thanks

    #118016

    Hi,

    If I understood you correctly, please add the code below to Quick CSS located in Enfold > Layout .. text area on the bottom of the page OR add it to the bottom of /css/custom.css

    @media only screen and (min-width: 1140px){
    #top .avia_mega_div.avia_mega3.nine.units {
    right: -662px !important;
    }}

    Thanks,

    Nick

    #117978

    Hi madebynoemi,

    Try adding the following CSS to your Quick CSS (located under the Styling Tab in the theme options) or the custom.css file in the css folder of your theme files:

    #top.single-post .big-preview.single-big {
    display: none;
    }

    This is the most straightforward way of removing the featured media are on the single posts.

    Regards,

    Devin

    Glad we could help :)

    Let us know if you have any other questions or issues. I’ll close this topic for now since the main issue has been resolved.

    Regards,

    Devin

    #117723

    Geez,

    Well after seeing all of these posts, I just got on my HR Directors iMac and tried it in Safari and Chrome. For some reason it was smooth as could be and then I tried her assistants MacBook Pro and it was smooth too?

    Now I’m back on my MBP’s (I have a personal and a work MBP and all of these Mac’s are 2011 or 2012 models), and both have the issue but the iMac and assistants MBP dont’t?! I’m happy that it’s been narrowed down to my two laptops but so confused as to what the issue may be…

    I’ve tried both of my laptops on three different Wifi connections and no matter what my site is choppy?

    Thanks for the help guys.

    Ismael i did exactly that but it doesnt show on “blank pages”

    Devin i just tried that also and the full screen background is still not showing.

    below are the screenshots

    1.) here is where i uploaded background the regular way http://demo.globalads24.com/wp-content/uploads/2013/05/Picture817adj.png

    and it shows like this on the website page(s) http://demo.globalads24.com/wp-content/uploads/2013/05/Picture-814.png

    2.) here is the color selection and background added http://demo.globalads24.com/wp-content/uploads/2013/05/Picture816adj.png

    it shows as orange on top and images below but no full screen stretched background http://demo.globalads24.com/wp-content/uploads/2013/05/Picture-815.png

    thx

    jasmine

    #118060

    Now the fixed header doesn’t resize and I’m left with a big white space under the header. Also, how can I add the layerslider without using the advanced layout builder? When I place the layer slider shortcode in the code it gives me white space on top, because it is placing it in the content.

    #22991
    DravotCarnehan
    Participant

    Hi,

    I can choose “Which categories should be used for the portfolio?” Yet all categories are still displayed as options at top of the page. How do I only have the options that I chose displayed? Thanks.

    Hi kriru,

    I’m not sure which theme you are using, but generally you can change the color of the bold text by adding the following CSS to your Quick CSS (located under the Styling Tab in the theme options) or the custom.css file in the css folder of your theme files:

    #top p strong {
    color: #333;
    }

    Just change the color code to the color you want.

    Regards,

    Devin

    #117089

    Glad we could help :)

    If you have any other video requests for tutorials I’m looking to do some more when the current overflow of support topics calms down. Just make a post in this topic with any requests: https://kriesi.at/support/topic/video-requests

    Regards,

    Devin

    #117554

    Hi,

    Ok thats good, however that won’t always work. You need to add #top before everything (which is from the body tag) , this way you will get more specificity and override the original code. Sometimes for some real hard cases, you need to add !important; to the end of the statement — color: red !important;

    if your code ignored, do this. Open up chrome developer tools like this ( http://i.imgur.com/RfNyIBs.png ) find custom.css file in there step 2, then you add your changed code into the screen in middle, just don’t forget to copy it if you need to refresh ) and enter the css directly, if nothing changes, add #top, take something off, and you will see results live, so this way you don’t have to copy and paste and save every time to see whats working and what isnt. also you can edit the html live too and any of the files, but as soon as you refresh, its all gone.

    also don’t use media=”screen” unless you see something like @media only screen and (max-width:767px) { .. if you see that, you need to grab that since that’s a media query (which is css that works on a specific screen size for mobile/tablets).

    so first try (your code with #top directive)

    #top .avia-icon-list .iconlist_icon {
    height:64px;
    width:64px;
    line-height:60px;
    font-size:30px;
    text-align:center;
    border-radius:500px;
    position:relative;
    float:left;
    margin-right:30px;
    margin-left:2px;
    z-index:5;
    border-style:solid;
    border-width:2px;
    color: #fff;
    }

    Then as you get comfortable you will see that css is like a postal address country, state, city, street, house.. further you go in the more specific it becomes. So you can take the less specific stuff off sometimes.

    #top .avia-icon-list .iconlist_icon {
    background-color: #d73119;
    }


    I wish you had a url, where I can look at these disks. when i click url from your name , a website loads, but nothing there.

    Don’t give up on this tool, watch a youtube tutorial for it because its as easy or complex as you want it to be. Its the only one I use and only one many (if not all) use to debug or modify any website.

    Thanks,

    Nick

    #118012

    Enfold should be compatible with Gravity Forms (I tested it and I couldn’t find a conflict) and we even added some css code for better styling/css integration (based on the code I posted here: https://kriesi.at/support/topic/gravity-forms-styling-adjustments ).

    I can’t say if Gravity Forms is worth the money – it definitely comes with more options, features, etc. and if you need an advanced contact form (which supports conditional logic, etc.) you should use it. However if you just need a simple form with a text message field, etc. it’s not required at all. Btw a good alternative is Formidable – I use it on my websites and it works with Enfold too.

Viewing 30 results - 142,381 through 142,410 (of 142,596 total)