Changing Text Font and Color in HTML Editor

Welcome to TemplateShop.be Help Center
About Web Design Templates
What Is A Web Design Template?
Templates Usage Advantages
Obtaining Template of Your Choice
Which type of the template is the best for me and what's the difference?
Purchasing Our Products
Payment Interface and Terms of Purchase
Methods of Payment
Solving Download Problems
Software Requirements
Logo Template Software Requirements
Regular Template Software Requirements
Full Site Template Software Requirements
Flash Animated Template Software Requirements
Flash Intro Template Software Requirements
Flash Site Software Requirements
Full Package Template Software Requirements
PHP-Nuke Theme Template Software Requirements
Fireworks Template Software Requirements
3 Color Template Software Requirements
Links to Required Software on Web
What's inside?
Logo Template Structure
Regular Template Structure
Full Site Template Structure
Flash Animated Template Structure
Flash Intro Template Structure
Flash Site Template Structure
Full Package Template Structure
PHP-Nuke Theme Template Structure
Fireworks Template Structure
3 Color Template Structure
Managing Your Web Design Template Quick Guide
Unzipping Template Package
Installing Fonts
How to Customize Your Template
Creating Subpages
Uploading Files to Your Web Hosting
Installing PHP-Nuke Theme
Working with template using HTML editor
Opening HTML File
Changing Text in HTML Editor
Changing Text Font and Color in HTML Editor
Setting Links in HTML Editor
Adding Images with HTML Editor
Customization of your template in Adobe Photoshop
Opening PSD File
Changing Text in Adobe Photoshop
Changing Images in Adobe Photoshop
Changing Image Colors in Adobe Photoshop
Update Changes to Your Template
Working with Flash
Opening Your FLA File
Changing Text in Flash
Assigning Links in Flash
Changing Images in Flash
Publishing Your Flash Movie


Changing Text Font and Color in HTML Editor

 

To increase impression of your future web site based on our web design templates maybe you will need to change text color or font style. There are some ways of doing that.

 

If you want to change part of text or some words do the following. Select text, witch properties you want to modify.

 

If you are Microsoft FrontPage user you can see high amount of tools at the top toolbox. There you can change text color, font and its size, make text bold or italic and so on.

 

Fig 7.4 FrontPage Toolbar

 

If you are working with Macromedia Dreamweaver, you can check and change text properties at the properties panel. If you can’t see it for some reason, select Window/Properties from top menu to call this properties panel.

 

Fig 7.5 Dreamweaver Properties Panel

 

It’s easy when you are to changing properties of small parts of text. But if you will decide to change color of text on whole page, for example if you have changed color scheme of your web design template and text must conform new web site color, you should use CSS for it.

 

You can use CSS (Cascade Style Sheets) to change text attributes of whole page or specified tag. Using of style sheet technologies is recommended by W3C standard for future compatibility with new versions of different browsers. There are two ways of doing that – you can use built-in style sheet editor or put style directly to HTML code.

 

If you are using Macromedia Dreamweaver MX 6 then you have to press Ctrl+Shift+E to launch CSS editor or choose Text/CSS styles/Manage Styles… from the top menu if you are using Macromedia Dreamweaver MX 2004. You will see list of styles used in this web design template. Double click style that you want to edit. Then just change font options in pop-up window.

 

If you are Microsoft FrontPage user then you should choose Format/Style… from the top menu.

Double click style you want to change. Select font button at the bottom of appearing dialog. Now you can modify all possible text properties.

 

If you have some HTML skills you can put style directly into code tag. For example if you want to change link color to red you should put following code into reference tag:

 

<a href=”url” style=”color:FF0000”>Reference text</a>.

 

If you want to change table cell text size to 11px you should add following code in td tag:

 

<td style=”font-size:11px”>Cell content</td>