Results 1 to 7 of 7
  1. #1
    Join Date
    Feb 2011
    Posts
    99
    Plugin Contributions
    0

    Default adding more text to "tagline"

    i have changed my sales message successfully. i would like to use some of the space below the tagline to add more "taglines" ie "the price you see is the price you pay" in a slightly smaller font and different color. most of all of the posts that i have read ask about just changing the tagline.

    would i have to place another "logo" there and customize it to say what i want and how i want??

    maybe an additional line in my css?

    please help when you can...thanks

  2. #2
    Join Date
    Dec 2006
    Location
    Seligman, MO U.S.A.
    Posts
    2,101
    Plugin Contributions
    5

    Default Re: adding more text to "tagline"

    Open includes/languages/english/CUSTOM/header.php

    CUSTOM being whatever the name of your custom template is.

    Find this line:
    Code:
    define('HEADER_SALES_TEXT', '<h1>Sales Message Goes Here</h1>');
    Add your 2nd line:

    Code:
    define('HEADER_SALES_TEXT', '<h1>Sales Message Goes Here</h1><span>Second line of Tagline!</span>');
    Then open your includes/templates/CUSTOM/stylesheet.css and add something like this right below the original #tagline code:

    Code:
    #tagline span {
       color: #ff0000; 
       text-align: center;
    }
    Hope this helps.
    Teach them to shop and they will shop today;
    Teach them to Zen and they will OWN a shop tomorrow!

  3. #3
    Join Date
    Feb 2011
    Posts
    99
    Plugin Contributions
    0

    Default Re: adding more text to "tagline"

    thanks..i will give it a go and see how it comes out.

    do you have a code line to include for a little smaller font?

  4. #4
    Join Date
    Dec 2006
    Location
    Seligman, MO U.S.A.
    Posts
    2,101
    Plugin Contributions
    5

    Default Re: adding more text to "tagline"

    Sure. You can just add your desired font size to the css code above like:

    font-size: 1.0em;

    making that whole block look like:

    Code:
    #tagline span {
       color: #ff0000; 
       text-align: center;
       font-size: 1.0em;
    }
    Teach them to shop and they will shop today;
    Teach them to Zen and they will OWN a shop tomorrow!

  5. #5
    Join Date
    Feb 2011
    Posts
    99
    Plugin Contributions
    0

    Default Re: adding more text to "tagline"

    actually it cam out great with what i did already. thanks for the help it was perfect. it's smaller and in red. exactly what i wanted!!

    now if i could just change the actual tagline color. it's in grey. i searched the css and header.php but i don't find that color. it maybe some html shade that i am not looking for. that's how i changed all of my other colors.

    again thanks for the help

  6. #6
    Join Date
    May 2009
    Posts
    1,254
    Plugin Contributions
    3

    Default Re: adding more text to "tagline"

    Look for #tagline in your stylesheet

    #tagline {
    color:#000000;
    font-size: 2em;
    text-align : center;
    vertical-align: middle;
    }

  7. #7
    Join Date
    Dec 2006
    Location
    Seligman, MO U.S.A.
    Posts
    2,101
    Plugin Contributions
    5

    Default Re: adding more text to "tagline"

    Quote Originally Posted by 510ego View Post
    actually it cam out great with what i did already. thanks for the help it was perfect. it's smaller and in red. exactly what i wanted!!

    now if i could just change the actual tagline color. it's in grey. i searched the css and header.php but i don't find that color. it maybe some html shade that i am not looking for. that's how i changed all of my other colors.

    again thanks for the help
    Not a problem. Glad to be of some help. And just follow keneso's advice on the original tagline color.

    And in the future, if you need to change a color on a font, but don't see any color in the code for it............just add your color to it, as font colors are inherited, if not defined elsewhere, such as the tagline.
    Teach them to shop and they will shop today;
    Teach them to Zen and they will OWN a shop tomorrow!

 

 

Similar Threads

  1. "More Pictures" text on product listing page?
    By 524cw in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 1 Nov 2010, 03:17 PM
  2. Adding a Download button instead of "...more info"
    By koooch in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 27 Apr 2009, 03:37 AM
  3. How to get back the "more..." text
    By 2hounds in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 20 Mar 2008, 12:26 PM
  4. How to Change "TagLine Here" and "Congratulations"
    By alw16 in forum General Questions
    Replies: 3
    Last Post: 25 Sep 2007, 10:34 PM
  5. What file do I edit to change "For more information" text?
    By starchildcrafts in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 27 Nov 2006, 07:20 PM

Posting Permissions

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