Hi
In Pages in the Content box I am adding text and making it bold, but the bolding doesnt show in the live site.
What custom code can I add to the Custom CSS in the Theme editor to fix this.
Thanks
Hi
In Pages in the Content box I am adding text and making it bold, but the bolding doesnt show in the live site.
What custom code can I add to the Custom CSS in the Theme editor to fix this.
Thanks
When you want to add bold you can use:
**your bold text**
HTML strong tag: The strong tag is one of the element of HTML used in formatting HTML texts. It is used to show importance of the text by making it bold or highlighting it semantically.
Syntax:
<strong> Contents... </strong>
HTML bold tag: The bold tag or is also one of the formatting elements of HTML. The text written under tag makes the text bold presentationally to draw attention.
Thanks
Ahir
the text has tags …but it is not presenting as bold
Im adding Bold in the WYSIWYG editor… but that tags and strong isnt presenting as bold.
I dont want to have to hand code every instance of bold in a CSS environment… ![]()
Hello @Batch8888
Example: you can add like this-
.bolded-font { font-weight: bold; }
if it is not working as you want, please share your store URL.
Might be some css conflict. share the url for better idea
thanks this is the page where the text isnt appearing bolded. https://kai2you.co.nz/pages/faqs-1
All the questions should be bolded eg "How often do your menus change?"
hmm interesting… I just copied that text from the web page and pasted it. It pasted here as bold !
thanks this is the page where the text isnt appearing bolded. https://kai2you.co.nz/pages/faqs-1
All the questions should be bolded eg "How often do your menus change?"
hmm interesting… I just copied that text from the web page and pasted it. It pasted here as bold !
It is bolded compared to your other fonts.
If you can’t see it with the naked eye, then you’ll have to switch your font file.
b,
strong {
font-weight: 900;
color: #000;
}
OR
b,
strong {
font-weight: bold;
color: #000;
}
Your theme haven’t default css for strong and b tag so please add css.
thanks… I added that in the Custom CSS on the Theme and that worked nicely.
very much appreciate your input.