Title: Breadcrumbs
Last modified: August 20, 2016

---

# Breadcrumbs

 *  Resolved [wthomasUW](https://wordpress.org/support/users/wthomasuw/)
 * (@wthomasuw)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/breadcrumbs-3/)
 * Hello…
 * How can I remove the breadcrumbs or page title from pages.. at least the Home
   page?
 * Cant seem to figure it out on this theme.
 * Thank You
 * [http://wordpress.org/extend/themes/gamepress/](http://wordpress.org/extend/themes/gamepress/)

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

 *  [xXGrime](https://wordpress.org/support/users/xxgrime/)
 * (@xxgrime)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/breadcrumbs-3/#post-3301613)
 * Breadcrumbs? Do you mean the dotted line under links? To remove them just locate
   these lines of code in the style.css.
 *     ```
       a {
       	color: #ffffff;
       	text-decoration: none;
       	border-bottom: 1px dotted transparent; <-------Remove this line
       }
       ```
   
 *     ```
       #content a:hover, #sidebar a:hover, #prefooter a:hover {
       	border-bottom: 1px dotted; <-------Remove this line
       }
       ```
   
 * To remove the titles from pages just find this line of code in style.css.
 *     ```
       .entry-content, .archive-content {
       background: url(images/border-solid.png) repeat-x 0 0; <-------Remove
       	padding: 12px 22px 0;
       	overflow: hidden;
       }
       ```
   
 * Now open content-page.php and remove this line.
 *     ```
       <h2><?php the_title(); ?></h2>
       ```
   
 *  [dyrer](https://wordpress.org/support/users/dyrer/)
 * (@dyrer)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/breadcrumbs-3/#post-3301614)
 * You can add
 *     ```
       .full-height article header h2 {
        display : none;
       }
       ```
   
 * to remove page text title
 *  Theme Author [alex27](https://wordpress.org/support/users/alex27/)
 * (@alex27)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/breadcrumbs-3/#post-3301615)
 * Gamepress doeasn’t come with breadcrumbs, so those might come from some plugin
   you’re using. To remove titles from posts od pages on the home page you’d have
   to manually edit appriopriate files – depending on your chosen home page layout–
   content.php, content-bigthumb.php or content-smallthumb.php
 *  Thread Starter [wthomasUW](https://wordpress.org/support/users/wthomasuw/)
 * (@wthomasuw)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/breadcrumbs-3/#post-3301661)
 * Ok, thank you. You are right, I didn’t mean breadcrumbs. I was referring to page
   titles. I prefer them not showing. I am new to WP and on some themes it is easy
   for me to find what code to remove, on others… not so easy.
 *  Theme Author [alex27](https://wordpress.org/support/users/alex27/)
 * (@alex27)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/breadcrumbs-3/#post-3301666)
 * I guess in this case it would make sense to just hide page titles with css as
   dyrer suggested, instead of removing them completly. To add custom CSS i recommend
   [My Custom CSS](http://wordpress.org/extend/plugins/my-custom-css/) plugin.

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

The topic ‘Breadcrumbs’ is closed to new replies.

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

 * 5 replies
 * 4 participants
 * Last reply from: [alex27](https://wordpress.org/support/users/alex27/)
 * Last activity: [13 years, 5 months ago](https://wordpress.org/support/topic/breadcrumbs-3/#post-3301666)
 * Status: resolved