By Mike Bires on Tuesday, 04 September 2018
Posted in General Issues
Likes 0
Views 548
Votes 0
Hi Mark,

In the past, when I wanted to "tighten up" the space between text and header fonts, you had me add the following code:

#eb .eb-entry-article .ebd-block h1,
#eb .eb-entry-article .ebd-block h3 {
margin-bottom: 0;},
#eb .eb-entry-article .ebd-block h2 {
margin-bottom: 0;}

However, when I try to add #eb .eb-entry-article .ebd-block h4 {
margin-bottom: 0;}

to this, it does not adjust the spacing. How do I add no margin to all header styles?

The article in question is at https://teamfitforduty.com/blog/a-simple-primer-to-keto-and-intermittent-fasting-for-law-enforcement

Thank you!
Hi Mike,

Based on what I checked, it seems that your following CSS code for h3 and h4 has missed the closing bracket '}':


#eb .eb-entry-article .ebd-block h3 {
margin-bottom: 0;
#eb .eb-entry-article .ebd-block h4 {
margin-bottom: 0;


You can just replace it with the following CSS code and see how it goes:


#eb .eb-entry-article .ebd-block h3 {
margin-bottom: 0;
}
#eb .eb-entry-article .ebd-block h4 {
margin-bottom: 0;
}


Do clear all your cache before you refresh your page to see how it goes.
·
Tuesday, 04 September 2018 11:43
·
0 Likes
·
0 Votes
·
0 Comments
·
Thank you, Irwin. That worked!
·
Tuesday, 04 September 2018 23:47
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi there,

You are most welcome. Glad to hear that it worked.

As a gentle reminder, kindly start a new thread if you have any other issue in the future so it will be easier for us to manage your inquiry. I will lock and mark this thread as resolved.
·
Wednesday, 05 September 2018 09:57
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post