Support » Theme: Hueman » Changing Index title(above the featured post) to a static text

Viewing 1 replies (of 1 total)
  • Hi Eduardo. Try this is a child theme style.css file or a plugin like Simple Custom CSS:

    /* hide original page title */
    .page-title {
      visibility: hidden;
      position: relative;
    }
    /* display replacement text */
    .page-title:after {
      visibility: visible;
      position: absolute;
      top: 20px;
      content: "This text replaces the original";
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Changing Index title(above the featured post) to a static text’ is closed to new replies.