- This topic has 1 reply, 2 voices, and was last updated 8 years, 8 months ago by .
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.
Home › Community Forums › Epik Theme Support › featured post title text.. space between text
please check out my link… http://mercygrass.com
on my featured post, there’s a space between on my title. how can i remove? the space/margin?
It’s the line-height
from the .entry-title
on line 1086. Instead of removing or adjusting, you could probably just add in the code separately so it doesn’t affect the other titles of your site that use that code. So try adding this to your css –
.featuredpage h2, .featuredpost .entry-title {
line-height: .7;
margin-bottom: 10px !important;
overflow: hidden;
}
You can adjust the line-height or the margin if you want.