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

Fix: Correct Formatting of "Follow Us" Line in Footer Section #1620

Closed
Closed
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
14 changes: 9 additions & 5 deletions Css-files/footer.css
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,13 @@ footer {
}

.footer-content {
text-align: start;
width: 100%;
max-width: 1200px; /* Control max width */
margin: 0 auto; /* Center the footer content */
display: flex;
flex-direction: column;
align-items: start;
padding-left: 1rem;
align-items: center; /* Center children horizontally */
justify-content: center;
}

.foot-panel1 .nav-link {
Expand Down Expand Up @@ -160,8 +162,10 @@ footer {

.follow-us {
font-size: 1.5rem;
margin: 0 45.5%;
margin-bottom: 20px;
margin: 0; /* Adjusted margin */
padding: 0 15px; /* Optional padding */
text-align: center; /* Center the text */
white-space: nowrap; /* Prevent text from breaking into a new line */
transition: color 0.3s ease;
}

Expand Down