Posted - 08/29/2020 : 08:16:55
Hi, I see you have that menu wrapped in a span <span> tag and that is not really proper use of the span tag. https://www.w3schools.com/tags/tag_span.asp
What you should do is change the span tag to a div <div> tag there. Where you have <span class="footer1">, change that to <div class="footer1">, then the closing </span> tag, change to </div>
To add some space between the links there, you can just add the following to your style.css file ul.ectmenu1 li{ padding-left:10px }
Thanks, David
Edited by - dbdave on 08/29/2020 08:17:50
|