What's new

Welcome to the forum 👋, Visitor

To access the forum content and all our services, you must register or log in to the forum. Becoming a member of the forum is completely free.

unordered list and CSS

louis

New member
Joined
Jun 4, 2024
Messages
6
Reaction score
0
HTML Coins
0
i have unordered list on a page. but my list are showing horizontal not vertical like i want. my css is in my html page.


<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Capture Ability - The Power of The iPhone</title>
<link rel="stylesheet" href="css/style.css" type="text/css">



<style>
ul.story {
list-style-type: none;
margin: 0;
padding: 0;
justify-content: left; /* Aligns the list items to the left */
background-color: #fff;
}
li {
position: relative;
}
li a {
display: block;
color: #800020;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
li a:hover {
background-color: #fff;
}
</style>


</head>
<body>
<div class="container">
<ul>
<li><a href="index.html">About</a></li>
<li><a href="inspirational.html">Inspirational</a></li>
<li class="dropdown">
<a href="javascript:void(0)">Technology</a>
<div class="dropdown-content">
<a href="tech1.html">The Power of The iPhone</a>
<a href="tech2.html">Wheelchair Camera Mount</a>
<a href="tech3.html">Outdoor Camera Mount</a>
<a href="tech4.html">Mini Tripods</a>
<a href="tech5.html">Fixed Lens Cameras</a>
<a href="tech6.html">Creating a New Device</a>
<a href="tech7.html">The Accessible Tripod</a>
<a href="tech8.html">Window Photography</a>
</div>
</li>
<li><a href="contact.html">Contact</a></li>
</ul>
<div style="text-align: left">
<img src="images/camerawheel.jpg" alt="camera being held to the side of a wheelchair">
</div>
<h1>Capture Ability</h1>
<p>"Capturing Dreams Beyond Barriers: Empowering Photographers of All Abilities!"</p>
<hr>
<h4>Choosing the best accessible camera for a person with disabilities - July 18, 2024</h4>
<p>Choosing the best accessible camera for a person with disabilities involves considering their specific needs and challenges. Here are some options that cater to different types of disabilities:</p>
<h3><strong>For Users with Limited Mobility or Dexterity:</strong></h3>
<ul class="story">
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ul>
<hr>
<footer style="text-align: center">
<p>© 2024 Capture Ability. All rights reserved.</p>
</footer>
</div>
</body>
</html>
 

Theme customization system

You can customize some areas of the forum theme from this menu.

  • Wide/Narrow view

    You can control a structure that you can use to use your theme wide or narrow.

    Grid view forum list

    You can control the layout of the forum list in a grid or ordinary listing style structure.

    Picture grid mode

    You can control the structure where you can open/close images in the grid forum list.

    Close sidebar

    You can get rid of the crowded view in the forum by closing the sidebar.

    Fixed sidebar

    You can make it more useful and easier to access by pinning the sidebar.

    Close radius

    You can use the radius at the corners of the blocks according to your taste by closing/opening it.

  • Choose the color combination that reflects your taste
    Background images
    Color gradient backgrounds
Back