Skip to content

Commit

Permalink
Merge pull request #661 from vishal02527/main
Browse files Browse the repository at this point in the history
active nav bar issue resolved
  • Loading branch information
khushi-joshi-05 authored May 30, 2024
2 parents 749133e + 431036e commit 57e7450
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 3 deletions.
5 changes: 5 additions & 0 deletions Css-files/ContactUpdate.css
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,11 @@ body {
font-weight: 400;
}

#active-page{
color: #dc3545;
border-bottom: 2px solid #dc3545;
}

/*
=========================================
Custom Scrollbar
Expand Down
5 changes: 5 additions & 0 deletions Css-files/content.css
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@ body {

}

#active-page{
color: #dc3545;
border-bottom: 2px solid #dc3545;
}

.head_container_service{
height:500px;
}
Expand Down
5 changes: 5 additions & 0 deletions Css-files/services.css
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,11 @@
margin-left: 370px;
}

#active-page{
color: #dc3545;
border-bottom: 2px solid #dc3545;
}

@keyframes gradient-animation {
0% {
background-position: 0% 50%;
Expand Down
2 changes: 1 addition & 1 deletion Html-files/menu.html
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@

<ul class="ul1">
<li><a href="../index.html">Home</a></li>
<li><a href="menu.html">Menu</a></li>
<li><a href="menu.html" id="active-page">Menu</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="ContactUpdate.html">Contact Us</a></li>
</ul>
Expand Down
2 changes: 1 addition & 1 deletion Html-files/services.html
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
<ul class="ul1">
<li><a href="../index.html">Home</a></li>
<li><a href="menu.html">Menu</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="services.html" id="active-page">Services</a></li>
<li><a href="ContactUpdate.html">Contact Us</a></li>
</ul>
<div>
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
<li><a class="" href="Html-files/cart.html">Cart</a></li>
</ul>
<ul class="ul1" id="nav-links">
<li><a href="../index.html">Home</a></li>
<li><a href="../index.html" id="active-page">Home</a></li>
<li><a href="Html-files/menu.html">Menu</a></li>
<li><a href="Html-files/services.html">Services</a></li>
<li><a href="Html-files/ContactUpdate.html">Contact Us</a></li>
Expand Down
5 changes: 5 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,11 @@ body {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

#active-page{
color: #dc3545;
border-bottom: 2px solid #dc3545;
}

@media (max-width: 992px) {
.navbar-nav {
text-align: center;
Expand Down

0 comments on commit 57e7450

Please sign in to comment.