Title: Hide breadcrumbs
Last modified: August 22, 2016

---

# Hide breadcrumbs

 *  Resolved [almalaci](https://wordpress.org/support/users/almalaci/)
 * (@almalaci)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/hide-breadcrumbs/)
 * I’m trying to hide page titles and breadcrumbs from all my Colorway pages using
   custom.css. Could anyone help?

Viewing 8 replies - 1 through 8 (of 8 total)

 *  Theme Author [inkthemescom](https://wordpress.org/support/users/inkthemescom/)
 * (@inkthemescom)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/hide-breadcrumbs/#post-5639561)
 * Hi ,
 * Put the following code into custom css. This may resolve the problem.
 *     ```
       #crumbs, .sl h1{
       display:none;
       }
       .content-info{
       border:none;
       }
       ```
   
 *  Thread Starter [almalaci](https://wordpress.org/support/users/almalaci/)
 * (@almalaci)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/hide-breadcrumbs/#post-5639649)
 * Thanks for the quick reply! Breadcrumbs work but content-info doesn’t. It just
   takes a border off.
 *  Theme Author [inkthemescom](https://wordpress.org/support/users/inkthemescom/)
 * (@inkthemescom)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/hide-breadcrumbs/#post-5639664)
 * Hi almalaci,
 * Use this code, instead of previous
 *     ```
       .content-info{
          display:none;
       }
       ```
   
 *  Thread Starter [almalaci](https://wordpress.org/support/users/almalaci/)
 * (@almalaci)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/hide-breadcrumbs/#post-5639674)
 * Thanks again,
    I understand now how `border:none` and `display:none` work. While
   I want to remove the page titles, I need to keep my Home Page Intro at the same
   time so I think I’ll just create custom template pages in my child theme with`
   <?php the_title(); ?>` unquoted in them unless there are yet other custom css
   options.
 *  Theme Author [inkthemescom](https://wordpress.org/support/users/inkthemescom/)
 * (@inkthemescom)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/hide-breadcrumbs/#post-5639686)
 * Hi almalaci,
    You just have to do some customization. Find functions.php file
   in theme root folder and put the following code below this lines
 *     ```
       /* --------------------------------------------------------------------- */
       /* Styles Enqueue */
       /* --------------------------------------------------------------------- */
       function colorway_custom_css() {
           if (!is_front_page() && !is_home()) {
               ?>
               <style type="text/css">
                   #crumbs, .sl h1, .content-info{
                       display:none;
                   }
               </style>
               <?php
   
           }
       }
   
       add_action('wp_head', 'colorway_custom_css');
       ```
   
 * This may resolve your problem.
 *  Thread Starter [almalaci](https://wordpress.org/support/users/almalaci/)
 * (@almalaci)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/hide-breadcrumbs/#post-5639753)
 * Yes, it worked!
    Thanks very much guys for providing such excellent support and
   such a great theme!
 *  Theme Author [inkthemescom](https://wordpress.org/support/users/inkthemescom/)
 * (@inkthemescom)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/hide-breadcrumbs/#post-5639754)
 * Thanks for using our theme.
 *  [warehouseman](https://wordpress.org/support/users/warehouseman/)
 * (@warehouseman)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/hide-breadcrumbs/#post-5639800)
 * OK, I’m new at all of this. But I want to turn off breadcrumbs and page titles
   while still keeping the page title name in “PAGES”. So, where do I find “custom.
   css” or can it be entered in THEMES, OPTIONS, STYLING OPTIONS ?
 * Thanks

Viewing 8 replies - 1 through 8 (of 8 total)

The topic ‘Hide breadcrumbs’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/colorway/4.2.3/screenshot.png)
 * ColorWay
 * [Support Threads](https://wordpress.org/support/theme/colorway/)
 * [Active Topics](https://wordpress.org/support/theme/colorway/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/colorway/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/colorway/reviews/)

 * 8 replies
 * 3 participants
 * Last reply from: [warehouseman](https://wordpress.org/support/users/warehouseman/)
 * Last activity: [10 years, 10 months ago](https://wordpress.org/support/topic/hide-breadcrumbs/#post-5639800)
 * Status: resolved