Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / Font and font size for Welcome to... message

Font and font size for Welcome to... message

Locked

Views: 2,791

Results 1 to 4 of 4
This thread is locked. New replies are disabled.
11 Jun 2006, 11:48 AM
#1
peace_freak avatar

peace_freak

Zen Follower

Join Date:
Apr 2006
Posts:
354
Plugin Contributions:
0

Font and font size for Welcome to... message

Am trying to adjust the font and size of the greeting Welcome to... at the top center of the center box... (below the Nav breadcrumb, I believe).

I thought I would find it in the stylesheet but have not had any luck.

Can anyone point me in the right direction?

11 Jun 2006, 1:46 PM
#2
seethrou avatar

seethrou

Totally Zenned

Join Date:
May 2004
Location:
Hong Kong
Posts:
1,156
Plugin Contributions:
0

Re: Font and font size for Welcome to... message

First, you can find more details by view your page sources.
Please find some tools to help yourself and it can save you in finding all the items.
You can refer to some of them in my signature below.

By view the source, and your questions,
There are:

<h2 class='greeting'>
Welcome
<span class='greetUser'>
Guest!
</span>
Would you like to
<a href='http://localhost/zc1301t/index.php?main_page=login'>
log yourself in
</a>
?
</h2>

For the:
Welcome (excluded the Guest!) Would you like to (excluded the log yourself in)?

You can use in CSS are:

greeting {
     font-size: 1em;  /* put the value suite */ 
     ...
     }

For the: Guest!

You can use in CSS are:

greetUser {
     font-size: 1em;  /* put the value suite */ 
     ...
     }

And for the: log yourself in
It depended on the css attribues for the links.

.

11 Jun 2006, 2:03 PM
#3
seethrou avatar

seethrou

Totally Zenned

Join Date:
May 2004
Location:
Hong Kong
Posts:
1,156
Plugin Contributions:
0

Re: Font and font size for Welcome to... message

Oops!

The above two classes in css should be read as:

.greeting {
     font-size: 1.2em;  /* put the values suite your need */ 
     color: Brown;
     }
.greetUser {
     font-size: 1.2em;  /* put the values suite your need */ 
     color: orange;
     }
11 Jun 2006, 3:03 PM
#4
peace_freak avatar

peace_freak

Zen Follower

Join Date:
Apr 2006
Posts:
354
Plugin Contributions:
0

Re: Font and font size for Welcome to... message

Thank you for explaining that and offering your tools of the trade... They should be included in the customizing section as a sticky so everyone is aware of them!