Forum Replies Created

Viewing 30 posts - 60,121 through 60,150 (of 67,539 total)
  • Author
    Posts
  • in reply to: Hide "Blog-Image" in Single Post Site #239123

    Hi!

    Please check it. I hope it is ok now. :)

    Regards,
    Ismael

    in reply to: 'Read more' doesn't work (category-page) #239122

    Hi!

    Can you please give us a link to the archive category page? The <!–more–> tag should work for category pages even without adding the code above.

    Cheers!
    Ismael

    in reply to: Remove or Edit sidebar #238701

    Hi!

    That’s a lot of “long” words there. Anyway, those are navigation for nested subpages of a page that will show when you don’t have any widgets on the widget areas. You can disable it on Enfold > Sidebar > Page Sidebar navigation. Uncheck or disable it, or add any widgets on Appearance > Widgets.

    Regards,
    Ismael

    in reply to: how to add blank/transparent space above header #238695

    Hey simonac!

    Can you please post a link to the website? Add this on Quick CSS or custom.css:

    #wrap_all {
    margin-top: 20px;
    }

    Regards,
    Ismael

    in reply to: Mobile menu issues since upgrade #238693

    Hey!

    Maybe, this will make the logo on mobile view better:

    @media only screen and (max-width: 767px) {
    .responsive .logo a, .responsive .logo img, .logo {
    max-width: 90%;
    overflow: visible;
    }
    
    .responsive .mobile_slide_out .logo img, .logo a, .logo {
    margin: 0;
    width: 200px;
    height: 200px !important;
    max-height: 200px !important;
    }
    
    .responsive #header_main .container {
    height: 200px !Important;
    }
    }

    Add the code at the very bottom of Quick CSS.

    Cheers!
    Ismael

    in reply to: Hide "Blog-Image" in Single Post Site #238690

    Hey!

    Please post the login details here. I inspect the site but I don’t see the code that we provided. Use this:

    .category .big-preview.single-big {
    display: none !important;
    }

    Add it at the very bottom of Quick CSS or custom.css.

    Best regards,
    Ismael

    in reply to: 'Read more' doesn't work (category-page) #238688

    Hey Martijn!

    Please add this on functions.php:

    add_filter( 'post-format-standard', 'avia_category_content_filter', 15, 1);
    function avia_category_content_filter($current_post)
    {
    if(is_archive())
    {
    	$current_post['content'] =  get_the_excerpt();
    	$current_post['content'] .= $current_post['content'].'<div class="read-more-link"><a href="'.get_permalink().'" class="more-link">'.__('Read more','avia_framework').'<span class="more-link-arrow">  &rarr;</span></a></div>';
    }
    return $current_post;
    }

    Best regards,
    Ismael

    in reply to: RTL Support – Font Styles #238685

    Hey!

    You need to add the code above on functions.php. Maybe you can refer to this link for fonts that can support hebrew: http://www.wazu.jp/gallery/Fonts_Hebrew.html

    Use @fontface on custom.css to add the font. Refer to this link: http://www.w3schools.com/cssref/css3_pr_font-face_rule.asp

    Best regards,
    Ismael

    in reply to: Enfold – Remove portfolio-item from url #238568

    Hi!


    @muslimmedical
    : If you have the Enfold 2.6 version, you can change the portfolio permalink on Settings > Permalink > Portfolio Entry Settings > Portfolio Items Base.

    Regards,
    Ismael

    in reply to: Enfold Theme Not Working in Chrome and Firefox #238565

    Hey Scott!

    Can you please post the link to the website? Do you have a cache plugin? Please deactivate them. Remove browser cache then reload the page a few times.

    Best regards,
    Ismael

    Hi kgersony!

    Are you talking about the single portfolio view featured image? Please use this on Quick CSS:

    .single-portfolio .page-thumb {
    display: none;
    }

    Cheers!
    Ismael

    in reply to: Hide "Blog-Image" in Single Post Site #238561

    Hey!

    Please use this:

    .category .big-preview.single-big {
    display: none;
    }

    Cheers!
    Ismael

    in reply to: Enfold – Styling Options #238557

    Hi!

    2.) Please use this for the tab title:

    .js_active .tab {
    font-size: 20px !important;
    }

    4.) Use this instead:

    .av-masonry-sort {
    padding: 30px;
    }

    Cheers!
    Ismael

    Hi!

    Decrease the min-height value.

    .home #av_section_1 {
    min-height: 0;
    margin-top: 5px;
    }
    
    .home #main .content {
    padding-bottom: 0;
    padding-top: 0;
    }

    Best regards,
    Ismael

    in reply to: Portfolio sort by title and title display on hover #238542

    Hey!

    Edit js > avia.js, find this code at the very beginning:

    $(document).ready(function()
        {
            var aviabodyclasses = AviaBrowserDetection('html');

    Below, add this code:

    $('a.av-masonry-entry').attr('title', '');
    

    Remove browser cache then reload the page a few times.

    Regards,
    Ismael

    in reply to: Lightbox NOT show up on store items #238541

    Hi Andrea!

    You can add this on Quick CSS or custom.css:

    .template-shop div.product div.images a {
    pointer-events: none;
    }

    Regards,
    Ismael

    in reply to: Footer / Socket words #238538

    Hi!

    Please add this on your custom.css or Quick CSS:

    @media only screen and (max-width: 479px) {
    .responsive #socket .sub_menu_socket {
    display: block;
    }
    
    .disclaimer {
    width: 100%;
    clear: both;
    padding-top: 10px;
    text-align: center;
    }
    }
    

    Best regards,
    Ismael

    in reply to: WP layerslider. #238536

    Hey grwebs!

    Please refer to this link: https://kriesi.at/support/topic/layersliders-deleted/

    Cheers!
    Ismael

    in reply to: Fullwidth easy slider safari bug #238532

    Hi!

    I checked this on Safari and Chrome. The full width slider looks ok. Can you please post a screenshot of the issue? You can use imgur or clipular.

    Best regards,
    Ismael

    in reply to: Inserting Tag Line Within Header #238530

    Hi!

    You can refer to this link: https://kriesi.at/support/topic/how-can-you-add-a-tagline-or-subheading-to-all-pages-for-the-enfold-theme/

    Instead of editing header.php, find the code on includes > header-main-menu.php. Go to line 101:

    echo avia_logo(AVIA_BASE_URL.'images/layout/logo.png', $addition, 'strong', true);
    

    Follow the instructions on the link.

    Regards,
    Ismael

    in reply to: Random Lines? #238529

    Hi bert787!

    Can you please give us a link to the website? I tested it on my end but it’s not happening. I assume when you say “dropdown”, you’re talking about the accordion element.

    Cheers!
    Ismael

    in reply to: Scroll bad positioning #238525

    Hi CloudChoice!

    Can you please post a link to the website?

    Refer to this link for the fix: https://kriesi.at/support/topic/linking-to-anchor-menue-covering/#post-214325

    Cheers!
    Ismael

    in reply to: Archives by year #238523

    Hi osukaru!

    You can use this plugin: http://wordpress.org/plugins/flexo-archives-widget/

    Unfortunately, there is no filter to change the default wp archives widget.

    Regards,
    Ismael

    in reply to: Avisio to Enfold: Fallback Menu Issue #238521

    Hey!

    Please go to Enfold > Sidebar > Page Sidebar navigation, disable the nested navigation.

    Regards,
    Ismael

    in reply to: Avisio to Enfold: Side Nav Issue #238517

    Hey!

    Please go to Enfold > Sidebar > Page Sidebar navigation, disable the nested sidebar.

    Regards,
    Ismael

    in reply to: Mega Menu problem #238511

    Hi Kimberlyjo!

    Edit the mega menu column then put a single dash “-” if you don’t want to show the title.

    Mega Menu Column Title (if you dont want to display a title just enter a single dash: "-" ).
    

    Best regards,
    Ismael

    Hey Wanderlustme!

    Looks like you need to watch these videos to learn more about the theme: http://vimeo.com/channels/aviathemes/

    Refer to this link for basic stuffs: http://kriesi.at/documentation/enfold/

    Please come back to use after you watch the videos and figured out most of the things above. You can setup a blog using the Blog Posts element on a page. You can select which categories to show and how many posts you want to show on a specific page. Select different blog style like grid, multi author etc. You can control the number of comments on Settings > Discussion. Related posts are shown by tag.

    For the menu, please go to Appearance > Menus then create a new menu. Assign this new menu as Enfold Main Menu.

    Create portfolio page using the Portfolio Grid element. Like the blog posts, you can select which categories you want to show on a specif page. You can also use the full width masonry element if you want to show the blog or portfolio in a different way.

    Best regards,
    Ismael

    in reply to: permalinks #238508

    Hey Philippe!

    I’m sorry but you can’t remove that slug on the url. You can only change it on Settings > Permalink > Portfolio Entry Settings > Portfolio Items Base.

    Regards,
    Ismael

    Hi!

    Please post the actual link to the website. Try to increase the wordpress memory limit: http://dailyblogging.org/wordpress/increase-wordpress-memory-limit/

    Post the login details here as a private reply. We would like to inspect it.

    Regards,
    Ismael

    Hi!

    You can use the Boxed Layout then upload the background image. Make the other container transparent using css:

    .header_color .header_bg, .header_color .main_menu ul ul, .header_color .main_menu .menu ul li a, .header_color .pointer_arrow_wrap .pointer_arrow, .header_color .avia_mega_div {
    background-color: transparent;
    }
    
    .alternate_color, .alternate_color .site-background, .alternate_color .first-quote, .alternate_color .related_image_wrap, .alternate_color .gravatar img .alternate_color .hr_content, .alternate_color .news-thumb, .alternate_color .post-format-icon, .alternate_color .ajax_controlls a, .alternate_color .tweet-text.avatar_no, .alternate_color .big-preview, .alternate_color .toggler, .alternate_color .toggler.activeTitle:hover, .alternate_color #js_sort_items, .alternate_color.inner-entry, .alternate_color .grid-entry-title, .alternate_color .related-format-icon, .grid-entry .alternate_color .avia-arrow, .alternate_color .avia-gallery-big, .alternate_color .avia-gallery-big, .alternate_color .avia-gallery img, .alternate_color .grid-content {
    background-color: transparent;
    }
    
    .main_color, .main_color .site-background, .main_color .first-quote, .main_color .related_image_wrap, .main_color .gravatar img .main_color .hr_content, .main_color .news-thumb, .main_color .post-format-icon, .main_color .ajax_controlls a, .main_color .tweet-text.avatar_no, .main_color .big-preview, .main_color .toggler, .main_color .toggler.activeTitle:hover, .main_color #js_sort_items, .main_color.inner-entry, .main_color .grid-entry-title, .main_color .related-format-icon, .grid-entry .main_color .avia-arrow, .main_color .avia-gallery-big, .main_color .avia-gallery-big, .main_color .avia-gallery img, .main_color .grid-content {
    background-color: transparent;
    }
    
    #wrap_all > * {
    background: transparent;
    }

    Regards,
    Ismael

Viewing 30 posts - 60,121 through 60,150 (of 67,539 total)