Viewing 5 replies - 1 through 5 (of 5 total)
  • 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>

    You can add

    .full-height article header h2 {
     display : none;
    }

    to remove page text title

    Theme Author alex27

    (@alex27)

    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

    (@wthomasuw)

    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

    (@alex27)

    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 plugin.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Breadcrumbs’ is closed to new replies.