Forum Discussion
7 Replies
- ChayceDuncanQrew Captain
You can also separate your lines using <p> tags since they're block elements and will appear on their own lines like:
<p>DISCLAIMER**</p>
<p>note goes here</p>
The advantage is that you can style each individually to your hearts content such as making the Disclaimer bigger/bold/red etc like:
<p style='font-size: 20pt; color:red; font-weight:bold'>DISCLAIMER**</p>
<p>note goes here</p>
------------------------------
Chayce Duncan
------------------------------- VanessaAlexandeQrew Member
can you show me how to underline Disclaimer?
------------------------------
Vanessa Alexander
------------------------------- ChayceDuncanQrew Captain
Sure - you can either apply an underline style or add a border if you wanted to make it thicker or play with color as an example:
Strict underline:
<p style='text-decoration:underline'>DISCLAIMER</p>
Or with a border:
<p style='border-bottom: 1px solid black;'>DISCLAIMER</p>
------------------------------
Chayce Duncan
------------------------------
- VanessaAlexandeQrew Member
You're amazing. Thank you so much. This worked!
------------------------------
Vanessa Alexander
------------------------------