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

Fixed about page for mobile screen size #928

Merged
merged 1 commit into from
Aug 8, 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
16 changes: 12 additions & 4 deletions about.html
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@

</script>

<div class="preloader">
<!-- <div class="preloader">
<div class="loader">
<div class="ytp-spinner">
<div class="ytp-spinner-container">
Expand All @@ -194,7 +194,7 @@
</div>
</div>
</div>
</div>
</div> -->
<header class="header-area">
<div class="navbar-area">
<div class="container">
Expand Down Expand Up @@ -354,6 +354,14 @@ <h2 class="header-title wow fadeInUp" data-wow-duration="1.3s" data-wow-delay="0
max-width: 80%;
/* Adjust this value to increase or decrease the margins */
}

@media (max-width:768px) {
.blog-content{
max-width: 100%;
}


}
</style>
<div class="card">
<h2>About Us</h2>
Expand Down Expand Up @@ -546,10 +554,10 @@ <h4 class="title">Resources</h4>
</div>
</div>
</div>
<div class="col-lg-3 col-md-5 col-sm-5 mt-15">
<div class="col-lg-3 col-md-12 col-sm-5 mt-15">
<div class="footer-contact mt-50 wow fadeIn" data-wow-duration="1s" data-wow-delay="0.8s" style="justify-content: space-around !important;">
<div class="footer-title">
<h4 class="title">Contact Us</h4>
<h4 class="title" style="margin-left: 1rem;">Contact Us</h4>
</div>
<ul class="contact custom-margin">
<li class="d-sm-flex justify-content-center">
Expand Down
11 changes: 10 additions & 1 deletion assets/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -2265,6 +2265,9 @@ p {
.custom-margin-big{
margin-left: 20px;
}
.footer-title{
width: 100%;
}
}

.link-wrapper .link {
Expand Down Expand Up @@ -2900,6 +2903,7 @@ text-align: center;

@media (max-width: 600px) {
.footer-link {
padding-left: 1rem;
flex-direction: column;
align-items: flex-start;
}
Expand All @@ -2922,12 +2926,14 @@ text-align: center;
}

.footer-about{
margin-left: 0px;
margin-left: 1rem;
}
}

@media (max-width: 600px) {
.footer-contact .contact li {
padding-left: 1rem;

display: flex;
align-items: center;
justify-content: flex-start;
Expand All @@ -2941,11 +2947,14 @@ text-align: center;
.footer-contact .contact li p,
.footer-contact .contact li div {
width: auto;

}
}

@media (max-width: 1024px) {
#footer{
margin-top: 160px;
padding-left: 1rem;

}
}