Breadcrumb navigation personalization You can hide the breadcrumb navigation or change the text Webshop using only CSS. These are the steps to add personalized CSS code to the design: 1. Navigate to Settings > Layout > Designer and launch the designer 2. Click Preferences (last icon) and enable Advanced 3. Click Customize CSS (penultimate icon) 4. Add the piece of CSS code at the bottom (copy and paste) Publish the design (first icon in the designer window) to make sure the result is live. This is the CSS code for hiding the breadcrumb navigation: .webshop_breadcrumb { display: none; } This is the CSS code for changing Webshop into Start: .webshop_breadcrumb a:first-of-type { visibility: hidden; } .webshop_breadcrumb a:first-of-type::after { content: 'Start'; visibility: visible; margin-left: -4em; }