Changing the automatic title of the posts page

  • Unknown's avatar

    I know basically nothing about CSS and I need some help! My posts page is under the tab “Lab News”, but the title of the page was automatically made “Latest Event Updates” (I’m using the eventbrite theme). I’d like to change the title of my posts page to “Lab News” to match the tab name and I have no idea how to do this. Any help would be greatly appreciated!

    The blog I need help with is kohlermemorylab.org

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

  • Unknown's avatar

    This is a little hack-ish and not really a recommended way, but it works. Try it:

    body.blog .pagetitle {
    	text-indent: -99999em;
    }
    
    body.blog .pagetitle:after {
      content:'Lab News';
      visibility: visible;
      display: block;
      position: absolute;
      padding: 0px;
      top: 0px;
      text-indent: 0;
    }

    Use the ‘content’ part to change it to any text you want.

  • Unknown's avatar

    Thanks so much! Worked perfectly!

  • The topic ‘Changing the automatic title of the posts page’ is closed to new replies.