Forum replies created

    Alok Maheshwari
    Spectator
    Posts: 303
    October 29, 2014 at 10:00 pm #13379

    Try commenting out the following code in js/main.js file.

    /* Video overlapping fix */

    jQuery(document).ready(function(){
    jQuery('iframe').each(function(){
    var url = jQuery(this).attr("src");
    if(url.indexOf("?")>0){
    jQuery(this).attr("src",url+"&wmode=transparent")
    }else{
    jQuery(this).attr("src",url+"?wmode=transparent")
    }
    });

    });

    Alok Maheshwari
    Spectator
    Posts: 303
    October 29, 2014 at 9:32 pm #13377

    Try

    .carousel-inner .item img {
    margin:auto;

    }

    Alok Maheshwari
    Spectator
    Posts: 303
    October 29, 2014 at 9:24 pm #13376

    I am not clear about the issue. Can you please provide the site url?

    Alok Maheshwari
    Spectator
    Posts: 303
    October 29, 2014 at 6:27 pm #13373

    Please pm me the site wp and ftp login details and I will check out what is the issue.

    Alok Maheshwari
    Spectator
    Posts: 303
    October 29, 2014 at 6:23 pm #13372

    Can you please provide more details as to what is exactly not working so that we can check it out.

    Alok Maheshwari
    Spectator
    Posts: 303
    October 27, 2014 at 6:43 pm #13353

    PM me the site login details and I will do the needful.

    Alok Maheshwari
    Spectator
    Posts: 303
    October 11, 2014 at 7:37 am #13221

    Good to know that. Can you please tell how you fixed it so that I can make a note of it.

    Alok Maheshwari
    Spectator
    Posts: 303
    October 11, 2014 at 7:28 am #13220

    Please pm me the wp login details.

    Alok Maheshwari
    Spectator
    Posts: 303
    October 10, 2014 at 7:14 am #13212

    Putting a “#” on a menu link which isn’t supposed to be a link is a standard practice and I would suggest that you retain that. Moreover the menu is dynamically generated so you cannot edit it easily.

    What we can do is apply a css so that the mouse pointer changes so that it doesn’t look clickable. You need to apply a class called nonclickable to the top menu items. You may need to enable “CSS Classes” in the “Screen Options” visible at the top right on admin section for the option to appear.  After that you need to add the following style in custom css.

     

    .nonclickable a
    {

    cursor: default;
    }
    .nonclickable ul a
    {

    cursor: pointer;
    }

    Alok Maheshwari
    Spectator
    Posts: 303
    October 9, 2014 at 9:45 pm #13211

    What is your site url?