Archived topic
changing font styles of some texts in a post
1 reply · Started by Whelen Troy on August 5, 2017
Hi,
I would like to change font styles of some texts in a post. I believe I can do this just by putting some code, stating that it should use a certain font style in these texts.
I tried searching you forum and the Google world, but was unlucky.
Can you help me with this?
Here's what I specifically want to do:
I am using sections in creating my home page. I made a section for a message that I wanted to tell my audience. In that section, I wanted to change the font style of the texts of my message.
What should I do?
Thanks!
You can wrap your text in an element:
<div class="my-custom-text">Your text in here</div>
Then style it:
.my-custom-text {
color: red;
font-weight: bold;
}