Unfortunately, I'm facing this issue:
I have a lengthy menu that is extending to the next line instead of collapsing, but it is not looking good.
Here is the CSS code:
.navigation li {
display: inline;
margin-top: 5px;
}
.navigation a:link {
margin: 3px;
padding: 4px;
color: #ffffff;
border: 2px solid #2304d1;
font-size: 30px;
text-decoration: none;
}
And here is the result:
https://i.sstatic.net/01REMECY.png
The output is quite messy. I want the items on the second line to have some space between them and not overlap with the first line.
Even after adding margin top, nothing seems to change...