OK.
This is what i think you have in your define pages editor:
Code:
<h1><font size="4" face="arial,helvetica,sans-serif">Welcome to Eagle Mountain Supplies, Your Outdoor Supplies Store. </font></h1><h1><font face="arial,helvetica,sans-serif"><font size="3"></font></font></h1><h1><font face="arial,helvetica,sans-serif"><font size="3">Here you will find quality outdoor goods at decent prices. We have many different items to appeal to the camper, hunter, backpacker and outdoorsman or woman in you. </font> </font></h1><p><font size="4" face="arial,helvetica,sans-serif">We also have information reguarding the MAD DOG BRUSH FIGHTER UNIT. This unit has proven worthy of recognition, due to the ability to knock down fires very quickly and with little effort. </font></p><p /><p><font face="arial,helvetica,sans-serif"></font></p>
You are going about this in the wrong way! Sorry, I don't know how to say that with more subtlety but I do not mean it harshly.
You will find it easier, in general and particularly for zen cart, if you work out how the css file works. The main stylesheet, which is called stylesheet.css, and is in your template, will determine how the text is displayed.
When you add things like the <font> tags there are two problems with this. Firstly, it confuses the issue. Secondly, using <font> tags is depreciated, which means that it is being phased out.
So, all your styling should be done from the stylesheet.css file.
Let's just have a look at the first sentance which reads:
<h1><font size="4" face="arial,helvetica,sans-serif">Welcome to Eagle Mountain Supplies, Your Outdoor Supplies Store. </font></h1>
You want to change that to:
Code:
<h1>Welcome to Eagle Mountain Supplies, Your Outdoor Supplies Store. </h1>
Now, we are going to apply the styling for this sentence by editing the rules for <h1> tags in the stylesheet.
So, find your stylesheet.css file. It will be in:
includes/templates/YOURTEMPLATE/stylesheet.css
If you do not have a includes/templates/YOURTEMPLATE folder (the YOURTEMLATE is the name of your own template which I do not know so I am writing YOURTEMPLATE) then we need to explain how to make one for you.
Once you have found that file you are going to edit it. Find the part of the file where it says:
Code:
h1 {
font-size: 1.5em;
}
You can define exactly how all the h1 tags on your site are going to be displayed.
As an example try :
Code:
h1 {
font-size: 1.5em;
color:red;
font-family:arial,helvetica,sans-serif;
font-weight:bold;
line-height:1.5em;
}
Once you have edited the file you need to upload the new version to the server.
You can play around with the numbers and font types and see the effects on the page.
Get that far and I'll give you more advice.
Don't worry it will all seem obvious really soon