-
Mark Morgan
Hi,
Just had a look through a blog post on my phone and the bullet list starts almost in the middle of the display which is way too far over. I actually had a list also inside a background color, so I removed the color but it’s still too far over.
Here’s an example of a post:
https://wherearethosemorgans.com/best-things-to-do-in-ithaca-ny/
I’d really like to have my bulleted lists begin closer to the left side of the screen. Is this possible with GP? Is there some CSS I can use please?
Thanks so much in advance,
Mark -
Hi there,
GP has default margin added to
ol
andul
, you can override it with the below CSS:ol, ul { margin-left: 20px; }
if you only want it to be applied to the mobile, then we can add a media query:
@media(max-width: 768px) { ol, ul { margin-left: 20px; } }
-
Mark Morgan
Hi Ying,
Thanks so much, I changed it to 40px on mobile only and it works great!
Cheers!
Mark -
Glad to hear that 🙂
- You must be logged in to reply to this topic.