Page 2 of 5 FirstFirst 1234 ... LastLast
Results 11 to 20 of 45
  1. #11
    Join Date
    Aug 2004
    Location
    New York City
    Posts
    7,174
    Plugin Contributions
    0

    Default Re: Background Colors

    That's absolutely possible, but it's still not a problem with the stylesheet.
    Mary Ellen
    I came; I saw; I Zenned
    Taking over the world... one website at a time
    Make sure brain is engaged before putting mouth in gear... or fingers to keyboard.

    Holzheimer
    Fan Odyssey

  2. #12
    Join Date
    Apr 2007
    Posts
    59
    Plugin Contributions
    0

    Default Re: Background Colors

    I didn't edit my english.php fle. I transferred it as is from my Classic folder.

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

    Default Re: Background Colors

    Quote Originally Posted by digidollardays View Post
    I didn't edit my english.php fle. I transferred it as is from my Classic folder.
    What about the index.php? Say, at about line 52:

    define('HEADING_TITLE', '');

    Does yours look like this?
    Teach them to shop and they will shop today;
    Teach them to Zen and they will OWN a shop tomorrow!

  4. #14
    Join Date
    Apr 2007
    Posts
    59
    Plugin Contributions
    0

    Default Re: Background Colors

    Quote Originally Posted by Get Em Fast View Post
    What about the index.php? Say, at about line 52:

    define('HEADING_TITLE', '');

    Does yours look like this?
    This is the very last section of my index.php...


    define('TEXT_ALL_MANUFACTURERS', 'All Manufacturers');
    } else if ($category_depth == 'top') {
    /*Replace this text with the headline you would like for your shop.
    define('HEADING_TITLE', 'Welcome to Digi Dollar Days');*/
    } else if ($category_depth == 'nested') {
    //
    ?>

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

    Default Re: Background Colors

    That's it! Found your problem. I replaced this line of mine with the line that you posted, and.....There it was! Just take out the */ at the end of define('HEADING_TITLE', 'Welcome to Digi Dollar Days');*/
    Teach them to shop and they will shop today;
    Teach them to Zen and they will OWN a shop tomorrow!

  6. #16
    Join Date
    Apr 2007
    Posts
    59
    Plugin Contributions
    0

    Default Re: Background Colors

    Quote Originally Posted by Get Em Fast View Post
    That's it! Found your problem. I replaced this line of mine with the line that you posted, and.....There it was! Just take out the */ at the end of define('HEADING_TITLE', 'Welcome to Digi Dollar Days');*/

    That didn't work either. I am still getting the parse error. Here is my index.php with the */ taken out.

    define('TEXT_ALL_MANUFACTURERS', 'All Manufacturers');
    } elseif ($category_depth == 'top') {
    // This section deals with the "home" page at the top level with no options/products selected
    'Welcome to Digi Dollar Days'
    define('HEADING_TITLE', 'Welcome to DigiDollarDays');
    } elseif ($category_depth == 'nested') {
    //
    ?>

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

    Default Re: Background Colors

    O.k. I see something else, here, also:

    You posted:

    define('TEXT_ALL_MANUFACTURERS', 'All Manufacturers');
    } elseif ($category_depth == 'top') {
    // This section deals with the "home" page at the top level with no options/products selected
    'Welcome to Digi Dollar Days'
    define('HEADING_TITLE', 'Welcome to DigiDollarDays');
    } elseif ($category_depth == 'nested') {
    //
    ?>

    try:

    define('TEXT_ALL_MANUFACTURERS', 'All Manufacturers');
    } elseif ($category_depth == 'top') {
    // This section deals with the "home" page at the top level with no options/products selected
    /*Replace this text with the headline you would like for your shop. For example: 'Welcome to My SHOP!'*/
    define('HEADING_TITLE', 'Welcome to DigiDollarDays');
    } elseif ($category_depth == 'nested') {
    // This section deals with displaying a subcategory
    /*Replace this line with the headline you would like for your shop. For example: 'Welcome to My SHOP!'*/
    define('HEADING_TITLE', 'A Steal of a Deal. Nothing over $2.00');
    }
    ?>




    Because parts of that code is wrong, parts are missing.
    Teach them to shop and they will shop today;
    Teach them to Zen and they will OWN a shop tomorrow!

  8. #18
    Join Date
    Apr 2007
    Posts
    59
    Plugin Contributions
    0

    Default Re: Background Colors

    Quote Originally Posted by Get Em Fast View Post
    O.k. I see something else, here, also:

    You posted:

    define('TEXT_ALL_MANUFACTURERS', 'All Manufacturers');
    } elseif ($category_depth == 'top') {
    // This section deals with the "home" page at the top level with no options/products selected
    'Welcome to Digi Dollar Days'
    define('HEADING_TITLE', 'Welcome to DigiDollarDays');
    } elseif ($category_depth == 'nested') {
    //
    ?>

    try:

    define('TEXT_ALL_MANUFACTURERS', 'All Manufacturers');
    } elseif ($category_depth == 'top') {
    // This section deals with the "home" page at the top level with no options/products selected
    /*Replace this text with the headline you would like for your shop. For example: 'Welcome to My SHOP!'*/
    define('HEADING_TITLE', 'Welcome to DigiDollarDays');
    } elseif ($category_depth == 'nested') {
    // This section deals with displaying a subcategory
    /*Replace this line with the headline you would like for your shop. For example: 'Welcome to My SHOP!'*/
    define('HEADING_TITLE', 'A Steal of a Deal. Nothing over $2.00');
    }
    ?>




    Because parts of that code is wrong, parts are missing.
    I just tried that and I am still getting this error....

    Parse error: parse error, unexpected '/' in /home/digidoll/public_html/store/includes/languages/english/index.php on line 51

  9. #19
    Join Date
    Apr 2007
    Posts
    59
    Plugin Contributions
    0

    Default Re: Background Colors

    I figured it out..it was the index in the includes/languages/englisg folder...not mine:)

    So Now my store is up, BUT none of my stylesheet is correct

    Here is my link...
    http://digidollardays.net/store/

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

    Default Re: Background Colors

    Yea, I see that. At least you're closer than you were.
    It's calling the stylesheet from:
    http://digidollardays.net/store/incl...stylesheet.css


    Is that where yours is, or is it in Custom?
    Might try putting yours in the template_default, just for a min (you'll have to re-name the other one) just to see if it picks up correctly.
    Teach them to shop and they will shop today;
    Teach them to Zen and they will OWN a shop tomorrow!

 

 
Page 2 of 5 FirstFirst 1234 ... LastLast

Similar Threads

  1. Registration Box Background Colors?
    By Sfrazier in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 16 Aug 2008, 08:38 AM
  2. Banner Box background colors
    By Zubey in forum Templates, Stylesheets, Page Layout
    Replies: 3
    Last Post: 21 Mar 2008, 03:21 PM
  3. Header & Footer background colors.
    By LM7 in forum Templates, Stylesheets, Page Layout
    Replies: 15
    Last Post: 2 May 2007, 09:54 PM
  4. Background colors
    By Moncia in forum Templates, Stylesheets, Page Layout
    Replies: 7
    Last Post: 7 Nov 2006, 07:10 AM

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