1. Like I said above using the footer widgets will make this possible. You can style the look and minimize the padding. Just add three text widgets and add each of your items to it. For example in footer column 1 add:
<p>© [2014] </p>
in footer column 2 add:
<div class="footernav clearfix">
<ul id="menu-menu2" class="footermenu">
<li class="menu-home"><a href="http://patkaitourism.com/wordpress/?page_id=99">HOME</a></li>
<li class="menu-about-us"><a href="http://patkaitourism.com/wordpress/?page_id=454">About Us</a></li>
<li class="menu-contact-us"><a href="http://patkaitourism.com/wordpress/?page_id=457">Contact Us</a></li>
</ul>
</div>
In footer column three add:
<div class="footernav clearfix">
<ul id="menu-menu2" class="footermenu">
<li class="menu-facebook"><a href="http://facebook.com"><i class='icon-2x icon-facebook '></i><span class='fa-hidden'>Facebook</span></a></li>
<li class="menu-youtube"><a href="http://youtube.com"><i class='icon-2x icon-youtube '></i><span class='fa-hidden'>YouTube</span></a></li>
<li class="menu-google"><a href="http://plus.google.com"><i class='icon-2x icon-google-plus '></i><span class='fa-hidden'>Google+</span></a></li>
<li class="menu-tumblr"><a href="http://tumblr.com"><i class='icon-2x icon-tumblr '></i><span class='fa-hidden'>Tumblr</span></a></li>
</ul>
</div>
Then let me know and I'll post the css to make that look good.
2. You added custom css that is throwing off your layout, you should not style framework tags.. remove:
.span6 {
width: 100%;
}
3. Just add this to your custom css:
.home .contentclass {
padding-top: 0px;
}
and remove the blank line above your slider shortcode.
Kadence Themes