livemesh

Forum Replies Created

Viewing 15 posts - 46 through 60 (of 850 total)
  • Author
    Posts
  • in reply to: Menu underline not showing #2762
    livemesh
    Keymaster

    I inserted the following Custom CSS into Custom CSS tab in theme options panel –

    @media only screen and (max-width: 767px) {
    #header > .inner { text-align: left;}
    #header #site-logo { margin: 0;}
    #header #site-logo { width: 220px;}
    }
    

    to make the logo align left instead of center for mobile. Pls adjust as per your preference. Thanks.

    in reply to: Menu underline not showing #2760
    livemesh
    Keymaster

    I fixed the issue by specifying an URL for the More menu item with displays a dropdown. The current implementation of the menu requires that you provide a URL for every menu item. Since the More menu link had a blank URL, there was a JS error which lead to this issue.

    in reply to: Home page replication and Layout problem #2759
    livemesh
    Keymaster

    I still do not see these as issues, we are constrained to a 1140px grid (which is actually good considering the fact that most sites and themes use a 960px grid). May be slight improvement here and there but overall I do not see a problem. One example is that you may want to move the menu to the right like this –

    #primary-menu {
    float: right;
    }
    

    As far as slider is concerned, you can use the admin panel for the revolution slider to place the text wherever you want. I am sorry if I still miss something here – things at least look similar to the preview site.

    in reply to: Can Contact Form shortcode edit messages? #2758
    livemesh
    Keymaster

    It is possible to create a decent enough layout with Contact Form 7 with a simple markup like this inserted into Contact Form 7 form builder. And I did not use much of the built options within CF7 to achieve this.

    Your Name (required)
    [text* your-name]

    Your Email (required)
    [email* your-email]

    Your Favorite (required)
    [radio radio-479 "Dark" "Blue" "Pink"]

    Your Phone (required)
    [tel tel-634]

    Upload File (required)
    [file file-423]

    Choose Something (required)
    [select menu-675 "third" "fourth" "Now"]

    Subject
    [text your-subject]

    Your Message
    [textarea your-message]

    [submit "Send"]

    in reply to: Menu underline not showing #2752
    livemesh
    Keymaster

    In most cases, this is due to Javascript errors. Currently the site is down or probably the URL provided by you is incorrect. Pls check the site once. A temporary login to the site may speed up the resolution. You may post the login as a private reply here. Thanks.

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

    Probably there are errors which are preventing the layers function from working. Will need to check your installation. Pls reply as a private message here with the site URL and a temporary login to the WordPress dashboard and I can take a look. Will have the data imported for you. Thanks

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

    Can you pls reply as a private message here with the site URL and a temporary login to the WordPress dashboard and I can take a look. Will require that I check the Revolution Slider admin settings. Thanks

    in reply to: Can Contact Form shortcode edit messages? #2749
    livemesh
    Keymaster

    Yes, it does look like at present, editing either the framework.php file or the main.js file at line number 341 are the only possibilities.

    Which layout and style are you missing in Contact Form 7? If you are a bit specific, I can see if we can do something about it. Thanks.

    in reply to: Portfolio Filter with category parent/children only #2746
    livemesh
    Keymaster

    Regarding the warning, it occurs when there is no portfolio category specified for an item. Will take care of this in the next update. For now, I have set the portfolio category for the two items and you should not see the warning. Thanks.

    in reply to: Portfolio Filter with category parent/children only #2744
    livemesh
    Keymaster

    Regarding the ordering, my mistake saying the order is preserved based on date and time – I implemented a change for a buyer who wanted to control the order of the items and made the change this change in the file utility-functions.php at line number 450 –

    From

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

    to

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

    This will help order the portfolio items by specifying the the order in which the items need to be shown. My assumption was that WP would sort automatically based on date if the order was zero but looks like it does not, at least not in all situations. So, if you want to, you can reverse this change OR better, specify the order in the portfolio edit window like this –

    https://www.evernote.com/shard/s350/sh/cbb86d51-1016-4a11-9d79-850f19fe71c1/e123a54d7fdf677523a62a7147a204cb

    Have made some changes to your portfolio items towards the order and things are working as expected. Thanks

    in reply to: CTA box rendering red on IE #2743
    livemesh
    Keymaster

    Can you please reply as a private message here with the page URL and IE version so that I can help resolve this? Thanks

    in reply to: Sticky Header #2741
    livemesh
    Keymaster

    Sorry this took some time. At times the problem would fix itself and it was hard to reproduce it. The problem is due to the height of 75px that has been specified for the header under Backgrounds tab in theme options panel(look for option “Height of Header”). Pls remove the same, leave it blank and insert the following CSS into Custom CSS tab in theme options panel and see if the problem goes away. Thanks –

    @media only screen and (min-width: 767px) {
    #header.sticky .wrap { height: 75px !important;}
    }
    

    If the problem persists, pls provide the required permissions for the user id you sent earlier so that I can edit the theme options. Thanks

    in reply to: Home page replication and Layout problem #2740
    livemesh
    Keymaster

    Can you send me a screenshot of the blank spaces you see (highlight the space so that I know exactly which area you are referring to)? I did not see anything odd other than ones I already fixed. Thanks.

    in reply to: Home page replication and Layout problem #2727
    livemesh
    Keymaster

    I fixed a few issues like spacing and margins. Pls check in the Custom CSS tab.

    Also, the use of URL with permalink /en is making WordPress or some language plugin installed to assume that this is the same as home page and hence is populating the content of home page itself. I changed the permalink URL to /eng made it to behave as expected and I am now able to compose the single page with page sections as shown in the below video –

    http://www.youtube.com/watch?v=W-YcdJfg14k

    in reply to: Home page replication and Layout problem #2725
    livemesh
    Keymaster

    Also, I have uploaded a new video for the Appdev setup that may be of interest to you –

    https://www.youtube.com/watch?v=26eeNU97mxY

Viewing 15 posts - 46 through 60 (of 850 total)