
09-03-2013, 07:16 AM
|
 |
Ecwid Team
|
|
Join Date: Jan 2013
Posts: 2,517
|
|
Quote:
Originally Posted by Christopher Baktis
I was actually looking to put the new arrivals on the main page and remove the breadcrumbs and other things only on the front page where I have more then just the shopping items....I still want the breadcrumbs and other items if someone clicks on a product or goes to the shopping area...
Can these items be removed from one page only?
|
Hi,
Thank you for clarification.
Yes, you can remove those links only for a certain category, for instance, the one you want to display on the front store page. To do that you will need to specify the CSS class of this particular page. The CSS code you should use to remove the breadcrumbs, the "View as" and "Sign in" links is as follows:
Code:
div.ecwid-productBrowser-CategoryPage-CATEGORY_ID div.ecwid-results-topPanel div.ecwid-results-topPanel-viewAsPanel,
div.ecwid-productBrowser-CategoryPage-CATEGORY_ID div.ecwid-productBrowser-categoryPath,
div.ecwid-productBrowser-CategoryPage-CATEGORY_ID div.ecwid-productBrowser-auth {
display: none;
}
where CATEGORY_ID is the the ID of the category which you will display on the front store page by default. Please, refer to the following article, for instructions on how to get ID of the category.
|