AbanteCart Community

Shopping Cart Operations => Support => Template Support => Topic started by: kangana on April 03, 2014, 03:06:32 AM

Title: remove heading before product list
Post by: kangana on April 03, 2014, 03:06:32 AM
How to remove header for all pages to reduce space in between? - see attached
Title: Re: remove heading before product list
Post by: abantecart on April 03, 2014, 09:38:15 AM
I suggest you check firebug tool in firefox to inspect CSS and HTML.
Title: Re: remove heading before product list
Post by: kangana on April 11, 2014, 01:09:51 AM
I figured this one - in style.css, search for 'heading1' and add last line as 'display: none;'
also add ; after 34px

.heading1 {
   margin-bottom: 20px;
   border-bottom: 1px solid #efefef;
   margin-top: 0;
   font-size: 34px;
   display: none;
}