Personal Development for Smart People Forums

Personal Development for Smart PeopleTM Forums

 

Go Back   Personal Development for Smart People Forums > Personal Development > Technology & Technical Skills

Notices

Technology & Technical Skills Computer skills, hardware, software, internet topics, gadgets, programming

Reply
 
Thread Tools Display Modes
Old 08-21-2011, 11:12 AM   #1 (permalink)
Senior Member
 
Join Date: Mar 2011
Location: USA
Posts: 412
Sandstone has a spectacular aura aboutSandstone has a spectacular aura aboutSandstone has a spectacular aura about
Default HTML Help - How to change text color?

Nevermind. I got it.

Last edited by Sandstone; 08-21-2011 at 04:43 PM.
Sandstone is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 08-21-2011, 07:00 PM   #2 (permalink)
Senior Member
 
Join Date: Apr 2011
Location: Here & Now
Posts: 119
glow is a jewel in the roughglow is a jewel in the roughglow is a jewel in the roughglow is a jewel in the rough
Default

I hope your solution didn't involve font tags. It has been deprecated.
glow is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 08-21-2011, 08:30 PM   #3 (permalink)
Family Member
 
Join Date: Nov 2006
Location: Somewhere in time...
Posts: 2,213
Lil Chris is a splendid one to beholdLil Chris is a splendid one to beholdLil Chris is a splendid one to beholdLil Chris is a splendid one to beholdLil Chris is a splendid one to beholdLil Chris is a splendid one to beholdLil Chris is a splendid one to beholdLil Chris is a splendid one to behold
Default

Quote:
Originally Posted by glow View Post
I hope your solution didn't involve font tags. It has been deprecated.
Do you have any more info about that? What's the new solution?
Lil Chris is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 08-22-2011, 08:15 PM   #4 (permalink)
Member
 
Join Date: May 2009
Posts: 34
poika is on a distinguished road
Default

Quote:
Originally Posted by Lil Chris View Post
Do you have any more info about that? What's the new solution?
the new (not really new anymore?) solution is to style the text using CSS (CSS - Text Properties)

if you want to change the color for blocks of text, set the 'color' property for tags like body, div or p. if you want to change the color just for a few words, wrap them with a span tag and set its color.

Last edited by poika; 08-22-2011 at 08:18 PM.
poika is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 08-22-2011, 10:20 PM   #5 (permalink)
Senior Member
 
Join Date: Mar 2010
Posts: 212
Artelus has a spectacular aura aboutArtelus has a spectacular aura about
Default

On the css part:
.textarea {
color: red;
}

On the html part:
<p class="textarea">Hello world!</p>
Artelus is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 09-07-2011, 09:19 AM   #6 (permalink)
Junior Member
 
Join Date: Sep 2011
Posts: 11
kevinjones is on a distinguished road
Default

You can change color of a text by its attribute. This code will go in the body of your website.

<FONT COLOR="#0000FF"> Blue</FONT>
kevinjones is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 09-07-2011, 10:20 AM   #7 (permalink)
Member
 
Join Date: May 2009
Posts: 34
poika is on a distinguished road
Default

Quote:
Originally Posted by kevinjones View Post
You can change color of a text by its attribute. This code will go in the body of your website.

<FONT COLOR="#0000FF"> Blue</FONT>
have you read what glow wrote in the first reply? font tags are deprecated and NOT to be used anymore.
poika is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 09-14-2011, 08:24 AM   #8 (permalink)
Senior Member
 
Join Date: Nov 2010
Location: Oakland, CA
Posts: 119
GrigoriySidelnikov is on a distinguished road
Default

Quote:
Originally Posted by poika View Post
have you read what glow wrote in the first reply? font tags are deprecated and NOT to be used anymore.
That may be true but:

1) It will still work, even if it's deprecated.

2) It will not make a difference on anything important. It will not decrease the number of sales a website makes. It will not reduce traffic to the website. In other words, it is irrelevant.
GrigoriySidelnikov is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 09-18-2011, 08:46 PM   #9 (permalink)
Senior Member
 
Join Date: Apr 2011
Location: Here & Now
Posts: 119
glow is a jewel in the roughglow is a jewel in the roughglow is a jewel in the roughglow is a jewel in the rough
Default

Quote:
Originally Posted by GrigoriySidelnikov View Post
That may be true but:

1) It will still work, even if it's deprecated.

2) It will not make a difference on anything important. It will not decrease the number of sales a website makes. It will not reduce traffic to the website. In other words, it is irrelevant.
Actually that's not true at all.

1) It still works because browsers have got to support older websites.

2) And it will make pretty big differnce on everything that's important. Imagine trying to use font tag to modify all the fonts on this page. It will increase the execution time many fold. And imagine if you want to change the color of headings of your website on a later date. Using CSS, changing a single line of code is enough! Imagine changing font tags on 500 different pages! So execution time is going to sky rocket!

Moreover, more code means more loading time. More loading times means users are more likely to leave. And it also means lower ranking on search engines. So that's definitely going to affect the traffic.
And search engines bettter understand correct HTML, so why not use that?

Correct & standard HTML is more accesible, then bad HTML. More devices can understand it then bad HTML.

And browsers will evetually drop support for tags like font. So why not future-proof your website by using easier to use standards!

Those are some of the important reasons not to go for font tags.

If you're going to design a website that only five people in the world are going to see, then it doesn't really matter what you use. But if your website is going to matter, then stick with the standards.
glow is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 09-23-2011, 02:40 AM   #10 (permalink)
Senior Member
 
Join Date: Mar 2010
Posts: 212
Artelus has a spectacular aura aboutArtelus has a spectacular aura about
Default

Quote:
Originally Posted by GrigoriySidelnikov View Post
That may be true but:

1) It will still work, even if it's deprecated.

2) It will not make a difference on anything important. It will not decrease the number of sales a website makes. It will not reduce traffic to the website. In other words, it is irrelevant.
Windows ME still works, and using it won't do any harm... but do you still want to?

It's outdated, and isn't supported anymore. Just like old operating systems, in the future new browsers will stop supporting these tags all together. There is no reason not to use CSS.

It's like arguing for using Windows ME under the pretense that "it still works."
Artelus is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Room Color Change? Dynamist Psychic & Paranormal 9 03-15-2011 11:57 PM
Including a logo as part of text in HTML CoolBee Technology & Technical Skills 4 09-07-2010 10:02 PM
plain text or html email reapwhatyousow Business & Financial 4 08-09-2010 07:56 PM
Physical Change- Eye Color JKrump Intention-Manifestation 18 07-15-2008 05:46 AM


All times are GMT. The time now is 01:24 PM.


Powered by vBulletin® Version 3.8.2
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.1.0
Copyright © 2010 by Pavlina LLC