How do I make only one "word2" of the widget title bold or of red color?
Or how do I split Blogspot widget title in two or three inline parts? And then separately style its parts.
in CSS I got:
<b:widget id='Profile1' locked='false' title='word1 word2 word3' type='Profile' version='1' visible='true'>
All my multiple attempts produced errors, coz I am not a PRO
Blogger only allows adding the following HTML tags in the Title field of a widget -
In your case, when editing the title of your widget, change it to -
Changing the color and other properties cannot be directly done. You will instead need to use the above HTML tags and CSS to achieve that
Like for example -
You want
word2
to be bold and with red color, then you will first need to modify the title toand then also add the following CSS
If you only want the
word2
to have the color red, without being bold, then modify the title toand then add the following CSS
If you want the
word1
to have bold font & color blue and theword3
to have the color green, then modify the title toand then add the following CSS
The CSS selector will change according to the
id
of the widget.