I want to expand the footer by adding 3 more links to the right side of the logo. These new links should float to the right and always be positioned about 100px from the right edge of the web browser.
Check out my JSFiddle for reference:
In my attempt at using CSS, I copied and pasted the existing list but struggled to get the new links to align correctly on the right side.
footer {
background-color: #30659B;
height: 135px;
width: 100%
}
.logo2 {
width: 150px;
fill: white;
display: block;
position: relative;
margin: 0 auto;
padding-top: 27px;
}
.nav2 {
list-style-type: none;
overflow: hidden;
position: absolute;
display: table;
text-align: center;
margin-top: -22px;
padding: 0;
}
.li2 {
display: inline-block;
padding: 0;
font-family: proxima nova;
font-size: 10px;
text-decoration: none;
}
.li2 a {
display: block;
text-decoration: none;
text-align: center;
color: white;
/* margin: 32px 20px 0px 20px; */
margin-left: 100px;
}
<footer>
<div class="logo2">
<svg class="logo2" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 268 50"><title>Artboard 1</title><path d="M46.26,10.5h6.46V35.17H65.55v5.69H46.26Z"/><path d="M82.8,38.59a9.1,9.1,0,0,1-7,2.82c-3.5,0-7.65-2.37-7.65-7.28,0-5.14,4.14-7,7.65-7,2.91,0,5.51.91,7,2.69v-3c0-2.23-1.91-3.69-4.82-3.69a9.25,9.25,0,0,0-6.42,2.59l-2.18-3.87A14.42,14.42,0,0,1,79,18.33c5,0,9.6,2,9.6,8.33v14.2H82.8Zm0-5.74a5.78,5.78,0,0,0-4.64-1.91c-2.28,0-4.14,1.23-4.14,3.32s1.87,3.23,4.14,3.23a5.78,5.78,0,0,0,4.64-1.91Z"/><path d="M109.15,38.08a10.29,10.29,0,0,1-7.74,3.32c-4.82,0-7.1-2.64-7.1-6.92V18.88h5.78V32.21c0,3,1.59,4.05,4.05...
Here's a preview of how the updated footer should look: https://i.sstatic.net/4VSPQ.png