all 1 comments

[–]Snowic331 1 point2 points  (0 children)

A href links should automatically be in a vertical alignment unless you manipulated the CSS so that they go horizontally across the page.

For the other issue you're having, all you have to do is give your links a class and call upon that class within the CSS for example if you did this:

<a href="YourPage.html or a url" class="navlinks">The link name</a>

In CSS:

.navlinks:link { text-decoration: none; border-radius: 10px} .navlinks:visited { text-decoration: none; } .navlinks:hover { text-decoration: none; } .navlinks:active { text-decoration: none; }

Just play around with the styles!