In this article I will show how to hide responsive footer in bootstrap mobile view. It is simple; you can create a div tag and apply the following Css footer code hidden-xs. Paste the footer coding inside the created div tag.
When you apply “hidden-xs” class; it will hide the elements on the extra small devices which having a screen width less than 768px. Visible on other device screen length greater than 768px.
HTML footer Code:
<div class="hidden-xs">
<footer>
<div class="content-wrapperfootr">
<ul style="float: right;">
<li><a href="/">Home</a></li>
<li><a href="Profile">Profile</a></li>
<li><a href="STK">Our Products</a></li>
<li><a href="Contact">Contact</a></li>
<p>© @DateTime.Now.Year - example.com</p>
</ul>
<a href="http://www.infinetsoft.com/">DESIGNED by infinetsoft</a>
</div>
</footer> </div>
Post your comments / questions
Recent Article
- How to fix CMOS Checksum Error in Computer or Laptop | SOLVED
- Reactivating windows after a Hardware change on PC or Laptop
- FIXED: Windows reported that the hardware of your device has changed. Error code :0xc004F211
- "redirect" is not defined pylance("reportUndefinedVariable)
- This action cannot be completed because the file is open in SQL Server(SQLEXPRESS) - FIXED
- Unicode error 'unicodeescape' codec can't decode bytes in position 2-3: truncated UXXXXXXXX escape
- Could not find the 'angular-devkit/build-angular:dev-server' builder's node package | Angular Error
- Error: error:0308010C:digital envelope routines::unsupported
Related Article