Hello I was just wondering what setting needs to be changed so I can make my paragraph text closer to together after I hit the enter button?
Thank you
Hello I was just wondering what setting needs to be changed so I can make my paragraph text closer to together after I hit the enter button?
Thank you
Hi There,
The paragraph has a default bottom margin of 2.15em. If you want to override it, please add the following CSS code in the X > Theme Options > Global CSS (http://prntscr.com/evui3r)
p {
margin-bottom: 15px;
}
Please let us know how it goes.
I put the code in the global CSS and nothing changed. I’m pretty sure I posted the code in the correct spot
Hello There,
The code did not work because you have inserted a broken code. The unclosed css block prior to the given code is causing it which is why it does not work. You have added this:
.x-btn-navbar,
.x-btn-navbar.collapsed,
.x-btn-navbar.collapsed:hover{
color:#0E74BB;
p{
margin-bottom:15px;
}
You will need to update the code and use this instead:
.x-btn-navbar,
.x-btn-navbar.collapsed,
.x-btn-navbar.collapsed:hover{
color:#0E74BB;
}
p{
margin-bottom:15px;
}
If you need anything else we can help you with, don’t hesitate to open another thread.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.