livemesh

Forum Replies Created

Viewing 15 posts - 31 through 45 (of 850 total)
  • Author
    Posts
  • in reply to: Hiding page sections on Mobile #2806
    livemesh
    Keymaster

    To hide the entire section, pls use the following Custom CSS. Thanks –

    @media only screen and (max-width: 767px) {
    	#features { display: none; }
    }
    

    and to retain part of it and hide the image only –

    @media only screen and (max-width: 767px) {
    	#featured-app .fivecol.no-margin { width: 100%; }
    
    	#featured-app .sevencol { display: none; }
    }
    
    in reply to: Home page replication and Layout problem #2803
    livemesh
    Keymaster
    This reply has been marked as private.
    in reply to: CTA box rendering red on IE #2800
    livemesh
    Keymaster

    Ok looks like the problem is we have a red background color defined on the CTA box in /custom/custom.css file. You can either modify the file itself looking for the below markup and changing the background color or just insert the below CSS into Custom CSS tab in the options panel to fix this. Thanks –

    .smallCallToActionRight .box-frame {
    padding: 7px;
    background-color: #EEE !important;
    }
    

    BTW, really clean site. Very well done.

    in reply to: primary menu & error in footer #2799
    livemesh
    Keymaster

    I could not take a look at the screenshot since the upload failed due to large size of the image but did look at the site and I guess you are referring to the slides moving to the left on big screens with resolution bigger than width 1920px. Here is the custom CSS to fix it –

    #slider-area .flexslider .slides img { width: 100%;}
    
    in reply to: Two tab groups on same page #2798
    livemesh
    Keymaster

    Yes, it is safe to update to 3.7.1 version and you should have no issues. Thanks!

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

    So are you saying that changing the code in utility-functions.php at line number 450 to –

        $query_args = array('post_type' => 'portfolio', 'posts_per_page' => $args['posts_per_page'], 'filterable' => $args['filterable'], 'paged' => $paged);
    

    did not fix the issue? I could try it here but I cannot reproduce the ordering issue somehow on any of my installations when the above code is in place (all themes of mine except Extinct have the above code and hence I can revert back to the old one for Extinct too if custom order is no big benefit for most). And again, have not had anyone report it so far honestly.

    in reply to: How to setup Enigmatic theme and Revolution Slider in 10 min #2781
    livemesh
    Keymaster
    in reply to: CTA box rendering red on IE #2780
    livemesh
    Keymaster
    This reply has been marked as private.
    livemesh
    Keymaster

    Frank,

    Thanks for bringing this to my notice. This can be fixed is my guess – when the scrollbar reaches top, I can just highlight the menu item for the current page. I have noted this down as one of my todo items and probably will have a fix soon. Will let you know. Thanks again.

    in reply to: Two tab groups on same page #2778
    livemesh
    Keymaster

    Sorry it’s been a long wait for you. Here is what works for me when you have multiple tabs in a page ( learnt it today since I did not have anyone raise this issue so far ) –

    Wrap the [tabgroup] shortcode with a div and you should see the right behavior. Hence, I went ahead and edited your page to wrap the two tabgroups with a extra div each like this –

    [tabgroup] .... [/tabgroup]
    [tabgroup] .... [/tabgroup]

    That id on the div is not really required (you can use a common class as well) but I just put it there to separate out the two tabs. Both tabs should be functional now on your site. Pls check and get back to me if you have any queries. Thanks

    in reply to: Importing and Layer Functionality Issue – Revolution Slider #2776
    livemesh
    Keymaster

    Sean,

    I checked your installation and you have an error which says the file

    http://yourdomain.com/ajax/libs/jqueryui/1.10.3/jquery-ui.min.js

    is missing. Looks like some code is making the rev slider to load this file from your server instead of the default behavior of Revolution slider to load it from

    https://ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/jquery-ui.min.js

    I see now that a plugin named “Root Relative URLs” is making this change, deactivated it and now revolution slider issue is resolved. You can now see and edit the layers. Thanks

    in reply to: Color & Portfolio Link Icon #2773
    livemesh
    Keymaster
    This reply has been marked as private.
    in reply to: Home page replication and Layout problem #2771
    livemesh
    Keymaster

    I have implemented a mechanism of setting a custom menu defined in WP admin for additional one page templates since the current implementation just creates a auto-built menu for additional pages which use “single page site” templates. This change just needs a slight polish in terms of how to treat the home page and single pages which are not home pages. I will post a private message with the files in next few hours which will let you choose a custom menu for a page. That change will be part of next update to the theme. Thanks.

    in reply to: Revolution slide changes height when set to full screen #2770
    livemesh
    Keymaster

    Looks like you have resolved the issue. Let me know if you have any further questions. Thanks!

Viewing 15 posts - 31 through 45 (of 850 total)