Link to home
Start Free TrialLog in
Avatar of Scott Baldridge
Scott Baldridge

asked on

Bootstrap show icon when mobile text when computer or tablet

Hello, I have a button where I want text displayed on larger screens:

 <button type="submit" class="btn btn-primary btn-sm" id="btnShowPubDate">Date</button>

I want it to be this when displayed on a small screen such as a phone.

  <button type="submit" class="btn btn-primary btn-sm" id="btnShowPubDate">
                    <span class="glyphicon glyphicon-time"></span>
   </button>

how do you accomplish that with bootstrap 3?
ASKER CERTIFIED SOLUTION
Avatar of Shaun Vermaak
Shaun Vermaak
Flag of Australia image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Scott Baldridge
Scott Baldridge

ASKER

Nice!