Page 1 of 2 12 LastLast
Results 1 to 10 of 16
  1. #1
    Join Date
    Apr 2008
    Posts
    33
    Plugin Contributions
    0

    Default removing define('HEADER_SALES_TEXT','');

    Hello,
    My problem is i want to remove "define('HEADER_SALES_TEXT','');", so I just have my logo as the header. If I use what is above I get a space under my logo and If I remove it for come reason "HEADER_SALES_TEXT" is displayed under the logo. I found out how to change it just not remove it. Any help greatly appreciated

    Thanks,
    Keith

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

    Default Re: removing define('HEADER_SALES_TEXT','');

    You have a URL for this site? If you post it, people can see what the actual css is, and be more willing to help you.

    You should see something like:

    #headerSalesText {
    display: inline;
    }

    Would be replaced with:

    #headerSalesText {
    display: none;
    }

    (headerSalesText could be "tagline" or any number of things)

    or something like that, depending on which template you're using, and who designed it, as to what the actual code will be. But it would be so much easier if we could see your site. Then we could pinpoint it in about 2 seconds instead of having to guess.

    Hope this helps.
    If not, post your URL.
    Teach them to shop and they will shop today;
    Teach them to Zen and they will OWN a shop tomorrow!

  3. #3
    Join Date
    Apr 2008
    Posts
    33
    Plugin Contributions
    0

    Default Re: removing define('HEADER_SALES_TEXT','');

    Hi,
    Thanks for your quick response. I found #tagline in stylesheet.css and made it #tagline {
    display: none;
    }
    ,but the problem is still there.
    www.keithgabbard.com is the URL what I'm using at the moment.
    Do you see the space under the logo? I just started with this program today, so I apologize if I'm not clear. I've read a great deal, but still feel unnatural with which files to modify where.

    Thanks for your help!,
    Keith

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

    Default Re: removing define('HEADER_SALES_TEXT','');

    Did you finally get it? I'm not seeing define('HEADER_SALES_TEXT',''); anywhere on your site.
    Teach them to shop and they will shop today;
    Teach them to Zen and they will OWN a shop tomorrow!

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

    Default Re: removing define('HEADER_SALES_TEXT','');

    The white space under your header is caused by this section of code in your css:

    Code:
    #logo {
         text-align: center;
        }
    Change to:

    Code:
    #logo {
        float: left;
        }
    That should do the trick.

    I also saw your tagline in your css. See all that other stuff in there? Right now it looks like:

    Code:
    #tagline {
    display: none;
        color:#000000;
        font-size: 2em;
        text-align : center;
        vertical-align: middle;
        }
    It needs to look like:

    Code:
    #tagline {
       display: none;
    }
    Anything that's unnecessary just slows your sites download time. The browser has to read everything........even if it's not displayed.

    Hope this helps.
    Teach them to shop and they will shop today;
    Teach them to Zen and they will OWN a shop tomorrow!

  6. #6
    Join Date
    Apr 2008
    Posts
    33
    Plugin Contributions
    0

    Default Re: removing define('HEADER_SALES_TEXT','');

    Maybe I'm confused about what that space is. When I centered my logo the small white space you see under it appeared. Even though there is no text displayed, it is still taking up space somehow. That space is where HEADER_SALES_TEXT shows up if I delete define('HEADER_SALES_TEXT',''); in stylesheet.css. All I want to do is get rid of that white line.

    #tagline {
    display: none;
    }

    This doesn't seem to make it (the white line) disappear. Again, I apologize if I seem confusing here. I just started with the cart today. Obviously I'm a long way from creating what I could in Dreamweaver visually. I really appreciate the help.

    Thanks,
    Keith

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

    Default Re: removing define('HEADER_SALES_TEXT','');

    Oops. Double post. Sorry Admins. Didn't mean to. I'm on a satellite connection, and a storm is in the area is knocking my connection in and out. Just refreshed the page and there it was........a double post. At least I caught it before you did. :)
    Last edited by Get Em Fast; 24 Apr 2008 at 05:50 AM. Reason: Double Post
    Teach them to shop and they will shop today;
    Teach them to Zen and they will OWN a shop tomorrow!

  8. #8
    Join Date
    Apr 2006
    Location
    Texas
    Posts
    6,196
    Plugin Contributions
    0

    Default Re: removing define('HEADER_SALES_TEXT','');

    You have a little white bar right below your header & Nav Cat Tabs

    includes/ templates/ your_template/ css/ stylesheet.css

    Look for:
    1. #navCatTabs
    2. You might half to seperate out this declaration if associated (linked with others..
    3. This is the remedity:
    4. #navCatTabs {margin-top: -1.2em;}
    5. the highlighted red text above is the little white space fix.

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

    Default Re: removing define('HEADER_SALES_TEXT','');

    Quote Originally Posted by wildkeith View Post
    Maybe I'm confused about what that space is. When I centered my logo the small white space you see under it appeared. Even though there is no text displayed, it is still taking up space somehow. That space is where HEADER_SALES_TEXT shows up if I delete define('HEADER_SALES_TEXT',''); in stylesheet.css. All I want to do is get rid of that white line.

    #tagline {
    display: none;
    }

    This doesn't seem to make it (the white line) disappear. Again, I apologize if I seem confusing here. I just started with the cart today. Obviously I'm a long way from creating what I could in Dreamweaver visually. I really appreciate the help.

    Thanks,
    Keith


    No problem. Look at the first section of my last post (not the Double Post note) that tells you what caused the white space.
    Teach them to shop and they will shop today;
    Teach them to Zen and they will OWN a shop tomorrow!

  10. #10
    Join Date
    Apr 2008
    Posts
    33
    Plugin Contributions
    0

    Default Re: removing define('HEADER_SALES_TEXT','');

    Hello,
    Thanks for your help. I really appreciate it. I have a question though. If I change:

    #logo {
    text-align: center;
    }

    to:

    #logo {
    float: left;
    }

    Wouldn't my logo be aligned to the left of the page. Thats why I changed it.

    Thanks again,
    Keith

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. Removing HEADER_SALES_TEXT from header
    By hultenlk in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 31 Aug 2009, 07:43 PM
  2. define('HEADER_SALES_TEXT', 'some thing'); is not working !
    By alptek in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 2 Aug 2009, 04:17 AM
  3. define('HEADER_SALES_TEXT', 'Tagline Here');???
    By Natural Tone in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 1 Aug 2007, 07:27 AM
  4. Removing the HEADER_SALES_TEXT
    By Natasha in forum Templates, Stylesheets, Page Layout
    Replies: 13
    Last Post: 6 Aug 2006, 05:07 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