Recentemente, um usuário nos perguntou se há uma maneira de adicionar uma quebra de linha no WordPress ou ajustar o espaçamento entre os blocos.
Na maioria dos processadores de texto, você pode adicionar facilmente um espaço extra de linha em branco pressionando a tecla Enter algumas vezes. Também é possível criar linhas com espaçamento duplo após os parágrafos nas opções de formatação. Entretanto, o editor de blocos do WordPress não tem esses botões.
Neste artigo, mostraremos a você como adicionar facilmente uma quebra de linha no WordPress.
Antes de começarmos, é importante saber que o espaçamento entre linhas é controlado pelo tema do WordPress que você usa.
Mostraremos como adicionar espaço entre os blocos no editor de blocos e, em seguida, abordaremos como alterar o espaçamento entre linhas em seu tema se você não estiver satisfeito com os resultados.
Tutorial em vídeo
Se você não gostar do vídeo ou precisar de mais instruções, continue lendo.
Adição de espaço de linha dupla entre blocos
Quando você pressiona a tecla Enter no Windows ou a tecla Return no Mac em seu teclado para adicionar uma quebra de linha, o WordPress a considera como um novo parágrafo.
Isso significa que ele adicionará automaticamente o espaço entre linhas duplo, desde que seu tema tenha o estilo para isso (todos os bons temas do WordPress têm).
Basta acessar o editor de conteúdo, pressionar a tecla Enter ou Return após a linha e, em seguida, digitar outra coisa na próxima linha.
Ao fazer isso, com base no estilo do tema, você verá uma distinção clara entre os parágrafos.
Adição de espaço de linha única
Agora, se você estiver escrevendo algo como um endereço, provavelmente desejará que ele tenha um espaço simples em vez de um espaço duplo no seu site WordPress.
Nesse caso, você precisa pressionar a tecla SHIFT + ENTER no Windows ou a tecla SHIFT + RETURN no Mac.
Isso dirá ao WordPress que você deseja iniciar uma nova linha dentro de um parágrafo existente. Portanto, ele precisa de espaçamento de linha única em vez de espaçamento de linha dupla.
Modificando a altura e o espaçamento da linha
Às vezes, mesmo quando você adiciona o espaçamento de linha adequado no editor, ele não é exibido da forma desejada no tema.
Há duas maneiras de corrigir isso:
- Usando um plug-in (a maneira fácil)
- Manualmente com código CSS (mais avançado)
Vamos dar uma olhada no método fácil primeiro.
Adição de espaçamento entre linhas usando um plug-in
Se você quiser fazer alterações de estilo em seu tema sem precisar aprender a programar, usar um plug-in como o CSS Hero é a melhor maneira de fazer isso.
O CSS Hero facilita a alteração do design do seu site WordPress sem conhecer nenhum código.
Você pode ver mais detalhes em nossa análise completa do CSS Hero.
Se você quiser fazer alterações maiores em seu tema, como mover uma barra lateral ou adicionar um rodapé, um plugin de criação de páginas do tipo arrastar e soltar seria uma opção melhor. Um plug-in de construtor de páginas também permite que você faça pequenos ajustes, como alterar as cores das fontes ou adicionar quebras de linha no WordPress.
Não quer usar um plug-in ou precisa fazer apenas uma alteração? Então, a opção de código CSS manual pode ser a melhor para você.
Alteração manual do espaçamento entre parágrafos com o código CSS
Para adicionar quebras de linha manualmente sem um plug-in, você precisa adicionar algum CSS ao seu tema.
O CSS é basicamente como o recurso de formatação do Microsoft Word. Em vez de clicar em botões, você escreverá um código CSS simples. Isso não é tão assustador quanto alguns iniciantes podem pensar. O CSS é muito fácil de entender se você estiver apenas seguindo as instruções.
Para adicionar CSS personalizado ao seu tema, você precisa visitar a página Appearance ” Customize (Aparência ” Personalizar ). Isso abrirá o personalizador de temas do WordPress, onde você precisará clicar na guia “Additional CSS” (CSS adicional) na coluna da esquerda.
Se não conseguir ver essas opções de menu, talvez você esteja usando um tema de bloco. Consulte nosso artigo sobre como corrigir a falta do personalizador de temas no painel de administração do WordPress.
Na caixa CSS personalizado, você precisa adicionar o seguinte código CSS:
.post p{line-height: 1.5em;}
A regra CSS mostrada acima alterará o espaçamento entre linhas do conteúdo do parágrafo para 1,5em. Em é uma unidade de largura para tipografia.
Estamos usando a classe .post
, que o WordPress adiciona automaticamente à área de conteúdo de todas as postagens para garantir que ela afete apenas as postagens e não os parágrafos usados em outros lugares.
Agora, isso só altera o espaçamento do espaçamento simples.
Se você quiser alterar o espaçamento entre parágrafos no WordPress (ou seja, espaçamento duplo), precisará adicionar preenchimento.
.post p {
line-height: 1.5em;
padding-bottom: 15px;
}
Sinta-se à vontade para ajustar os números de acordo com suas necessidades e adicionar espaçamento duplo em HTML.
Você também pode adicionar CSS personalizado ao seu site usando o plug-in WPCode. O plug-in facilita muito a inserção e o gerenciamento de códigos em seu site.
Para obter mais detalhes, consulte nosso guia sobre como adicionar CSS personalizado ao seu site WordPress.
Esperamos que este artigo tenha ajudado você a adicionar uma quebra de linha no WordPress. Talvez você também queira ver nosso guia sobre como usar o padrão de blocos do WordPress e os melhores temas do WordPress compatíveis com o Gutenberg.
Se você gostou deste artigo, inscreva-se em nosso canal do YouTube para receber tutoriais em vídeo sobre o WordPress. Você também pode nos encontrar no Twitter e no Facebook.
Syed Balkhi
Hey WPBeginner readers,
Did you know you can win exciting prizes by commenting on WPBeginner?
Every month, our top blog commenters will win HUGE rewards, including premium WordPress plugin licenses and cash prizes.
You can get more details about the contest from here.
Start sharing your thoughts below to stand a chance to win!
phil rooksby
I don’t have Additional CSS. I’ve tried all sorts of other ways to alter the paragraph spacing but nothing works, looks a real mess. Help please!!!
Norm
Thank you for the help. I have been looking all over the place, and wanted to do it with a plug-in. You made it so easy. Again, thank you very much.
Maria
Hello! I want to have a simple spacing between my paragraphs and even after pressing enter (for the double space), when I preview the draft nothing has changed (it’s still all one paragraph). Could anyone help?
Rashmi
Hi
I would like to modifying the Line height and Spacing. However there is no ‘editor’ icon ( Appearance » Editor) from theme’s CSS file.
So, what can I do?
Thank you for your reply!
Hannah
Wow. Didn’t know it was so easy. Thank you so much! This double space was driving me crazy!
Christine
Thank you! So much easier!
Donna
Thank you, thank you, thank you!
I was in another html editor and could not figure out how to do single spacing.
You saved the day!
Gerard
Brilliant and what an eternal lifesaver.
I was struggling with spacing on one of my client sites and absolutely amazing that you had the exact answer almost at your finger tips. I am now becoming a permanent subscriber
Elandre
Thanks for all the Wordpress tips. This site has helped me a lot with most struggles I had
LR
I am using the Pilcrow theme and I have no idea how to make the double space between paragraphs happen. Sometimes it happens in my posts but sometimes it doesn’t. When I look in the HTML file I don’t see any post p or padding. I only see the end result of what the post will look like and thats when I know the double spacing didnt work. Can I still go back and re-edit and fix it? Last but not least where you say to go from the appearance to editor menus i dont have those options.
I have under appearance the following options: themes, customize, widgets, menus, header, background, AMP, Theme Options, Mobile.
Please help.
WPBeginner Support
Hey LR,
You can add the CSS by visting Appearance->Customize and then clicking on the Additional CSS tab in customizer. See our guide on how to add custom CSS in WordPress.
If you believe it to be a theme issue, then try temporarily switching to a default WordPress theme. If the issue disappears, then you can ask your theme developer for support.
Administrador
Derek Cummings
My theme is broken, as in it doesn’t have the double spacing by default. The theme is stuck on the shift+enter mode in other words. So in relation to the following code:
.post p {
line-height: 1.5em;
padding-bottom: 15px;
}
Is 15px a normal default double space? How many pixels should it be by default? Also doesn’t it matter where I put this code? Thanx!
Femi
Thank you for the tip on the shift + enter. I never knew this for years. Your site has always been a rescue when I get stuck.
Lyn
Hello: How do you get custom line spacing (say, 1.5em) for one instance on one page instead of changing the entire theme CSS? I see two other people have asked the same thing with no response, at least not that I found. Thanks!
Denise B
I set the p margins to zero. In your CSS, it would be something like p {margins: 0; }
Los Hundlos
Shift+Enter to avoid huge gap between lines in wysywig tinye mce editor in wordpress. Works !!!! Awesome!
Cat
How about simply adding some text and changing the text colour to white (if the background is white)? This should make it possible to create and customise line spaces much easier (unless, of course, the background is a picture of something that cannot be matched with font colour).
Tim
Thanks so much! Life saver!
Michael Rich
Hi WPBeginner staff,
I have a different question. I use Visual Composer and have added many Separator with Text dividers between my section headings on my homepage. I would like to make those text headings also be a link to that section.
However everytime I add the link I lose the section identifying text that I had in the separator and it’s magically replaced with the default text saying “TITLE”.
To try to make it a link I am adding a the linking code inside this bracket:
[vc_text_separator title=”1950s CARS”]
I am scratching my head so hard that I think I’m bald. Any help will get you a lifetime of gratitude!!!
Thankyou,
Mike
Anthony Cooper
I am using the WordPress ‘Divi’ theme and found that if you press enter (or shift + enter) twice, in order to create a larger space, it is ignored. To get round this press enter once, type a character on the line, (it does not matter what), highlight it and change the font colour of the character to white and then press enter again; this results in the desired space between lines without having to edit the theme. The same applies to extra spaces in a line; enter as many characters as desired, highlight them and change their font colour to white and then carry on in the desired font colour.
Julie
Brilliant tip! Thanks so much for this, you saved me from lots of headaches and hassle Anthony!
Robin Brinkler
Remember that some search engines could treat “hidden” text like this as spam.
Ellen
This was really helpful, thanks!
Christy
THANK YOU!! I Love you guys! So glad I found this site! I’ve almost literally been banging my head against the wall. If I knew how to insert emojis, this post would be covered with hearts and smiley faces.
Christy
P.S. ~ HA! I did NOT know that my little colon and parentheses would actually turn into a smiley. LOL
Linda Paul
Oh yeah! You have just helped me solve a problem (forced single space paragraphs) that has vexed me for years!
WPBeginner Support
Glad you found it helpful
Administrador
David M. Ebersole Sr.
I am a subscriber to WP Beginner.
I had a question concerning entering Engineering data for my product on my site. Spacing in the tables appeared too large on the page. I searched Wordpress support and all I saw was snippy responses to the question of single line spacing.
Your the first to answer the question, and it obviously was correct. Thank You.
Sincerely,
Dave
WPBeginner Support
Glad you found it helpful
Administrador
Mark
What about on Android. The latest update has forced a double spacing (new paragraph). Not very good for poetry writers. Is there any way to revert it back to single?
Cheryl
I use Omega Theme and the control/enter does not work. Is there something else I can do. I cannot find post.p in the CSS file.
Becky
Very helpful, thank you!
Adnan Khan
Thanks, this most useful Tip for new wp user
Tina Gleisner
Thanks for the “shift” and enter for single line spacing as I’ve wanted to figure this out for years … and never got around to finding the solution.
Ian
Hi,
This worked for me but the CSS doesn’t do anything in my page…
Will
Same thing happened to me. Is there an updated code to insert?
A. Lougheed
I’m searching everywhere for an answer … when I add a in the text editor, it is removed in the visual editor. Drives me crazy. Does wpbeginner have a recommendation?
Should I add a plug-in to stop this?
I tried a plugin years ago, but I had to go back and re-format every post.
Any link with tutorial or advice is greatly appreciated!
WPBeginner Support
Actually it is also removed from your comment.
Please see our guide on How to add special characters in WordPress posts.
Administrador
Jessica
Whats the code for adjusting line height for one single post?
Bharadwaj
Thank you, Helpful
Samadarshi
Thank you for such wonderful articles
I was completely lost when I started wordpress but now I have a pretty basic idea
Thank u
Neal Umphred
Thanks! This helped me tighten up my posts—except for the first paragraph in each post. For some reason, the lines appear to be double-spaced. Is there a snippet of code that I could add to Edit CSS that would allow me to tighten them?
Neal Umphred
Thanks! Adding the snippet (.post p{line-height: 1.5em;}) to my Edit CSS made my text so much easier to read. Now, here’s my problem: the opening paragraph in each WordPress post has much larger line spacing than the rest of the paragraphs—and it is NOT affected by this piece of line-height code. Is there another snippet of code that I could add to Edit CSS that would tighten up those opening lines?
tiffany
Thank you so much. Your site is remarkable. It has helped me so much. Subscribed!! Please keep up the great work!!
WPBeginner Support
Thanks for the kind words. We are glad to help.
Administrador
Joe Simmons
Thank you! I didn’t know about the “shift+enter” thing either.
Debby
Shift + Enter. Who knew it was that simple! Thank you, thank you, thank you!
Gamo Nana
thanks for the single line spacing with SHIFT + Enter
Bob M.
I’d like to thank you for this bit of wisdom (Shift+Enter) too!
JE
Thanks for the tutorial. Although, how can I adjust single paragraph line spacing? I have a 3 word title, centered and stacked in 3 lines. All of the lines have different font size, so the line spacings are inconsistent. I’ve been looking for a way to easily adjust through a text editor tool or plugin.
Any ideas?
Syed Balkhi
We just used a browser search box which you can find by pressing Ctrl + F
Mx
Finding .post p you used a search box. Will you tell me how to find that search box? Thanx4
Jun Han
This is very helpful.
Thanks.
http://www.digitalgrog.com.au/
it was my pet peeve until now ..thanks now i can space properly ..btw i made a list of hosts check itout
http://www.digitalgrog.com.au/australian/comparison-on-blog-web-hosting-for-australians/
Karen Surfy Mum
Awesome!! I also have wanting to find out how to do this for ages!!! So simple when you know… cheers xxx
Widdershins
Oiiiiiiiiiiii!!! I’ve been trying to find out how to do that for yonks!!!!
Thankyouthankyouthankyou
fastow2012
“If you do not find the .post p tag, then simply create one.”
Where? should i just copy/paste it anywhere in the css file?
WPBeginner Staff
preferably at the bottom of the css file.
Mx
Sorry, but I still dont get where to place it. Is is possible to explain it more detailed? Thanx
James
I’ve always wondered how to do this. Thanks for the training.
Valerie
I’m not even a true “beginner” but there are gaps in my knowledge and you have just solved one of the most frustrating things about WP for this writer and Word user… Thank you for this and for all your fantastic info… I continue to learn great things from your posts and your site. Thanks and cheers to you!
kelly
almost four years of blogging and finally! so awesome, thanks!!