This plugin will allow you to add code to your footer without having to tamper with your theme files:
https://www.ads-software.com/plugins/insert-headers-and-footers/
Using that plugin, add this code to your footer:
<div class="inner padd50 custom-footer-links">
<div class="container">
<div class="column padd-r-20">
<h4>Links 1</h4>
<ol>
<li><a href="#">Link</a></li>
<li><a href="#">Link</a></li>
<li><a href="#">Link</a></li>
<li><a href="#">Link</a></li>
<li><a href="#">Link</a></li>
</ol>
</div>
<div class="column">
<h4>Links 2</h4>
<ol>
<li><a href="#">Link</a></li>
<li><a href="#">Link</a></li>
<li><a href="#">Link</a></li>
<li><a href="#">Link</a></li>
<li><a href="#">Link</a></li>
</ol>
</div>
</div>
</div>
It’ll add two columns, each containing a list of links.
You’ll also need to add this CSS however you’ve been adding your custom CSS:
.footer .custom-footer-links li {
list-style-type: disc;
color: #fff;
}
.footer .custom-footer-links li a:link{
color: #696969; /* Change this */
}
.footer .custom-footer-links li a:hover,
.footer .custom-footer-links li a:focus{
color: #0282da !important; /* Change this */
}
In the above CSS, you’ll see /* Change this */
twice. The first is the link color; the second is the link color when the cursor hovers over it. Change these to whatever you require.