Could you please advise how to remove the default margin and padding from a ul element? Because of them, the bullet points extend beyond the edges of the screen.
This topic has 2 replies, 2 voices, and was last updated 16 hours, 57 minutes ago ago by Andrew Mitchell
Could you please advise how to remove the default margin and padding from a ul element? Because of them, the bullet points extend beyond the edges of the screen.
Hello, st7878,
Unfortunately, it cannot be removed; however, it can be modified, for example, by using the following code:
ul {
margin: 0;
padding: 0;
}
Best regards,
The 8Theme Team
You must be logged in to reply to this topic.Log in/Sign up