Hello,
I’d like to increase the space above my H3 and H4 headings (for more visual space between the sections of copy).
https://blockchaintrailblazers.com/free-publicity-to-promote-blockchain-technology/
Thank you
-
This topic was modified 7 years by
Derek Little.
-
This topic was modified 7 years by
Derek Little.
Hi,
Check your website settings because I cannot access it. I have this error -> https://www.screencast.com/t/vak7eQhVR
Thanks.
Sorry, I just upgraded my web hosting package and the new DNS is temporarily propagating. Should be done soon.
Note: I have not made any changes to the code (I’m not a coder). Everything on my site is still out of the box.
-
This reply was modified 7 years by
Derek Little.
Site is active again – would appreciate any tips you could offer about configuring space above my H3/H4 tags
This article uses both H4 and H3
https://blockchaintrailblazers.com/free-publicity-to-promote-blockchain-technology/
Hi,
If you want to change this aspect, you need to edit the line-height value from these headings. -> https://www.screencast.com/t/7PagJV64
Check the code ->
.td-post-content h3 {
line-height: 22px!important;
}
.td-post-header .entry-title {
line-height: 48px!important;
}
Thanks.
Yes, I understand what line height is.
Must I use the stylesheet to edit these, or can I do this in Theme Panel/Theme Fonts/Post Content? I tried changing H3 line height fomr 22px to 18px and cleared my cache – still no change.
Any advice?
Thanks
-
This reply was modified 7 years by
Derek Little.
And how do I know what the defaults are so I know what I’m changing?
Hi,
I have checked this case and seems to works as expected. If you want to know which values are set up by default, you need to use the Inspector browser and check the value from here -> https://www.screencast.com/t/96p2vT6STCf Ensure that your system status parameters are correctly increased according to our documentation from here -> https://forum.tagdiv.com/requirements-for-newspaper/
Thanks for the message!
It is the space “above” and “below” the tags (H2, H3, H4) that I need to adjust. Not the line spacing in between two lines of H3 copy.
How can I do that?
Hi,
Here is talking about margin-top and margin-bottom values as you can see here -> https://www.screencast.com/t/f1ZELKls If you want to change these values which come by default with the theme, you need to use such a custom CSS code, using the Inspector browser to create your own Custom CSS code. For example, for h3 tag, you can use the code below and place it in the Theme panel -> Custom CSS area. Look at this -> https://www.screencast.com/t/BCscaH4BbVa0
.td-post-content h3{
margin-top:300px;
margin-bottom:200px;
}
Thanks.