Hi I'm having an issue here with paragraph or break spacing not working. In the standard wp visual editor htmp panel, it shows the P tags fine. But when saved and the page is reloaded, it's all run on text with the next paragraph or line after break on the next immediate line and not with any spacing. I scanned the visual editor style sheet but can't seem to figure out how to add more line spacing between paragraphs, or after the break/return (enter). Where would I find that and will it apply to all pages? Thanks
Hello, To make the space between the paragraph you can use </br> tag or you can just "shift+enter" to make the space between the paragraph.
Thanks but what I was asking was where in the styles page can I find the actual code for the paragraphs - so I can add the spacing there to make it apply throughout the theme. Meanwhile, in case anyone else is having this issue, I found a "work around" for now and that is to go to the styles options in the theme control options and enter .fullwidth p { margin: 20px; } in the field. That works to a degree, though I'd rather have the actual css code option
Hello, Put the following code in your "style.css" file Code: p, dl, hr, h1, h2, h3, h4, h5, h6, ol, ul, pre, table, address, fieldset, figure { margin-bottom: 20px; } you will get the file in your theme directory. Open the file and put the code at the top of the page where css codes start. It will be on near about 20 number line.