Sketch theme – hide or change "more projects" text in portfolio page

  • Unknown's avatar

    Hi,

    I would love if someone could help me with the CSS code to hide or change the text “more projects” displayed in the bottom/footer of every portfolio page in the Sketch theme. The word “projects” does not apply to my portfolio items, so if I could have only “more” or just not have any text there it would be ideal.

    Thanks a lot!
    Mariana

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

  • Unknown's avatar

    Hi there, I do not see that you have the Custom Design upgrade on that site, but since your account was created before September of 2014, the Custom Design upgrade is still available to you separately. It will be needed to be able to save and apply the CSS change to modify the title of the More Projects section.

    You can try out and preview custom CSS before you buy as explained here.

    This is a little bit different approach than what I would normally use. I’ve turned the existing text transparent in the first rule below and then added the content and reset the color for the new content in the second rule. This is to preserve the top border line above the title.

    .more-projects {
        color: rgba(0, 0, 0, 0);
    }
    .more-projects:before {
        content: "This is my new title";
        color: #999999;
    }
  • Unknown's avatar

    Thank you!! This works!

    I was just waiting to find a solution before I buy the custom design upgrade.

  • Unknown's avatar
  • The topic ‘Sketch theme – hide or change "more projects" text in portfolio page’ is closed to new replies.