Color Text
On the Tab, Webpage, Text Box, Owner Info, Can you Change to Red color Text?
Thanks....
It looks like you're new here. If you want to get involved, click one of these buttons!
On the Tab, Webpage, Text Box, Owner Info, Can you Change to Red color Text?
Thanks....
Comments
This what I tried.....
<p style="color:red;">US MEDIUM WAVE<br>BROADCAST PATTERNS MAP<br>[Day, Night & CRITICAL-HOURS]<br>GO TO: http://na5b.com/mw/
This don't work....
<p style="color:red;">US MEDIUM WAVE<br>BROADCAST PATTERNS MAP<br>[Day, Night & CRITICAL-HOURS]<br><p style="color:red;">GO TO: http://na5b.com/mw/
Anyone any ideas?
Thanks....
I tried the same on my kiwi, it works as expected and makes the text red.
BTW, the closing
</p>
tag is missing in your example.</p style="color:red;">US MEDIUM WAVE<br>BROADCAST PATTERNS MAP<br>[Day, Night & CRITICAL-HOURS]<br></p style="color:green;">GO TO: http://na5b.com/mw/
I did work without /p...
I can't change color to green.....
Don't use
</p>
...use
<p>
...</p>
OK.... How to change from red text to green text in the line of words?
Use
<span>
instead of<p>
and use
where you need to force a "non breaking space" (or use the margin and padding styles to get the spacing you want)How simple.... Thank you.....
This what I like..... for now....
<b><span style="color:red;">US MEDIUM WAVE<br>BROADCAST PATTERNS MAP</b><br>[<span style="color:blue;">Day</span>, <span style="color:black;">Night</span> & <span style="color:orange;">CRITICAL-HOURS</span>]<br><span style="color:green;">GO TO: http://na5b.com/mw/</span>
and works great!
Thanks.....