I have this text:
How can I move the "advisor" bit to the middle of the top two words instead of to the left like that.
Code (ignoring margin-left):
margin-left
<h6 style="margin-left: 795px;">Connect with <br>Consultants</h6>
You can use this
text-align: center;
Using CSS Text Alignment
Text Alignment
<h6 style="text-align:center">Connect with<br>Consultants</h6>
You can use this
Using CSS
Text Alignment