Using this reference, and the red alert option. Here it is:
<div class="alert alert-dismissible alert-danger">
<button type="button" class="close" data-dismiss="alert">×</button>
<strong>Oh snap!</strong> <a href="#" class="alert-link">Change a few things up</a> and try submitting again.
</div>
In their example, there is a line break after try.. is that just because of width?
My version:
<div class="alert alert-dismissable alert-danger" style="float:right;">
<button type="button" class="close" data-dissmiss="alert">×</button>
<strong>Leave blank if there is already a Record for today! This will auto-calculate based on the previous Record.</strong>
</div>
Now mine doesn't have any line break but I also haven't messed with the CSS.. but I was wondering if there was a way to put a line break within the <strong>
inline? I tried using this, but I guess that is strictly for <textarea>
's.
Any help is appreciated.
? – Lucas Watson May 23 '16 at 19:11
wasn't rendering as an html tag.. it was just being inserted as part of the but now it is working.. thank you – Grizzly May 23 '16 at 19:13