Footer code wonky

Joined
Feb 15, 2021
Messages
99
Reaction score
0
please see


and


how can i make the icons next to each other left to right?

not up and down as is now?

it works on other pages

thanks!
 
Joined
Nov 13, 2020
Messages
302
Reaction score
38
Make it an unnumbered list and style it like any horizontal menu:
Code:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<!-- <link rel="stylesheet" href="styles.css"> -->
<style>
.foot ul{
    display: inline-block;
    list-style: none;
}
.foot ul li{
    float:left;
}
.foot ul li a{
    display: block;
    padding: 15px;

}
</style>
<title>freeCodeCamp Survey Form</title>
</head>
<body>
    <div class="foot">
    <ul>
        <li><a href="#"><img src="ICONS/black_(17).png" alt="media"></a></li>
        <li><a href="#"><img src="ICONS/black_(20).png" alt="media"></a></li>
        <li><a href="#"><img src="ICONS/black_(14).png" alt="media"></a></li>
        <li><a href="#"><img src="ICONS/black_(23).png" alt="media"></a></li>
        <li><a href="#"><img src="ICONS/black_(12).png" alt="media"></a></li>
        <li><a href="#"><img src="ICONS/black_(83).png" alt="media"></a></li>
        <li><a href="#"><img src="ICONS/black_(19).png" alt="media"></a></li>
    </ul>
    </div>
</body>
</html>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Footer issues 3
Non matching code 4
Same code displayed differently 1
Max width question 1
Hamburger crisis 3
Footer frustrations 1
Subtle media query problem 0
Wonky image crisis 0

Members online

Forum statistics

Threads
473,769
Messages
2,569,578
Members
45,052
Latest member
LucyCarper

Latest Threads

Top