Viewing 30 results - 106,051 through 106,080 (of 106,281 total)
  • Author
    Search Results
  • You can’t use the child selector in the css for IE8 as it has no support for it. That is why when you remove the .main_menu css it seems to work better.

    You can also try adding this:

    html.nonfixed_header .header_bg {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    }

    or this

    .header_bg {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)" !important;
    }

    #117359

    In reply to: Blog Image Location

    Hi,

    It’s the latest design style. All the big houses are just going crazy about it.

    Nah, Its up to you in Enfold where to place the image. You can put it above, below, right or left of your article. Just use the advanced layout editor ( https://vimeo.com/64996057 ) here is a video I made about how to add layout editor functionality to your posts. Just instead of the custom post type, add post where it shows to edit in the video.

    Then in your blog posts, don’t use the featured image instead use a simple slider, just add 1 slide to it, and it will automatically become the featured image. Then you can position the simple slider and the blog post however you want using the columns.

    Thanks,

    Nick

    #117588

    In reply to: Demo Content Galerien

    Hallo,

    ich habe leider keinen Zugriff auf den Demo Content. Möglicherweise ist er aber auch im Dummy Content enthalten (Enfold und den grünen “Dummy Data” button klicken – aber Achtung nur auf einem Testsystem, den es kann bestehender Content überschrieben werden).

    Wenn die Gallerie neben “SOME ENFOLD CORE FEATURES” gemeint ist – diese lässt sich sehr leicht nachstellen, nämlich mit: http://www.clipular.com/c?5499120=Mnr1inoJoiqNQM7uPkrYLQuixaM&f=.png

    Vermutlich fehlen aber die kleinen Thumbnail Bilder in der Auswahl – diese werden im nächsten Update enthalten sein. Wenn man diese jetzt schon haben möchte, öffne wp-contentthemesenfoldconfig-templatebuilderavia-shortcodesgallery.php und ersetze:

    "subtype" =>  AviaHelper::get_registered_image_sizes(array('thumbnail','logo','widget','slider_thumb'))

    mit:

    "subtype" =>  AviaHelper::get_registered_image_sizes(array('logo'))

    #22884
    andrejao
    Participant

    Hello,

    first I have to compliment this theme. Great job!

    Second, I would like to know if there is an option to insert Pages instead of Posts in Post slider (via Avia Layout Builder)? Is there any quick hack or workaround that could achieve this?

    What I want to do: display all child Pages’ (of single parent page) featured images and titles.

    Is there any easy way to do this?

    #22883
    oneminutestory
    Participant

    Hi There,

    I would like to change a few things.

    • Where can i change the height of the input field (form)?

    • I have a 3 colum gallerie in the homepage, i want to have space between the images

    • In the header i want to use different colors voor navigation (Actief orange and disactief dark-blue)

    • Header: Where can i set a stroke below menu item when rollover like your example?

    • How can i change the height of google map when i use sidebar?

    • Special heading: i would like to change that color and not the regular text color.

    Thank you in advanced

    Taha

    #117362

    In reply to: Blog Author Block

    1) If you want to add the author blog to single post pages open up single.php and replace:

    get_template_part( 'includes/loop', 'index' );

    with:

    get_template_part( 'includes/loop', 'index' );

    $author_id = get_query_var( 'author' );
    if(empty($author_id)) get_the_author_meta('ID');
    $gravatar = get_avatar( get_the_author_meta('email', $author_id), '75' );
    $name = get_the_author_meta('display_name', $author_id);
    $heading = __("About",'avia_framework') ." ".$name;
    $heading_s = __("Entries by",'avia_framework') ." ".$name;
    $description = get_the_author_meta('description', $author_id);

    if(empty($description))
    {
    $description = __("This author has yet to write their bio.",'avia_framework');
    $description .= '</br>'.sprintf( __( 'Meanwhile lets just say that we are proud %s contributed a whooping %s entries.' ), $name, count_user_posts( $author_id ) );

    if(current_user_can('edit_users') || get_current_user_id() == $author_id)
    {
    $description .= "</br><a href='".admin_url( 'profile.php?user_id=' . $author_id )."'>".__( 'Edit the profile description here.' )."</a>";
    }
    }

    echo "<span class='post-author-format-type blog-meta'><span class='rounded-container'>{$gravatar}</span></span>";
    echo "<div class='author_description '><h3 class='author-title'>{$heading}</h3>".wpautop($description)."<span class='author-extra-border'></span></div>";

    2) To remove the preview image link open up includes/loop-index.php and delete following line:

    if($slider) $slider = '<a href="'.$link.'">'.$slider.'</a>';

    #117363

    Hi,

    it’s the “Single Author, big preview Pic (no author picture is displayed, feature image is big)” blog layout. If you’re using the standard blog page go to Enfold > General Settings and select it or (if you’re using the blog as element in the layout builder) select it on the layout builder option page. The big image is the “featured image” of the post – you can set it on the right side (option below the blue Publish/update button).

    #22869

    Topic: Move from Choices

    in forum Enfold
    nuforms
    Participant

    Hello Support team!

    This theme really rocks! Especially of features and image optimization(icons). I really like it, but there is no AJAX portfolio YET! Hope it will come..

    My question: Is it possible to move database from Choices theme, especially Portfolio items part or I have to fill all data by hands? :)

    Thanks,

    Aleksandr

    #116926

    In reply to: Popular posts list bug

    Hi,

    Congratulations, you have found a genuine bug that I was able to reproduce. Well not so much a bug, since if you would have added the image via the slider it would have used that image, but there was no fallback to featured image unlike the other widgets.

    So please open up /framework/php/class-framework-widgets.php and find lines 944-947 that look like:

    if( $slides != "" && !empty( $slides[0]['slideshow_image'] ) )
    {
    $image = avia_image_by_id($slides[0]['slideshow_image'], 'widget', 'image');
    }

    and replace the block of code above with the code below

    if( $slides != "" && !empty( $slides[0]['slideshow_image'] ) )
    {
    $image = avia_image_by_id($slides[0]['slideshow_image'], 'widget', 'image');
    }
    if(!$image && current_theme_supports( 'post-thumbnails' ))
    {
    $image = get_the_post_thumbnail( get_the_ID(), 'widget' );
    }

    Please let us know how it worked out.

    Thanks,

    Nick

    #117383

    In reply to: Blog option

    Hi,

    2.) You can add a border radius on the container of that image. You can do something like this for example, just inspect the container of the image.

    .img_container {
    border-radius: 50%;
    width: 200px;
    height: 200px;
    overflow: hidden;
    }

    Can you give us a link to your homepage so that we can inspect it?

    Regards,

    Ismael

    #117494

    Bzgl der Thumbnails – ja, wir werden in der nächsten Version (in ca. 1 Woche) eine Option einbauen welche es erlaubt die Thumbnail Size der kleinen Bilder getrennt zu wählen (daher kann man dann zb auch Hochfomatbilder beschneiden und im Querformat darstellen, etc.).

    Das große Thumbnail wird jetzt aber richtig angezeigt (mittig & im Hochformat) und der CSS Code skaliert es nicht mehr:

    #117491

    danke fürs reinschauen … gewählt wurde:

    big image with thumbnails bellow

    medium 300×300

    5 columns

    lightbox yes

    http://tinyurl.com/bvt7dx4

    #117382

    In reply to: Blog option

    1) It’s ok :)

    2) Ok, I’d like to my homepage, the images to appear in a circle of 150 by 150, like this : 810197Capturedcran20130505114631.png

    What code snippet I need to integrate to had the same result?

    3) It’s ok :)

    Thank you very much Dude :)

    #22847
    ACM
    Participant

    Hallo Support Team.

    anbei eine kurze Frage:

    woran liegt es dass keine bilder auf die größe skaliert werden die ich unter einstellungen ausgewählt habe.

    es wirft das bild immer unskaliert rein :(

    die einstellung bei:

    “Gallery Big Preview Image Size

    Choose image size for the Big Preview Image”

    hat keine auswirkung darauf wie gross das bild wirklich angezeigt wird.

    hoffe ihr könnt mir da weiterhelfen.

    besten gruss

    acm

    i got some problems with portfolio images if is vertical. For future update..its possible to crop images to have the same size ? the same for blog. – already added this feature to Enfold. Will be available in the next version.

    #117381

    In reply to: Blog option

    1) Maybe you need to activate the option on the post editor screen. Click on “Screen options” in the right corner and check the excerpt checkbox: http://www.clipular.com/c?5393178=DWPIZfYn3Pt6vQ_8EL0lN6Pc9Js&f=.png

    2) The reason is that the portfolio thumbnail size is used which does not crop the image. We’ll include an option to select a different thumbnail size in the next version. For now you can change the thumbnail dimensions in functions.php – search for:

    $avia_config['imgSize']['portfolio'] 		 	= array('width'=>495, 'height'=>400 );						// images for portfolio entries (2,3 column)

    and set the height to a lower value. Afterwards regenerate the thumbnails http://wordpress.org/extend/plugins/regenerate-thumbnails/

    Another option would be to upload bigger thumbnails with at least 495x400px.

    3) Probably a bug but I fixed it. Try following – open up wp-contentthemesenfoldconfig-templatebuilderavia-shortcodespostslider.php

    and replace:

    $excerpt .= '<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>';

    with

    $excerpt .= '<div class="read-more-link"><a href="'.get_permalink($the_id).'" class="more-link">'.__('Read more','avia_framework').'<span class="more-link-arrow">  &rarr;</span></a></div>';

    #116432

    In reply to: Blurred Thumbnails

    Please download v1.4 of Enfold. It allows you to select the thumbnail size for gallery images:

    Depending on the number of the columns select a smaller or bigger thumbnail size.

    Hey!

    Thanks. I tagged this thread for Kriesi and he’ll fix the issues when he’s back from Cyprus (Friday next week).

    Regards,

    Peter

    #116839

    Very strange. I’ve tried to replicate it now in all of my available browsers in various browser states and am still not getting it.

    #114593

    I found out that the blog style you choose applies to both the page where you display the blog and for single post. Why does it has to be like that? I would like to have the option to select individual style for the page and for single post. E.g. have Grid style for the page, but Single author big image preview.

    I know I can create a page and shortcuts to choose the style I want (and of course not select the page in “Where you want to display your blog”), but when doing this the breadcumb is not showing the right title, and the layout is not looking good either.

    Can you please add this function in the next update? Thanks!

    And would love to have the opportunity to have link in tables.

    #22828

    Topic: Blog option

    in forum Enfold
    R3V0X
    Participant

    Hi !

    1) I would like to know where is the box “excerpt from the article”

    I would like to insert an excerpt for each items that will be displayed on a page. Only, when i used the tag read more of the text editor, it doesn’t function.

    2) why the images of my two items are not displayed at the same height? And why one display a orange circle flies over while the other does not?

    3) Why the read more link does not work? He referred on the home page (socialweb.fr)

    Thank you in advance

    #22821
    joe88
    Participant

    How do you create this blog layout, Default Post with Preview Image – beautiful? Unfortunately, the dummy data does not include this article. I created another support ticket for the blog layout image, that I still can’t resolve. I have spent countless number of hours on this. Dummy data really needs to reflect the demo. :( Thx.

    #22820

    Topic: Blog Author Block

    in forum Enfold
    joe88
    Participant

    Unless I missed it, where is the option to turn on the author block for blog articles?

    Also, how do you turn off the image hover lightbox in the blog post? Thanks.

    #22819

    Topic: Blog Image Location

    in forum Enfold
    joe88
    Participant

    Hello. Why does every blog post place the image to the left of the article instead of placing a featured image to the right, above the article? Thanks.

    http://awesomescreenshot.com/03518k8kc8

    #117166

    In reply to: Image Link Hover

    Hi!

    It’s not possible to deactivate this effect on an indivdual basis but you can remove it completely. Open up enfold/js/avia.js and delete

    avia_hover_effect();

    Regards,

    Peter

    Naci
    Participant

    hi kriesi

    first of all great theme.

    I got some littel bugs after update with woocommerce.

    1) boxed layout . the “cart_dropdown” is not visible because of the css attribute position: fixed. Must be absolute see screenshot

    http://www.flickr.com/photos/95446449@N02/8705998150/in/photostream

    2) boxed layout and left- sidebar selected . looks in product single page like this

    http://www.flickr.com/photos/95446449@N02/8704875301/in/photostream/

    i got some problems with portfolio images if is vertical. For future update..its possible to crop images to have the same size ? the same for blog.

    http://www.flickr.com/photos/95446449@N02/8705998458/in/photostream/

    http://www.flickr.com/photos/95446449@N02/8704875757/in/photostream/

    http://www.flickr.com/photos/95446449@N02/8705998366/in/photostream/lightbox/

     

    last one social share buttons for post and pages like this

    http://themes.swiftpsd.com/flexform/2012/11/02/supreme-2013-playlist/

    or this

    http://themes.muffingroup.com/bretheon/jquery/379,suspendisse-a-pellentesque-dui-non-felis.html

    :)

    Thank you so much

    und schöne ferien. Grüsse aus Wien ;)

    #116838

    OK, just tested. I opened a new FF, cleared cache, went directly to site by typing in url http://polettofit.com/2013/what-is-ultimate-reset and it happens. They only time it doesn’t happen is when I click on a link that I provide you in this thread, wth?

    I’m going to test to see if it does it by clicking on the link I just put in this reply.

    #116837

    Alright, just to add. I clicked on the links that I provided and it opened a new tab and the “affect” doesn’t do it. However, I have those pages open in another tab and it does it. Now I’m really confused. Any suggestions?

    #116836

    I just tested it at home, on a Mac, using both Chrome and FF. I originally posted from work where I’m on a PC and it happens in both Chrome and FF. It happens when I’m logged in to WP and when I’m not logged in.

    I honestly have no idea how it’s not do that for you.

    When I just move the mouse over any of those images, they move and the text “adjusts”.

    yes please: http://amerifirst.us/

    here is the code for my header. Do you see anything unusual? anything I can add to get the IE to not make the header all black?

    <?php

    global $avia_config;

    $style = $avia_config;

    $responsive = avia_get_option(‘responsive_layout’,’responsive’);

    $blank = isset($avia_config) ? $avia_config : “”;

    $headerS = !$blank ? avia_header_setting() : “”;

    ?>

    <!DOCTYPE html>

    <html <?php language_attributes(); ?> class=”<?php echo ” html_$style “.$responsive.” “.$headerS;?> “>

    <head>

    <meta charset=”<?php bloginfo( ‘charset’ ); ?>” />

    <?php

    /*

    * outputs a rel=follow or nofollow tag to circumvent google duplicate content for archives

    * located in framework/php/function-set-avia-frontend.php

    */

    if (function_exists(‘avia_set_follow’)) { echo avia_set_follow(); }

    /*

    * outputs a favicon if defined

    */

    if (function_exists(‘avia_favicon’)) { echo avia_favicon(avia_get_option(‘favicon’)); }

    ?>

    <!– page title, displayed in your browser bar –>

    <title><?php bloginfo(‘name’); ?> | <?php is_front_page() ? bloginfo(‘description’) : wp_title(”); ?></title>

    <!– add feeds, pingback and stuff–>

    <link rel=”profile” href=”http://gmpg.org/xfn/11&#8243; />

    <link rel=”alternate” type=”application/rss+xml” title=”<?php echo get_bloginfo(‘name’); ?> RSS2 Feed” href=”<?php avia_option(‘feedburner’,get_bloginfo(‘rss2_url’)); ?>” />

    <link rel=”pingback” href=”<?php bloginfo( ‘pingback_url’ ); ?>” />

    <!– mobile setting –>

    <?php

    if($responsive === ‘responsive’) echo ‘<meta name=”viewport” content=”width=device-width, initial-scale=1, maximum-scale=1″>’;

    ?>

    <?php

    /* Always have wp_head() just before the closing </head>

    * tag of your theme, or you will break many plugins, which

    * generally use this hook to add elements to <head> such

    * as styles, scripts, and meta tags.

    */

    wp_head();

    ?>

    </head>

    <body id=”top” <?php body_class($style.” “.$avia_config.” “.$blank); ?>>

    <?php if(!$blank){ ?>

    <div id=’header’ class=’ header_color <?php avia_is_dark_bg(‘header_color’); ?>’>

    <?php

    $social_args = array(‘outside’=>’ul’, ‘inside’=>’li’, ‘append’ => ”);

    //subheader, only display when the user chooses a social header

    if(strpos($headerS,’social_header’) !== false)

    {

    ?>

    <div id=’header_meta’ class=’container_wrap container_wrap_meta’>

    <div class=’container’>

    <?php

    /*

    * display the themes social media icons, defined in the wordpress backend

    * the avia_social_media_icons function is located in includes/helper-social-media-php

    */

    if(strpos($headerS,’bottom_nav_header’) === false) avia_social_media_icons($social_args);

    //display the small submenu

    echo “<div class=’sub_menu’>”;

    $args = array(‘theme_location’=>’avia2’, ‘fallback_cb’ => ”, ‘container’=>”);

    wp_nav_menu($args);

    /*

    * Hook that can be used for plugins and theme extensions like the wpml language selector

    */

    do_action(‘avia_meta_header’);

    echo “</div>”;

    ?>

    </div>

    </div>

    <?php } ?>

    <div id=’header_main’ class=’container_wrap container_wrap_logo’>

    <div class=’container’>

    <?php

    /*

    * display the theme logo by checking if the default logo was overwritten in the backend.

    * the function is located at framework/php/function-set-avia-frontend-functions.php in case you need to edit the output

    */

    echo avia_logo(AVIA_BASE_URL.’images/layout/logo.png’, false, ‘strong’);

    /*

    * Hook that can be used for plugins and theme extensions like the wpml language selector

    */

    do_action(‘avia_main_header’);

    if(strpos($headerS,’social_header’) !== false && strpos($headerS,’bottom_nav_header’) !== false) avia_social_media_icons($social_args);

    /*

    * display the main navigation menu

    * modify the output in your wordpress admin backend at appearance->menus

    */

    $extraOpen = $extraClose = “”;

    if(strpos($headerS,’bottom_nav_header’) !== false){ $extraClose = “</div></div><div id=’header_main_alternate’ class=’container_wrap’><div class=’container’>”; }

    echo $extraClose;

    echo ‘<div class=”avia-button-wrap”><span class=”avia_iconbox_title”>MORTGAGE CALCULATOR</span></div>’;

    echo “<div class=’main_menu’ data-selectname='”.__(‘Select a page’,’avia_framework’).”‘>”;

    $args = array(‘theme_location’=>’avia’, ‘fallback_cb’ => ‘avia_fallback_menu’, ‘walker’ => new avia_responsive_mega_menu());

    wp_nav_menu($args);

    echo “</div>”;

    ?>

    <!– end container–>

    </div>

    <!– end container_wrap–>

    </div>

    <div class=’header_bg’></div>

    <!– end header –>

    </div>

    <?php } //end blank check ?>

    <div id=’main’>

Viewing 30 results - 106,051 through 106,080 (of 106,281 total)