getgrav / grav-plugin-admin

Grav Admin Plugin
http://getgrav.org
MIT License
355 stars 227 forks source link

Left margin won't return to default after using bullets using Grav #2312

Closed bpappas20 closed 2 years ago

bpappas20 commented 2 years ago

When I use bullets on my Grav site, the margin remains at the first bullet when using any other format, such as headings or plain text.

CODE

Heading

It doesn't occur here for headings, but it does for plain text. Any idea what could be the cause on my site?

Thanks for your help. -Bruce

bpappas20 commented 2 years ago

Update. I tried a clean Grav install on a different site and the same issue repeated. So it's not an install problem.

rhukster commented 2 years ago

You need a line break after the bullet list:

#### Heading
* first bullet
* second bullet

#### New heading
* first bullet
* second bullet

I personally always put new lines before and after lists, as well as before and after headings.

bpappas20 commented 2 years ago

Worked for the text in my example above, but not for the heading in my actual page.

To raise the group temp:

To lower the group temp:

rhukster commented 2 years ago

Please post some screenshots (of code in editor and rendered on site) as i'm not clear on what's going on.

bpappas20 commented 2 years ago

You pointed me in the right direction. Grav wasn't liking my \
that I was using for line breaks. I replaced them with double spaces and a return, added one between bullet lists, and it works fine. Weird, but it's fixed. Thanks.