livemesh

Forum Replies Created

Viewing 15 posts - 16 through 30 (of 850 total)
  • Author
    Posts
  • in reply to: Revolution slider css #2861
    livemesh
    Keymaster

    Hi,

    Here is the css for the Revolution Slider caption styling.

    .tp-caption.big_white, .tp-caption.large_text, .tp-caption.medium_text2, .tp-caption.large_text2 {
    			position: absolute; 
    			color: #fff; 
    			text-shadow: none; 
      			font-family: "Raleway";
    			font-weight: 500; 		
    			margin: 0px; 
    			border-width: 0px; 
    			border-style: none;
    		}
    
    .tp-caption.big_white{
    			font-size: 60px; 
    			line-height: 60px;			
      			background: rgba(0,0,0,0.3);
    		}
    
    .tp-caption.medium_text{
    			font-size: 30px; 
    			line-height: 40px; 				  			
    		}
    
    
    					
    .tp-caption.large_text{
    			font-size: 48px; 
    			line-height: 64px; 
      			text-align: center;  			
    		}
    
    .tp-caption.medium_text2{
    			font-size: 36px; 
    			line-height: 48px; 
      			text-align: left;	
    
    		}
    .tp-caption.medium_text2 span, .tp-caption.medium_text span, .tp-caption.large_text span, .tp-caption.large_text2 span{
        		background: rgba(0,0,0,0.5);
      			padding: 0 10px;  
          }
    
    					
    .tp-caption.large_text2{
    			font-size: 48px; 
    			line-height: 64px; 
      			
    		}
    in reply to: Home menu link doesn't hover when scrolling back up single page #2858
    livemesh
    Keymaster
    This reply has been marked as private.
    in reply to: Menu underline not showing #2843
    livemesh
    Keymaster

    Cool. Thanks for letting me know. Helps others too if they come across this issue.

    in reply to: Disable primary menu for one-pager completely #2842
    livemesh
    Keymaster

    You can disable auto generated menu by unchecking the option “Single Page Site” under Single Page tab in theme options panel.

    And you can hide the mobile toggle button completely by inserting the following Custom CSS into Custom tab in options panel. Thanks –

    #mobile-menu-toggle {
    display: none !important;
    }
    
    in reply to: Is use of Cache Plugins recommended with AppDev? #2841
    livemesh
    Keymaster

    I do not see problem with using caching plugin with Appdev. The Extinct theme preview site (uses a similar framework) in fact is hosted on a cached server while due to some issue with style switcher(which should not concern buyers since it is used for demo preview site only), I could not enable the caching in time for Appdev.

    As far as minify is concerned, I cannot guarantee that things will work fine since I have had people report haphazard ordering of CSS files by the plugin when minifying making the priority of styles to change and hence the theme to take a different look and feel. Most JS files have been pushed to the footer and hence I am not sure it’s very beneficial to minify them other than reducing the number of HTTP requests. May be there are options in the Minify plugin to control the ordering of files included and if so, you can consider its use. Let me know if you find out something and need help.

    in reply to: Featured Image Upload doesn't appear on custom post type #2840
    livemesh
    Keymaster

    You will need to modify the line 476 of framework/framework.php file –

    add_theme_support('post-thumbnails', array('post', 'page', 'portfolio', 'showcase_slide'));
    

    to include the custom post type of this plugin. Since I do not have the source for this plugin, I am not sure what the custom post type is named as. The author of the plugin should be able to tell you or you can find out by checking for references to register_post_type() function in plugin code. Thanks.

    in reply to: Starting with the theme… #2828
    livemesh
    Keymaster

    Hi – thanks for your purchase. Sorry to hear you are having trouble. Looks like you are trying to replicate the demo site and want your installation to look like the theme preview site. Pls have a look at this video on how to do the same (includes revolution slider setup). It’s not difficult IMO and if you still have trouble, pls post a private message here with a login to your WP installation and I can help you out with the same. Thanks

    https://www.livemeshthemes.com/support/faqs/appdev-theme-how-to-setup-theme-and-revolution-slider-youtube-video/

    in reply to: Home menu link doesn't hover when scrolling back up single page #2825
    livemesh
    Keymaster

    If you need the same and want to give a try, let me know and I can send the same to you. Thanks!

    in reply to: Home menu link doesn't hover when scrolling back up single page #2824
    livemesh
    Keymaster

    I have fixed this issue. Will make this part of the next update – should be out next week. Thanks.

    in reply to: Primary Menu Hover Bug #2819
    livemesh
    Keymaster

    Thanks for pointing this out. I always saw current_page_ancestor on my pages and looks like that’s not always the case, as you point out. We actually need both of these classes to highlight right as discussed below –

    http://core.trac.wordpress.org/ticket/14701

    I modified the main.js file to accommodate the change suggested by you. Thanks for bringing this to my attention 🙂

    in reply to: YouTube Embed Too Big #2816
    livemesh
    Keymaster

    The ‘fluid-width-wrapper’ is required to make the video responsive. Without it, the layout will break and video will stay at it’s original embed size even on the phones. To constrain the width of the video, pls use column shortcodes as detailed here –

    https://www.livemeshthemes.com/appdev/column-shortcodes/

    This will help make the video full width in smaller size tablets, phablets and smartphones while constraining its size in desktop and bigger sized tablets like iPad.

    The source code for the column shortcodes page is part of sample data uploaded.

    in reply to: Portfolio Filter with category parent/children only #2811
    livemesh
    Keymaster
    This reply has been marked as private.
    in reply to: Portfolio Filter with category parent/children only #2810
    livemesh
    Keymaster

    Ok same issue with ordering based on the order attribute. I think I made this change as part of I removed all the code which does this from my codebase so that the next update does not use the order attribute anymore. If the earlier problem is fixed, the below change will fix the shortcode issue –

    Pls make the change in the file framework/presentation/layout-manager.php line number 384 to 394 –

                if (empty($post_type))
                    $loop = new WP_Query(array('ignore_sticky_posts' => 1, 'posts_per_page' => $post_count));
                elseif (empty($taxonamy) || empty($terms))
                    $loop = new WP_Query(array('post_type' => $post_type, 'posts_per_page' => $post_count));
                else
                    $loop = new WP_Query(array('post_type' => $post_type, 'posts_per_page' => $post_count,
                        'tax_query' => array(array(
                            'taxonomy' => $taxonamy,
                            'field' => 'slug',
                            'terms' => explode(',', $terms)
                        ))));
    
    in reply to: Menu underline not showing #2809
    livemesh
    Keymaster

    I checked your site on my iPad – the More link loads the dropdown but does not lead to the linked page. Which touch device were you testing this? Also, looks like the password was changed and hence I could not test this really. Can you insert # as the URL and see if it is any better? Thanks

    in reply to: Sticky Header #2808
    livemesh
    Keymaster
    This reply has been marked as private.
Viewing 15 posts - 16 through 30 (of 850 total)