Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

active nav bar issue resolved #661

Merged
merged 1 commit into from
May 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading