Forum Replies Created

Viewing 30 posts - 57,421 through 57,450 (of 67,477 total)
  • Author
    Posts
  • in reply to: Logo alt text #291420

    Hey Steve!

    Thank you for using the theme!

    Please add this on functions.php:

    add_filter('avf_logo_alt', 'avf_change_logo_alt');
    
    function avf_change_logo_alt($alt) {
    	 $alt = "New Alternate Text Here";
    	 return $alt;			
    }

    Change the value.

    Cheers!
    Ismael

    in reply to: How to highlight active menu item #291419

    Hi!

    Thank you for the update.

    We can’t see the actual website, it requires us to login. Please post the login details here.

    Cheers!
    Ismael

    in reply to: Change color of mobile menu #291407

    Hi elbnetz!

    Thank you for using the theme.

    Please remove .avia_desktop selector. Use this:

    #advanced_menu_toggle, #advanced_menu_hide {
    background-color: #000!Important;
    color: #ffffff!Important;
    border-color: #000!Important;
    }

    Regards,
    Ismael

    in reply to: masonry galley loading all items in gallery library #291404

    Hi!

    Glad it work.


    @laraparodi
    : Please refer to this link and follow the instructions: https://kriesi.at/support/topic/gallery-edit-issues#post-277654

    Regards,
    Ismael

    in reply to: Buttons in Tables Misaligned. #291402

    Hey samforan!

    Thank you for using the theme.

    Have you tried adding a br tag before the button? Please post the actual page. We would like to check it. You can also add a unique selector on the p tag. Look for this code on the cf7 form:

    <p>[submit "Submit my Application"]</p>
    

    Replace it with this:

    <p class="form-top-margin">[submit "Submit my Application"]</p>
    

    Add a top margin on Quick CSS or custom.css:

    .form-top-margin {
    margin-top: 15px;
    }

    Cheers!
    Ismael

    in reply to: Web Accessibility Problem #291401

    Hey!

    You can open a request for the feature on our Feature Requests page. If enough users ask for this modification, we’ll add it on the theme.

    Cheers!
    Ismael

    in reply to: Incorrect display of standard icons in Chrome browser #291396

    Hey!

    Thank you for the info.

    I’m sorry about that. There are lots of changes since 2.2, fyi version 2.2 has been release September last year and there are lots of changes since then. One example is the new header builder on Enfold theme options and more. Please check the change log on Enfold Overview. Good thing you didn’t upgrade WordPress to 3.9 because it will surely break the theme but again version 2.7 of the theme fix this incompatibility issue. It is absolutely necessary that you update the theme frequently to fix minor bugs, get hold of new theme features, element improvements, browser fixes etc, unfortunately, you waited to long to do this.

    Regarding the modifications, please create a change log or use a child theme next time. I’m sorry but it is impossible for us to trace back the changes you’ve made on the theme. Like I said on my previous post, the update might break some elements on the theme.

    Cheers!
    Ismael

    Hi!


    @grwebs
    : What do you mean by “next products”? Can you please give us a link to the actual page? A screenshot will help.

    Cheers!
    Ismael

    Hey!

    Thank you for the update.

    Please post the login details on this installation. We would like to check it. What is the current version of PHP? Please ask your host.

    Cheers!
    Ismael

    in reply to: Showing text if no posts found Magazine module #291391

    Hi!

    Thank you for the link.

    Alright. Please replace the this line of code:

    echo "My awesome message here";
    

    with this:

    echo "<div class='jobs-message'>No jobs available.</div>";
    

    Add this on Quick CSS or custom.css:

    div.jobs-message {
    position: absolute;
    bottom: 25px;
    }

    Regards,
    Ismael

    in reply to: read more link in portfolio grid #291388

    Hey Richard!

    Thank you for using the theme.

    Please edit config-templatebuilder > avia-shortcodes > portfolio.php, find this code on line 471:

    $output .= !empty($excerpt) ? "<div class='grid-entry-excerpt entry-content' ".avia_markup_helper(array('context'=>'entry_content','echo'=>false, 'id'=>$the_id, 'custom_markup'=>$custom_markup)).">".$excerpt."</div>" : '';
    

    Replace it with this:

    
    					$readmore = '<br /><a href="'.get_permalink($the_id).'" class="more-link">'.__('Read more','avia_framework').'<span class="more-link-arrow">  &rarr;</span></a></div>';
                        $output .= !empty($excerpt) ? "<div class='grid-entry-excerpt entry-content' ".avia_markup_helper(array('context'=>'entry_content','echo'=>false, 'id'=>$the_id, 'custom_markup'=>$custom_markup)).">".$excerpt.$readmore."</div>" : '';

    Best regards,
    Ismael

    in reply to: Showing text if no posts found Magazine module #291383

    Hi!

    Thank you for the info.

    Where do you like to place the message? Please give us a screenshot or the actual link to the page.

    Cheers!
    Ismael

    in reply to: Read More Tag #291378

    Hi simchippy!

    Thank you for using the theme!

    Please edit the page then edit the Blog Posts element. On Blog Content length setting, choose Excerpt with Read More Link.

    Cheers!
    Ismael

    in reply to: How can I widen blog text area? #291375

    Hi!

    Alright. Sorry about that. You also need to use this:

    #top .fullsize .template-blog .post .entry-content-wrapper {
    text-align: justify;
    max-width: 900px;
    margin: 0 auto;
    }

    Best regards,
    Ismael

    in reply to: WPML Language Selector Text Instead of Flag #291372

    Hi!

    Thank you for the update.

    Can you please provide us with the login details? We would like to check it. I doubt if it has anything to do with the php settings on your server but please do ask if possible. I tested Dude’s functions.php on my installation and it works fine.

    Best regards,
    Ismael

    in reply to: weird spacing in portfolio section #291370

    Hi!

    Glad you figured it out. If you still have questions, let us know.

    Regards,
    Ismael

    in reply to: Feature image adjust size on full page #291369

    Hey!

    Thank you for the info.

    Images on the post slider will inherit the size of its container so using a 120x120px thumbnail size will give you a distorted or stretched image if the size of the column is, let’s say 700px. Please use the first option on Preview Image Size setting if you want the post slider to automatically pick the thumbnail size base on the column width.

    Regards,
    Ismael

    in reply to: show submenu on click instant hover #291367

    Hi alfredscholten!

    Thank you for using the theme.

    Edit js > avia.js, find this code on line 1063:

    currentLink.bind('mouseenter', function()
    					{
    						sublist.stop().css({visibility:'visible'}).animate({opacity:1});
    					});

    Replace it with:

    currentLink.bind('click', function()
    					{
    						event.preventDefault()
    						sublist.stop().css({visibility:'visible'}).animate({opacity:1});
    					});

    Cheers!
    Ismael

    in reply to: Blog Preview image size #291361

    Hi!

    Glad it worked. If you still have questions, let us know. :)

    Best regards,
    Ismael

    Hi danwinckler!

    Thank you for using the theme!

    Have you tried using the Masonry or the Extra Large image size? These thumbnail sizes have crop parameter disabled. You can also use this plugin if you want to manually set the size of the thumbnail or disable the crop parameter: https://wordpress.org/plugins/simple-image-sizes/

    Best regards,
    Ismael

    Hey!

    Alright. If you want to add white border on the lightbox image, you can use this on Quick CSS or custom.css:

    img.mfp-img {
    border: 5px solid white;
    padding: 0px;
    margin: 40px 0px;
    }
    
    div.avia-popup .mfp-close {
    width: 40px;
    height: 40px;
    right: 0px;
    }
    
    .mfp-counter {
    position: absolute;
    top: 0;
    right: 20px;
    }

    Best regards,
    Ismael

    in reply to: Contact Subject #291355

    Hi!

    Thank you for the update.

    Add this on Quick CSS or custom.css to move the covering section downwards:

    @media only screen and (min-width: 480px) {
    .home div#after_layer_slider_1 {
    margin-bottom: 260px;
    }
    }

    Regards,
    Ismael

    in reply to: New Lightbox Issues #291354

    Hey abskevin!

    Thank you for using the theme!

    1.) What kind of videos are you trying to open on lightbox? I mean is it a youtube, vimeo video etc? This should open in lightbox by default, you just need to use the right URL. Please refe to this link: http://dimsemenov.com/plugins/magnific-popup/documentation.html#iframe_type

    2.) Try to remove the rel attribute. If you have a cache plugin, disable it then refresh the page a few times.

    Best regards,
    Ismael

    Hey!

    Thank you for using the theme!

    I’m not really sure how it got there but please update the theme to Enfold 2.9.1. Download the latest version from your themeforest account then update the theme via FTP. Please refer to this link for more info: http://kriesi.at/documentation/enfold/updating-your-theme-files/

    Cheers!
    Ismael

    in reply to: iframe within website #291043

    Hi Jonn!

    Thank you for using the theme!

    Have you tried using the code block? Add the iframe tag. Something like this:

    <iframe src="http://kriesi.at" width="100%" height="500"></iframe>
    

    Best regards,
    Ismael

    in reply to: Set Video Post Format to use Featured Image #291011

    Hi shreinmedia!

    Thank you for visiting the support forum!

    Please edit includes > loop-index.php, remove everything then replace it with this code: http://pastebin.com/eS219Y9y

    Regards,
    Ismael

    in reply to: Enfold – Gallery upload balooning in size #290994

    Hi!

    Looks like it is possible to filter the thumbnail sizes only when they are needed but it is a bit complicated so a freelance developer might come in handy. Refer to this link: http://wordpress.stackexchange.com/questions/57369/new-image-size-version-only-for-the-featured-image-file

    I haven’t tested this plugin and I’m not sure if this is of any help but you can try on a test server, maybe, just maybe it will solve your problem: http://wordpress.org/plugins/dynamic-image-resizer/

    Cheers!
    Ismael

    in reply to: Border below blog post #290980

    Hi aIVIis!

    Thank you for using the theme!

    You can add a border on the post-delimiter div right after each post. Use this on Quick CSS:

    div.post_delimiter {
    border-bottom: 1px solid gray;
    }

    Cheers!
    Ismael

    in reply to: Captions for EasySlider images #290974

    Hey Richard!

    Thank you for using the theme.

    You can add this on Quick CSS or custom.css to move the caption text under the slider image:

    div.avia-caption {
    position: absolute;
    bottom: -120px;
    }
    
    .avia-slideshow-inner {
    padding-bottom: 120px !important;
    }
    
    .avia-slideshow-dots {
    bottom: 120px;
    }

    Cheers!
    Ismael

    in reply to: How can I widen blog text area? #290964

    Hi!

    Thank you for the info.

    The code Devin suggested should increase the width of the entry content container. Do you mind if we take a look at the actual page where you want to apply this? Did you add this code?

    #top .fullsize .template-blog .post .entry-content-wrapper>* {
    max-width: 1040px;
    margin-left: auto;
    margin-right: auto;
    }

    Cheers!
    Ismael

Viewing 30 posts - 57,421 through 57,450 (of 67,477 total)