The wysiwyg editors commonly bundled with zencart have many limitations, and there is no real solution to this. There's talk of moving away from HTMLArea and to TinyMCE, which is a better product.
So, you have to do stuff manually, and the easiest is to add custom <div id's> to your defined pages text, and then put these ID's into the stylesheet.
For example, if your home page text is a follows:
----------------------------------------------------------------------------
Welcome to my fantastic new store. Of all
the Zencart stores ever built, this one is by far the most beautiful,
creative, functionally perfect and worthy of every position in the
first 10 pages of a Google search result.
If you sign up today, I will give you $10,000 to spend as you wish
on any product. All shipping is absolutely free. All our products
come with a lifetime guarantee and are quite simply the best
product ever invented in the entire history of the world.
----------------------------------------------------------------------------
Your define page HTML could look like this:
HTML Code:
<div id ="homePageWelcome">Welcome to my fantastic new store. Of all the Zencart stores ever built, this one is by far the most beautiful, creative, functionally perfect and worthy of every position in the first 10 pages of a Google search result.
<br />
<br />
If you sign up today, I will give you $10,000 to spend as you wish on any product. All shipping is absolutely free. All our products come with a lifetime guarantee and are quite simply the best product ever invented in the entire history of the world.</div>
As you see, I have encased the text in their own <DIV> to whiich I have applied my own custom style id...
<div id ="homePageWelcome">
If I now go to the stylesheet and add:
Code:
#homePageWelcome {
color: #AD1400;
line-height: 200%;
}
I will get:
Welcome to my fantastic new store. Of all
the Zencart stores ever built, this one is by far the most beautiful,
creative, functionally perfect and worthy of every position in the
first 10 pages of a Google search result.
If you sign up today, I will give you $10,000 to spend as you wish
on any product. All shipping is absolutely free. All our products
come with a lifetime guarantee and are quite simply the best
products ever invented in the entire history of the world.