Page Titles in Grid Display

  • Unknown's avatar

    In Goran theme, I am showing Grid Page template for the Home Page, The children pages are displaying with the page titles I’ve set, but is there a way to display a different title on the Home Page than what I want as the title on each individual child page?

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hi there, we can do this with the following CSS. The one thing to keep in mind is that, as far as the search engines are concerned, those pages in that grid still have the original titles. When we add the new titles with CSS, it is only a visual thing and does not become part of the html.

    .home .grid-area .entry-title a {
      color: rgba(0,0,0,0)
    }
    .grid-area .grid #post-3 .entry-title:before {
      content: "New Title Left";
      display: block;
      margin-bottom: -25px;
    }
    .grid-area .grid #post-85 .entry-title:before {
      content: "New Title Center";
      display: block;
      margin-bottom: -25px;
    }
    .grid-area .grid #post-4 .entry-title:before {
      content: "New Title Right";
      display: block;
      margin-bottom: -25px;
    }
  • Unknown's avatar

    That worked! Thank you so much that was super easy!

  • Unknown's avatar
  • The topic ‘Page Titles in Grid Display’ is closed to new replies.