Forum Replies Created

Viewing 30 posts - 61,501 through 61,530 (of 67,134 total)
  • Author
    Posts
  • in reply to: Editing Back to Top Button #210840

    Hey sbrohamm!

    Edit footer.php, find this code on line 168:

    
    <a href='#top' title='<?php _e('Scroll to top','avia_framework'); ?>' id='scroll-top-link' <?php echo av_icon_string( 'scrolltop' ); ?>></a>
    

    Replace it with:

    
    <a href='#top' title='<?php _e('Scroll to top','avia_framework'); ?>' id='scroll-top-link'>Back to top</a>
    

    Add this on Quick CSS:

    #scroll-top-link {
    height: 50px;
    width: 80px;
    font-size: 10px;
    }

    Best regards,
    Ismael

    in reply to: Recent Posts Widget Issue #210839

    Hey tmunz!

    Add this on Quick CSS:

    .image_size_widget .news-thumb img {
    width: 36px;
    max-height: 28px;
    }

    Best regards,
    Ismael

    in reply to: Enfold Layerslider not working #210824

    Hey!

    Since I don’t have access on the database, please try this one. Go to your Enfold database via cpanel > phpmyadmin. Look for the wp_layerslider table. Select all the slides then export it using XML format. Go to the new installation then import the wp_layerslider xml file. Make sure that all assets like images are in the proper folders and with the proper file name.

    Best regards,
    Ismael

    in reply to: Dropdownliste main menu #210810

    Hi!

    Can you please give us a link to the actual page? We would like to inspect the image. The code above should work for border radius but I guess the image on your page have different selectors. Please try this:

    img, a img {
    border-radius: 0 !important;
    }

    Cheers!
    Ismael

    in reply to: Multiple headings don't align with content in mobile view #210806

    Hey Vada!

    Place the Latest News element inside the 2/3 column where the Blog Posts element is, put it on top. Do the same thing with the Testimonial title. You can remove the column layouts where the titles are placed before.

    Cheers!
    Ismael

    in reply to: How do I add custom fonts to the Enfold theme? #210802

    Hi upperhand!

    You can easily add google fonts, please refer to this link: https://kriesi.at/support/topic/new-custom-font/

    If you have a custom font or your own .ttf or .otf file, please refer to this link: http://css-tricks.com/snippets/css/using-font-face/

    Best regards,
    Ismael

    Hey Anthony!

    You can add this on functions.php:

    add_filter('avf_title_args', 'avf_blog_title', 10, 2);
    function avf_blog_title($args, $id) {
    	$args['title'] = 'Blog Grid';
    	return $args;
    }
    

    Regards,
    Ismael

    in reply to: Enfold: EasySlider – two questions #210788

    Hey!

    Have you tried this on Quick CSS?

    .avia_textblock,
    .avia-icon-list,
    .avia-button,
    .avia-testimonial,
    .iconbox,
    .avia_message_box,
    .avia-team-member,
    .widget,
    .post,
    .team-img-container img,
    .team-social,
    .iconlist_icon,
    .fallback-post-type-icon,
    .fullsize .related_posts,		
    .grid-image,				
    .avia-caption-content, .avia-caption-title, 
    .entry-content-wrapper,	
    .avia_start_animation
    {
    	-webkit-perspective: 1000;
    	-webkit-backface-visibility: hidden;
    }

    Best regards,
    Ismael

    in reply to: Problems adding a custom logo #210786

    Hey!

    Please add this on the Quick CSS:

    .logo a {
    max-height: none !important;
    }

    Best regards,
    Ismael

    in reply to: Which file for easy slider #210652

    Hey Stefanovic!

    You can extract the theme files then update the js folder. Let us know if it fix the issues.

    Regards,
    Ismael

    in reply to: Navigation and Logo won't play nice… #210650

    Hey!

    Glad it worked. :)

    Cheers!
    Ismael

    in reply to: Windows problem? #210649

    Hi!

    Did you modify anything on the theme files? Please download the theme again on your themeforest account then update it via FTP. Watch this video by Devin: http://vimeo.com/channels/aviathemes/67209750

    Cheers!
    Ismael

    in reply to: Customize Search Results Page #210648

    Hi!

    Please locate the same line of codes then replace it with:

    the_excerpt();

    It should automatically pull the excerpt. Remove browser cache then reload the page or test it on another browser.

    Best regards,
    Ismael

    in reply to: admin.php?page=avia is not displayed as usual #210645

    Hey pako69!

    Please download the theme again on your themeforest account then update your installation via FTP. Watch this video by Devin: http://vimeo.com/channels/aviathemes/67209750

    Cheers!
    Ismael

    in reply to: Dropdown Menu not displaying in tablets (portrait) #210631

    Hey!

    Add this on Quick CSS or custom.css to display the mobile menu on iPad:

    @media only screen and (max-width: 989px) and (min-width: 768px) {
    .responsive .mobile_menu_tablet .main_menu {
    display: block;
    }
    }

    Cheers!
    Ismael

    in reply to: Menu text became plain instead of strong #210628

    Hi!

    Add this on Quick CSS:

    .main_menu ul:first-child > li > a {
    font-weight: bold;
    }

    Regards,
    Ismael

    in reply to: Navigation and Logo won't play nice… #210585

    Hey!

    This will get you started with the main menu. You can use media queries to adjust the position of the menu items on different screen sizes:

    .main_menu {
    left: 0;
    }
    
    #top .main_menu .menu li {
    position: absolute !important;
    }
    
    #menu-item-71 {
    left: 0;
    }
    
    #menu-item-72 {
    left: 100px;
    }
    
    #menu-item-73 {
    right: 100px;
    }
    
    #menu-item-74 {
    right: 0;
    }

    You can go to Enfold > Styling then specify a background image. You can also use this plugin: http://wordpress.org/plugins/wp-backgrounds-lite/

    Regards,
    Ismael

    in reply to: Portfolio and Mosaic picture issues #210581

    Hey!

    Please try to enclose or place the Easy Slider element inside a column. The slider will automatically inherit the size of the container. This will make the slider looks bad if you’re using small images.

    Regards,
    Ismael

    in reply to: Bullet Points in Product Description, How Do I add them? #210580

    Hi!

    There are bullet points on the tabs. Please remove browser cache then reload the page a few times:

    Best regards,
    Ismael

    in reply to: Loosing floating buttons when using my own template #210579

    Hey!

    Please post the login details here. We would like to inspect it. Set it as a private reply.

    Cheers!
    Ismael

    in reply to: Hook the socket #210577

    Hey Voilaah!

    Edit footer.php, find this container:

    <footer class='container_wrap socket_color' id='socket' <?php avia_markup_helper(array('context' => 'footer')); ?>>

    Cheers!
    Ismael

    in reply to: Enfold Microsite Menu Problem #210572

    Hi atteam!

    I’m sorry but you’re not using the Enfold theme.

    Regards,
    Ismael

    in reply to: Icon Animation Not Working In Footer… #210570

    Hey!

    I checked the site, the homepage to be exact, using Firefox 26.0 Windows 8 and the icon animation on the footer works fine. :)

    Best regards,
    Ismael

    in reply to: Customize Search Results Page #210568

    Hi!

    You can edit includes > loop-search.php, find this code on line 88:

     
    $excerpt = trim(get_the_excerpt());
                    if(!empty($excerpt))
                    {
                        the_excerpt();
                    }
                    else
                    {
                        $excerpt = strip_shortcodes( get_the_content() );
                        $excerpt = apply_filters('the_excerpt', $excerpt);
                        $excerpt = str_replace(']]>', ']]>', $excerpt);
                        echo $excerpt;
                    }
    

    Replace it with:

    
    $excerpt = trim(the_excerpt());
                    if(!empty($excerpt))
                    {
                        the_excerpt();
                    }
                    else
                    {
                        $excerpt = strip_shortcodes( get_the_content() );
                        $excerpt = apply_filters('the_excerpt', $excerpt);
                        $excerpt = str_replace(']]>', ']]>', $excerpt);
                        echo $excerpt;
                    }
    

    Best regards,
    Ismael

    in reply to: comments in page and order #210566

    Hi!

    Did you add the comments shortcode on the tab element? I’m sorry but I think it will cause some issues. You need to place the comment elements outside the tab element.

    Cheers!
    Ismael

    in reply to: Dropdownliste main menu #210564

    Hi!

    What do you mean by “stale”? On the screenshot, are you referring to the edge or the border radius of the images? You can add this on the Quick CSS:

    .small-preview img, .big-preview img {
    border-radius: 0;
    }

    Cheers!
    Ismael

    in reply to: Enfold Showcase #210556

    Hi!


    @JPOsteen
    : Nice website! I like the logo. :)

    Cheers!
    Ismael

    in reply to: Why the max logo size is not used ? #210555

    Hey pako69!

    You can add this on Quick CSS to define the height of the header and the logo will automatically resize:

    /*default header: main logo and main menu height. increase max value if you want to use a bigger logo*/
    #header_main .container, .main_menu ul:first-child > li a{ height:156px; line-height: 156px; }

    Regards,
    Ismael

    in reply to: Icon Animation Not Working In Footer… #210552

    Hi JPOsteen!

    Please post the link to your website here.

    Regards,
    Ismael

    in reply to: comments in page and order #210551

    Hey dewasurya!

    Can you please give us a link to the page with the comments section?

    Edit includes > comments.php, find this code on line 83 to change the order of the comments:

    
    //get comments
    $comment_entries = get_comments(array( 'type'=> 'comment', 'post_id' => $post->ID ));
    

    Replace it with:

    
    //get comments
    $comment_entries = get_comments(array( 'type'=> 'comment', 'post_id' => $post->ID, 'order' => 'ASC'));
    

    Regards,
    Ismael

Viewing 30 posts - 61,501 through 61,530 (of 67,134 total)