Page 1 of 2 12 LastLast
Results 1 to 10 of 11
  1. #1
    Join Date
    Feb 2009
    Posts
    9
    Plugin Contributions
    0

    Default Removing Tagline Completely

    I'm using Zen Cart 1.3.8a. I've found how to change the TagLine text just fine. What I want though is to eliminate or collapse that entire section, along with the categories listing underneath. This will bring all the columns up flush with the HOME LOGIN top bar. I can put navigation in the left column then. I searched as best I could and didn't find this answered.

  2. #2
    Join Date
    Aug 2005
    Location
    Arizona
    Posts
    27,755
    Plugin Contributions
    9

    Default Re: Removing Tagline Completely

    In /includes/languages/english/header.php make a copy for your template and find
    Code:
    define('HEADER_SALES_TEXT', 'TagLine Here');
    Make it this
    Code:
    define('HEADER_SALES_TEXT', '');
    NOTE: retain the single quotes
    Zen-Venom Get Bitten

  3. #3
    Join Date
    Jul 2005
    Location
    Upstate NY
    Posts
    22,010
    Plugin Contributions
    25

    Default Re: Removing Tagline Completely

    Turn the categories-tabs menu off in admin > Configuration > Layout Settings.

  4. #4
    Join Date
    Feb 2009
    Posts
    9
    Plugin Contributions
    0

    Default Re: Removing Tagline Completely

    Kobra I tried that - and while it now makes that text blank - it does not collapse the space. I also want to eliminate the categories line beneath.

    In other words, I want the left column to go all the way up to the Top Bar (the one that says Home Login in the default template.

    Gjh42 - works, I think I might need to play with margins or something because there is still a gap on both left and right columns (and probably center too but that is white so I can't see it.
    Last edited by bizshop1; 28 Feb 2009 at 08:04 PM.

  5. #5
    Join Date
    Aug 2005
    Location
    Arizona
    Posts
    27,755
    Plugin Contributions
    9

    Default Re: Removing Tagline Completely

    Give a link to what you have
    Zen-Venom Get Bitten

  6. #6
    Join Date
    Jul 2006
    Location
    Montreal, Canada
    Posts
    2,279
    Plugin Contributions
    0

    Default Re: Removing Tagline Completely

    locate tagline in stylesheet and add this

    display:none;

  7. #7
    Join Date
    Feb 2009
    Posts
    9
    Plugin Contributions
    0

    Default Re: Removing Tagline Completely

    Thanks for the suggestions so far. Here is a link to my (very rough still) page:

    http://bizshop.com/zencart/index.php...dex&cPath=1_16

    You can see that the banner box on the left and the search box on the right are below a white space. I'd like to have them flush against the maroon top bar.

  8. #8
    Join Date
    Jul 2005
    Location
    Upstate NY
    Posts
    22,010
    Plugin Contributions
    25

    Default Re: Removing Tagline Completely

    There are a couple of things that are causing this.
    The sideboxes all have a margin-top, and there is a <br class="clearBoth" /> in the header that makes a space.

    Find in your stylesheet
    Code:
    .leftBoxContainer, .rightBoxContainer {
    	margin: 0em;
    	border: 1px solid #9a9a9a;
    	border-bottom: 5px solid #336633;
    	margin-top: 1.5em;
    	}
    Remove the margin-top, and add a new rule:
    Code:
    .leftBoxContainer, .rightBoxContainer {
    	margin: 0em;
    	border: 1px solid #9a9a9a;
    	border-bottom: 5px solid #336633;
    	}
    
    #logoWrapper+.clearBoth {display: none;}

  9. #9
    Join Date
    Feb 2009
    Posts
    9
    Plugin Contributions
    0

    Default Re: Removing Tagline Completely

    Great, thank you very much!

  10. #10
    Join Date
    Dec 2006
    Location
    Northwest Connecticut
    Posts
    87
    Plugin Contributions
    0

    Default Re: Removing Tagline Completely

    Hi,

    I have this same problem, I found this string of posts and it has been helpful, I added this --- #logoWrapper+.clearBoth {display: none;} to stylesheet.css and I edited header.php.... both helped but I still have the space. Here is the site I am working on --- http://peterfasano.com/zen

    What else do I need to edit or change....it sounds like you were able to get rid of the space completely

    Thanks, Helen

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. Removing Birthdate completely...
    By NateL in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 25 Sep 2009, 02:18 PM
  2. Removing log-in completely
    By abe23 in forum General Questions
    Replies: 1
    Last Post: 28 Feb 2008, 07:32 PM
  3. Removing images completely
    By FredZ in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 11 Feb 2007, 07:09 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