Results 1 to 7 of 7

Hybrid View

  1. #1
    Join Date
    Jul 2005
    Location
    Brooklyn NY
    Posts
    507
    Plugin Contributions
    0

    Default is there away to get rid of the header bar

    is there away to get rid of the header bar the area where is says home log in and shopping cart?

  2. #2
    Join Date
    Jun 2003
    Posts
    33,720
    Plugin Contributions
    0

    Default Re: is there away to get rid of the header bar

    Find the id for it and use display: none;
    Please do not PM for support issues: a private solution doesn't benefit the community.

    Be careful with unsolicited advice via email or PM - Make sure the person you are talking to is a reliable source.

  3. #3
    Join Date
    Jul 2005
    Location
    Brooklyn NY
    Posts
    507
    Plugin Contributions
    0

    Default Re: is there away to get rid of the header bar

    any Idea what that might be? and would that be in the stylesheet?

  4. #4
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: is there away to get rid of the header bar

    Open your stylesheet.css and find #headerWrapper

  5. #5
    Join Date
    Jul 2005
    Location
    Brooklyn NY
    Posts
    507
    Plugin Contributions
    0

    Default Re: is there away to get rid of the header bar

    so here it is -



    #headerWrapper, #contentMainWrapper, #logoWrapper, #cartBoxListWrapper, #ezPageBoxList, #cartBoxListWrapper ul, #ezPageBoxList ul, #mainWrapper, #popupAdditionalImage, #popupImage {

    margin: 0em;

    padding: 0em;

    }



    #navColumnOneWrapper, #navColumnTwoWrapper, #mainWrapper {

    margin: auto;

    }

    now i changes it to what? And will it get rid of the text has well ?

  6. #6
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: is there away to get rid of the header bar

    Code:
    #headerWrapper, #contentMainWrapper, #logoWrapper, #cartBoxListWrapper, #ezPageBoxList, #cartBoxListWrapper ul, #ezPageBoxList ul, #mainWrapper, #popupAdditionalImage, #popupImage {
    
    margin: 0em;
    
    padding: 0em;
    
    }
    Change the code above so you have two separate declarations as follows:

    Code:
    #contentMainWrapper, #logoWrapper, #cartBoxListWrapper, #ezPageBoxList, #cartBoxListWrapper ul, #ezPageBoxList ul, #mainWrapper, #popupAdditionalImage, #popupImage {
    
    margin: 0em;
    
    padding: 0em;
    
    }
    Code:
    #headerWrapper {
    display: none;
    }
    Note: this will eliminate everything in the heading including logo and navigation bars.

 

 

Similar Threads

  1. How to get rid of main logo image link in the header bar area?
    By aaronjmorgan in forum General Questions
    Replies: 2
    Last Post: 7 May 2014, 02:46 AM
  2. Get rid of little gap below header bar?
    By plaz in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 9 May 2010, 09:27 PM
  3. Trying to get rid of white bar in header
    By smoke133 in forum Templates, Stylesheets, Page Layout
    Replies: 7
    Last Post: 28 Oct 2008, 08:19 PM
  4. Need to get rid of header bar thingy?
    By adamson in forum Templates, Stylesheets, Page Layout
    Replies: 6
    Last Post: 4 Jan 2008, 02:22 PM
  5. How Do I Get Rid of The Horizontal Categories Bar?
    By jaz1974 in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 8 Nov 2006, 03:48 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