Replace logo in file manager. It should be 60px high. Path /styles/data/c/logo-top.png. The best on half transparent background and optimized.
Edit extra top navigation under "Site Components > Top Navigation" in CMS
Edit phone number in content of "Top Contact" in Library Module
Main navigation repeats structure of CMS pages.
Icons like "Home" ( ), "Search" ( ) or "My Account" ( ) are also part of CMS tree. So you can remove those right there. If you want to choose a different icon, you can find more convenient on http://fontawesome.io/cheatsheet/ page
Showing search on click is bound in javascript. You can use E-commerce Search and Fulltext search (you can choose the right snippet in Designer module).
E-commerce "Products" dropdown is inserted from E-commerce module and repeats the structure of the first level of "Categories" tree.
"All Products" under "Products" drodpdown can be removed in "navigation-ul-mainnav.xsl" by superuser by removing the following line: $('.navbar-nav li[data-page-id="31"] > ul').prepend('<li><a href="/shop/">All Products</a></li>');
To make dropdown work on click (instead of mouseover) just remove the following snippet from global javascript
$('.navbar-collapse > ul > li ')
.mouseenter(function() {
var windowWidth = parseInt($(window).width());
if (windowWidth > 767) {
$(this).addClass('open');
}
}).mouseleave(function() {
var windowWidth = parseInt($(window).width());
if (windowWidth > 767) {
$(this).removeClass('open');
}
});
1. CMS - "Header" field
2. Ecommerce Category - category name
3. Ecommerce Product - product name
4. Blog list - blog name
5. Blog post - post name
6. News/Events item - news/events name
Blog and News/Events module also contain subtitle that is pushed automatically from modules
SEO Content appears the first in source code and on the very bottom of page. Its placement depends on Module.
1. Edit it in CMS "SEO Content" Content Area on normal CMS pages.
2. E-commerce categories have it in "SEO ("SEO Content")" section.
3. E-commerce Product is editable in "SEO Data (Content)" section.