Kerim Tim.
Kerim Tim.

Reputation: 1159

How to remove links from paddings between menu items

I'm trying to make a norizonal list menu
I applied some paddings between each menu item

I'd like to know, how to add padding between them
Without making those paddings linkable

enter image description here

Hope it makes sense.

Upvotes: 0

Views: 34

Answers (1)

Praveen Kumar Purushothaman
Praveen Kumar Purushothaman

Reputation: 167182

Looks like I guess you have something similar to:

<li><a href="#">Home</a></li>
<li><a href="#">Services</a></li>

Use this CSS for the above scenario:

li {margin-right: 100px;}

Upvotes: 1

Related Questions