Scott
                
              
                
              
                  
                  
              1
              
             
            
              Hi,
I am new to SW coming from Joomla. Joomla hiding section is simple. but in SW it seems to be a very complicated.
I would like to hide the breadcrumb div on homepage of a beta site I am working on.
I am unable to find anything in the back end nor any info online. How do I hide the Breadcrumb section on the SW Default Theme?
             
            
              
              
              
            
            
           
          
            
              
                ninja
                
              
              
                  
                  
              2
              
             
            
              There is no setting in the backend. What you would need to do is to create a theme and then add some css. The css you need to add is: display: none;
If thats all you wanna do you can just create a new theme and put it in the base.scss file. You would need to add the following line:
.breadcrumb-container {
 display: none;
}
Then just upload that theme and activate it and you will hide your breadcrumbs on every page
             
            
              
              
              
            
            
           
          
            
              
                Scott
                
              
              
                  
                  
              3
              
             
            
              thank you, I will give it a try