Viewing 30 results - 91,381 through 91,410 (of 142,900 total)
  • Author
    Search Results
  • #678778

    Hi Vinay
    No need to upload a screenshot. You can see on the page link in the footer that I’ve nearly achieved what I wanted. However, I just need to remove the padding from the top picture so that it reaches the sides. Then I just need to repeat it for the header – provided I can get rid of the grey line, which won’t go no matter what I do. Thanks for your help.

    #678775
    intense
    Participant

    Dear Kriesi & Enfold Team.

    I really really need answer to my 3 days old question.
    Where’s the support in this? It’s been 3 days and no one seemed to bother answering.

    https://kriesi.at/support/topic/ajax-portfolio-on-main-menu-link/

    Thank you

    #678771

    Hi!

    Yes, it’s an error with the google map widget. Please follow the instructions in the following thread. Let us know if it helps. https://kriesi.at/support/topic/google-maps-api-error-missingkeymaperror-3/#post-677308

    Regards,
    Ismael

    #678767

    Hi!

    Add this in the functions.php file:

    add_filter( 'ava_main_header', 'ava_main_header_mod', 10, 1);
    function ava_main_header_mod( $items )
    {
    	$social_args = array('outside'=>'ul', 'inside'=>'li', 'append' => '');
    	$icons  = '<div class="mobile_social">';
    	$icons .= avia_social_media_icons($social_args, false);
    	$icons .= '</div>';
    	echo $icons;
    }

    And use the following css code to adjust the display and position property of the social container:

    @media only screen and (min-width: 989px) {
      /* Add your Desktop Styles here */
      .mobile_social { display:none; }
    }
    
    @media only screen and (max-width: 988px) {
      /* Add your Mobile Styles here */
      .mobile_social {
        position: absolute;
        right: 0;
        top: 10px;
      }
    }

    Cheers!
    Ismael

    #678764

    Hey!

    It is actually working. Please remove browser cache or hard refresh the page. Honestly, I don’t think you need it on mobile because users can tap the top edge of the screen twice to scroll back to the top.

    Best regards,
    Ismael

    #678750
    farrdesign79
    Participant

    I keep getting error messages at the top and bottom of the pages. I try a different browser until I find a version that does not have the error and will let me log in. I have found that the problem goes away on its own or when clearing cache, or viewing in a private browser window, but does not work well for presenting to clients

    Warning: session_start(): open(/tmp/sess_07ddbe608ceb2daed9f3cb9873a97bfd, O_RDWR) failed: Permission denied (13) in /home/stlvision/public_html/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/masonry_entries.php on line 32

    Warning: session_start(): Cannot send session cache limiter – headers already sent (output started at /home/stlvision/public_html/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/masonry_entries.php:32) in /home/stlvision/public_html/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/masonry_entries.php on line 32

    #678738
    Darrell
    Participant

    I use the following CSS to keep my nested sidebar navigation menus fixed:

    #top #main .sidebar {
    position: fixed;
    }

    It works great. But my problem is: It’s also affecting my Blog page, which does not have any nested pages in its sidebar, but it does have a very long list of blog post categories in its sidebar by using Sidebar Blog widgets. So I need the blog’s sidebar to be floating, not fixed.

    Can I modify or add some CSS to make only the blog’s sidebar floating while keeping my nested navigation page sidebars everywhere else fixed?

    Many thanks.

    • This topic was modified 9 years, 7 months ago by Darrell.
    #678728

    Hi,

    Add a unique category to the portfolio items with a custom link. The theme will automatically generate a custom css class attribute for the items included in that category. If the category is named “linked” for example, the css selector would be “linked_sort”.

    .linked_sort:before {
        content: '\E869'; 
        font-family: 'entypo-fontello';
        position: absolute;
        border-radius: 50px;
        background: #df8f04;
        height: 80px;
        width: 80px;
        line-height: 80px;
        left: 50%;
        top: 50%;
        margin: -40px 0 0 -40px;
        z-index: 500;
        text-align: center;
        color: #fff;
    }

    Best regards,
    Ismael

    #678723
    ShortieD
    Participant

    Hi team – I’m trying to load a new Google font into my child theme so that I can call it for the slideshow caption headings.

    I’ve followed this thread many times and it works – but this time it won’t.

    https://kriesi.at/support/topic/add-new-font/?login_error#post-234710

    _________

    This is how I’m calling my font in the functions

    /* ADDING NEW GOOGLE FONTS */

    add_filter( ‘avf_google_heading_font’, ‘avia_add_heading_font’);
    function avia_add_heading_font($fonts)
    {
    $fonts[‘Kalam’] = ‘Kalam:400,700’;
    return $fonts;
    }

    Then I’ve called the font in my stylesheet

    #top #wrap_all .slideshow_caption h2.avia-caption-title, #top #wrap_all .av-slideshow-caption h2.avia-caption-title {
    font-family: ‘Kalam’, cursive !important;

    }
    However – on the font that’s displaying isn’t the Kalam font – I don’t think the font is loaded properly – do you mind checking if the filter is correct?

    This is the Google font I want to call

    https://fonts.google.com/specimen/Kalam?selection.family=Kalam:400,700

    Cheers

    #678720

    Any help on this? I can’t seem to get timely responses from support anymore :( I’ve purchased this theme over a dozen times and kind of feel like the support is going downhill, instead of up. Maybe there should be a top level support option for more timely paid support?

    What is the expected turnaround on support now? I’d like an idea so I know if I should keep purchasing it (slow support is temporary) or if it’s time to search out something new.

    I’m not bitching, I understand staffing can be an issue, I’d just like a heads up if this is what’s to be expected now?

    #678709

    Ok, I finally made it !

    For those who look after it. I modified this on my CSS child theme file :

    #top .av-video-slide iframe, #top .av-video-slide embed, #top .av-video-slide object, #top .av-video-slide video {width:110%;}

    You modify width in order to fill completely your screen. Take care, you have other options you will find using the F12 developer tools. Just be sure that max-width is on none option otherwise you will not be allowed to pass over 100% width.

    that worked well. thanks
    the entries are still accessible via the admin top bar (see image below)
    admin bar
    how can I remove the entries there?
    thank you

    • This reply was modified 9 years, 7 months ago by vernontrent.
    #678701
    hdsitomh
    Participant

    I’d like to hide the tooltip that the browser shows when mousing over the masonry gallery thumbnail images.

    I’ve tried a suggestion from:

    In that post its suggested to use the following function:

    •••••••••••••••••••

    function add_custom_tooltip(){
    ?>
    <script>
    jQuery(window).load(function(){
    jQuery(‘a’).removeAttr(‘title’);
    jQuery(‘img’).removeAttr(‘title’);
    });
    </script>
    <?php
    }
    add_action(‘wp_footer’, ‘add_custom_tooltip’);

    •••••••••••••••••••

    The trouble with this solution is that in addition to removing the TOOLTIP from the small gallery thumbnail images, it unfortunatly also removes the CAPTIONS from any of the lightbox enlargements.

    Is it possible the script could be modified to only affect the thumbnails and not the enlargements?

    #678686

    That worked great although now there are some bullet points at the top of the page lol

    How do I remove those?

    Ben

    #678678
    tremblayly
    Participant

    Hi

    I have search the knowledgebase but could not find resolution for my display issue. The following icons are not displaying: social icons & scroll to top.

    I have three plugins installed which I deactivated but the problem still remains. I have since reactivated these.

    My website is under development and access to view is required. I have included access credentials in the private area. Please note that sometimes, for some odd reason, it can take three tries before connecting.

    Thanks
    Lyse

    #678673
    #678669
    M|C
    Participant

    I have some tracking code I want to place at the bottom of my child theme.

    By default, enfold theme’s Google services code block place code to the top. I want to change the place of all my js or tracking code to the footer of the child theme.

    #678658

    In reply to: Delete logo

    Hi Rikard, thanks for your rapid response.

    I deleted the social icons. As you can see the empty area is still there. I now have an empty container on top of the page and a container for the menu below. I’d like to delete the empty container. :-)

    #678647

    Thanks a lot! It was a simple fix, just in hiding^^

    Another fix that should be simple, when you see the result of a google search, below the link that leads to “home”, in google search results, you can read :
    “Home · Process · About · Contact · Research · Portfolio · Examples · Search … Initializing… stage: 500×375 file: http://irisinspire.com/wp-content/uploads/2015/11/iris-inspire-video2-movie.mp4 autoplay: false preload: none isvideo: true …”

    It doesn’t look very enticing – how can I add some cooler, descriptive text instead of this technical jargon?

    #678622

    Hey envapk2,

    Please try adding this at the very end of your themes / child themes functions.php file:

    function mobile_menu_social_icons(){
    ?>
    <script>
    jQuery(document).ready(function(){
      var htmlString = jQuery('.social_bookmarks').html(),
      mobileMenu = jQuery('#mobile-advanced');
      mobileMenu.prepend('<ul class="noLightbox social_bookmarks">' + htmlString + '</ul>');
      console.log('<ul class="noLightbox social_bookmarks">' + htmlString + '</ul>');
    });
    </script>
    <?php
    }
    add_action('wp_head', 'mobile_menu_social_icons');

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    /* Mobile menu social icons */
    
    #mobile-advanced [data-av_iconfont='entypo-fontello']:before {
        font-family: 'entypo-fontello';
    }
    
    #top .social_bookmarks li a:before, #mobile-advanced .social_bookmarks li a:before {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        font-weight: normal;
        content: attr(data-av_icon);
        speak: none;
    }
    
    #mobile-advanced ul.social_bookmarks li, #mobile-advanced ul.social_bookmarks li a{
        border:0!important;
    }
    #mobile-advanced .social_bookmarks li a:before {
        color: #666;
        font-size: 30px!important;
    }
    
    #mobile-advanced .social_bookmarks li > a:before {
       font-size: 20px;
    }
    

    If you still have any issues please post us your login credentials (in the “private data” field), so we can take a look at your backend.

    Login credentials include:

    • The URL to the login screen.
    • A valid username (with full administration capabilities).
    • As well as a password for that username.
    • permission to deactivate plugins if necessary.

    Best regards,
    Vinay

    #678580

    In reply to: Hyperlinks won't work

    Hi,

    We have added the below css in Quick CSS please review the site now :)

    #top h1 a, #top h2 a, #top h3 a, #top h4 a, #top h5 a, #top h6 a {
        text-decoration: underline!important;
    }

    Best regards,
    Vinay

    #678570

    Hi,

    1.) Could you please a screenshot of the comment form issue? Looks like you’re using a third party plugin.

    2.) Add this in the Quick CSS field:

    .main_color input[type='submit'] {
        font-family: 'Capriola', 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    }

    And one last question: Why do the titles of the posts on the blog page look different from the titles on single post pages.

    3.) The title in the blog overview page is h2, not h1. Add this in the Quick CSS field:

    #top #wrap_all .header_color h2, #top #wrap_all .main_color h2, #top #wrap_all .alternate_color h2, #top #wrap_all .footer_color h2 {
        color: #492e26;
        font-size: 23px;
        font-family: 'Atma', 'Helvetica Neue', Helvetica, Arial, sans-serif;
        font-weight: bold;
        text-transform: none;
    }

    For other inquiries, please create a separate thread.

    Best regards,
    Ismael

    #678567

    Topic: Masonry Hover

    in forum Enfold
    bibahbuh
    Participant

    Hello,

    What CSS do I need to add for the hover on my masonry grid? I would like a red color for example, instead of the opacity and to keep the originally zoom effect as well.
    ( Example of hover color (just the color, I don’t the text): http://peacheyphotography.co.uk/)

    I’m at this point in my CSS research:

    .avia_desktop .av-masonry-entry:hover .av-masonry-image-container {
    -webkit-transform: none;
    -moz-transform: none;
    transform: none;
    opacity: 0.5!important;
    }

    Thanks a lot for your help.
    Regards,
    Bibahbuh

    #678560

    Hi,

    @M|C Mods try to keep the focus on the main topic as several issues in one ticket leads to confusion. Please search in the forum or google with a prefix “Kriesi” or “Enfold” If you do not find a solution go ahead and create a new ticket. If you already have a ticket please await one of our Mods will get back to you.

    For those who are facing the same issue please share the link to your site.

    Best regards,
    Vinay

    • This reply was modified 9 years, 7 months ago by Vinay.
    #678557

    Hi!

    The map is working in the contact page. Did you remove the footer widget? Please add it again then follow the instructions here: https://kriesi.at/support/topic/google-maps-api-error-missingkeymaperror-3/#post-677308

    Cheers!
    Ismael

    #678553

    I figured out the top menu bar.

    #678552
    CCHoward
    Participant

    Hi there. Is there a way to have the the logo and menu bar show up on page load? Right now it only shows up after I scroll down a bit. Here is the site. It is a one-pager. Also, do you have some css that I can use to move up the boxed caption in the hero section (the full-screen slider at the top of the page)?
    Thanks for your help

    #678551
    aiepro
    Participant

    Hi there. I’ve done a lot of Googling and searching in the forum. I have tried implementing some of the suggested solutions to no avail. Here are some things I have done:

    The Advanced Layout Builder sometimes stops loading properly due to different factors like browser caching. Here are a few things you could try to fix it:

    First of all, make sure that you are running the latest version of the theme – you can find out what the latest version is here
    Clear your browser cache and restart – Guide to clearing your browser cache
    Try a different browser to verify if you are getting cached results or not – preferably a browser you have never used to log into the WordPress installation in question with before. If it works as expected in this browser, then you are getting cached results in the first one
    Disable all plugins to see if there is a conflict with any of them – if there is a conflict, you can reactivate them one by one to find out which one is causing the problem
    If none of the above should work, then try to overwrite your theme files with a fresh copy from your Themeforest account – Please make sure to properly back your site up prior to attempting this. Refer to this guide for further instruction on updating via FTP.

    PLEASE HELP ME.

    #678548

    In reply to: Checklist Font Size

    Hey!

    Try adding this code to the Quick CSS:

    #top label.input_checkbox_label {
        font-size: 20px;
    }

    Cheers! 
    Josue

    #678538

    Hi,

    To make header meta appear regardless of header settings you’d need to use a code like this:

    add_filter('avf_header_setting_filter', function($header) {
    	$header['header_topbar'] = 'true';
    	return $header;
    }, 10, 1);
    
    add_filter( 'avf_execute_avia_meta_header', '__return_true', 10, 1);
    
    add_action('avia_meta_header', function() {
    	get_search_form();
    });

    Best regards,
    Josue

    • This reply was modified 9 years, 7 months ago by Josue.
Viewing 30 results - 91,381 through 91,410 (of 142,900 total)