If we have single gravity form in our one page then their is not any type of index problem. So if we navigate through our fields then the cursor will go in that sequence in which it should go. But In case when you have multiple Forms on One page then you can face the problem of Tab in gravity form. But it has very simple solution to resolve this problem. You have to use tabindex in gravity form short code it will resolve your problem.
<?php echo do_shortcode(‘[gravityform id=”2″ title=false ajax=true tabindex=50]’); ?>
It means that this form Index will start from 50. How to remove title from gravity form? it is very simple just use title=false as i have used above. If You want to use Ajax in You gravity form just use ajax=true in short code.