Stopping Awkward Word Breaks in Titles Follow Button and Bio

  • Unknown's avatar

    Hello there,
    I’d like it so that the titles of my posts don’t get broken mid-word (see “Collage Compulsion” for example).

    I would also like to add a bit below the menu just below my site logo. I’d like to add two boxes, one for a bio and another for my mission statement.

    I’d also like to put a follow button somewhere on the page (preferably somewhere visible, like in one of the aforementioned boxes).

    Thanks for any and all help!

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

  • Unknown's avatar

    I’d like it so that the titles of my posts don’t get broken mid-word (see “Collage Compulsion” for example).

    Hi there, due to the design of Patch, we are a bit limited on what we can do when it comes to long words. One solution would be to make the letter case normal (upper and lower case) which would gain some, but not enough, we would still have to make the titles smaller. Let’s start with the following, which takes the font size from 32px down to 20px and then adjusts the line spacing a bit to fit with the smaller text size.

    .wf-active .entry-title a {
    	font-size: 20px;
    }
    .entry-header .entry-title, .entry-card--portrait .entry-header--medium .entry-title {
    	line-height: 1.2;
    }

    I would also like to add a bit below the menu just below my site logo. I’d like to add two boxes, one for a bio and another for my mission statement.

    With the design of Patch, we are very limited as to what we can add in those areas since we have to use CSS to add the text and this option is not meant for a lot of text. This would add a bit above the site logo.

    .site-branding:before {
    	content: "This is some text";
    }

    Adding below the social icons or menu isn’t really possible since the position of each and every one of the posts on the main page is calculated by the theme software as an absolute position.

    I’d also like to put a follow button somewhere on the page (preferably somewhere visible, like in one of the aforementioned boxes).

    As with the above boxes you requested, this isn’t going to be possible on Patch.

  • The topic ‘Stopping Awkward Word Breaks in Titles Follow Button and Bio’ is closed to new replies.