Question: After creating an active nav bar, ul bullets are not showing. html:
After creating an active nav bar, ul bullets are not showing.
html:
- Home
- Classes
- Schedule
- Contact
Find Your Inner Light
Path of Light Yoga Studio provides all levels of yoga practice
in a tranquil, peaceful environment. Whether you are new to yoga
or an experienced practitioner, our dedicated instructors can develop
a practice to meet your needs. Let your inner light shine at
the Path of Light Yoga Studio.
- Hatha, Vinyasa, and Restorative Yoga classes
- Drop-ins welcome
- Mats, blocks, and blankets provided
- Relax in our Serenity Lounge before or after your class
612 Serenity Way
El Dorado, AZ 86336
888-555-5555
CSS:
*{
margin: 0;
padding: 0;
list-style: none;
text-decoration: none;
font-family: "Segoe UI";
box-sizing: border-box;
}
body{
background: #ebb9df;
}
h2{
color:#8A1C7C
}
header{
width: 100%;
height: 80px;
background: #F5D5ED;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 100px;
}
.logo{
font-size: 28px;
font-weight: bold;
color: #8A1C7C;
}
.hamburger{
display: none;
}
.nav-bar ol {
display: flex;
}
.nav-bar ol li a {
display: block;
color: #8A1C7C;
font-size: 20px;
padding: 10px 25px;
border-radius: 50px;
transition: 0.2s;
margin: 0 5px;
}
.nav-bar ol li a:hover {
color: #8A1C7C;
background: #D991BA;
}
.nav-bar ol li a.active {
color: #8A1C7C;
background: #D991BA;
}
@media only screen and (max-width: 1320px) {
header {
padding: 0 50px;
}
}
@media only screen and (max-width: 1100px) {
header {
padding: 0 50px;
}
}
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
