is there away to get rid of the header bar the area where is says home log in and shopping cart?
is there away to get rid of the header bar the area where is says home log in and shopping cart?
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.
any Idea what that might be? and would that be in the stylesheet?
Open your stylesheet.css and find #headerWrapper
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 ?
Change the code above so you have two separate declarations as follows:Code:#headerWrapper, #contentMainWrapper, #logoWrapper, #cartBoxListWrapper, #ezPageBoxList, #cartBoxListWrapper ul, #ezPageBoxList ul, #mainWrapper, #popupAdditionalImage, #popupImage { margin: 0em; padding: 0em; }
Code:#contentMainWrapper, #logoWrapper, #cartBoxListWrapper, #ezPageBoxList, #cartBoxListWrapper ul, #ezPageBoxList ul, #mainWrapper, #popupAdditionalImage, #popupImage { margin: 0em; padding: 0em; }Note: this will eliminate everything in the heading including logo and navigation bars.Code:#headerWrapper { display: none; }