Results 1 to 4 of 4
  1. #1
    Join Date
    Apr 2006
    Posts
    322
    Plugin Contributions
    0

    Default 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?

  2. #2
    Join Date
    May 2004
    Location
    Hong Kong
    Posts
    1,294
    Plugin Contributions
    1

    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:
    HTML Code:
    <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:
    HTML Code:
    greeting {
         font-size: 1em;  /* put the value suite */ 
         ...
         }
    For the: Guest!

    You can use in CSS are:
    HTML Code:
    greetUser {
         font-size: 1em;  /* put the value suite */ 
         ...
         }
    And for the: log yourself in
    It depended on the css attribues for the links.

    .
    A New Starter again

  3. #3
    Join Date
    May 2004
    Location
    Hong Kong
    Posts
    1,294
    Plugin Contributions
    1

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

    Oops!

    The above two classes in css should be read as:

    HTML Code:
    .greeting {
         font-size: 1.2em;  /* put the values suite your need */ 
         color: Brown;
         }
    HTML Code:
    .greetUser {
         font-size: 1.2em;  /* put the values suite your need */ 
         color: orange;
         }
    A New Starter again

  4. #4
    Join Date
    Apr 2006
    Posts
    322
    Plugin Contributions
    0

    Default 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!

 

 

Similar Threads

  1. Change font size for tag line
    By TweedyBird in forum Templates, Stylesheets, Page Layout
    Replies: 6
    Last Post: 11 Nov 2006, 07:16 AM
  2. PRODUCT ALL LISTING TITLE NAME - Font Size?
    By domnz in forum Templates, Stylesheets, Page Layout
    Replies: 0
    Last Post: 15 May 2006, 03:59 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •