Reputation: 19
I have a portfolio I'm making through Cargo Collective. I'm using one of their pre-made themes but have customized it to my liking. The last thing I'm trying to figure out how to do is align this set of vertical links to horizontal instead.
The site currently looks like this.
This is a mock up I made of what I want i'm trying to get it to look like.
Thank you everyone!
Upvotes: 0
Views: 1067
Reputation: 882
Remove your margin: 650px;
on your .navigation a
. Add float: right;
to your ul
instead and play with margins to get it right.
Upvotes: 1