Site logo

Archived topic

title gets cut off + spacing questions

5 replies · Started by William on April 7, 2020

Viewing posts 1–6 of 6

Hi there,

1. Is it possible to include a full post title when using wpsp. I have it on 3 columns, but with longer titles, it just cuts them off. Any way I can fix this to display full title?

2. For the dispatch theme is there any css to control the spacing between the body of an article and its feature image. My first sentence of an article is too close to the feature image. I want some spacing there.

Thanks in advance!

Hi there,

1. In Customizer > Additional CSS - remove this:

.generate-columns-container article .entry-header .entry-title, 
.wp-show-posts article .wp-show-posts-entry-title {
    line-height: 2.5ex;
    height: 5ex;
    overflow: hidden;
    text-overflow: ellipsis;
}

2. Add this CSS:

.single-post #page {
    margin-top: 2em;
}

If that doesn't work can you share a link so i can see the issue.

Hi David,

I was able to fix the title issue.

As for the second one, I still can't seem to figure it out. I linked my site privately so you can take a look. There's little spacing between the feature image and the first sentence of an article.

Thanks once again!

Try this CSS instead:

.single .page-hero {
    margin-bottom: 2em;
}

Thank You!

You're welcome

This archived topic is closed to new replies.