Eduhub-Community / Eduhub-Community.github.io

Community Website
https://eduhubcommunity.tech/
MIT License
78 stars 195 forks source link

issue with a website footer alignment #556

Open 12pavani opened 6 months ago

12pavani commented 6 months ago

Is your feature request related to a problem? Please describe.

Yes, my feature request is related to a specific problem. The issue I've encountered is issue with a website footer alignment, its alligned in the left side, it should be allign in the center of the web page . I believe that the proposed feature could address this problem by changing css code of footer.

Describe the solution you'd like

HTML Structure: Ensure that your HTML structure for the footer is set up in a way that allows for easy styling. Here's a basic example:

CSS Styling: Use CSS to style the footer and center it. Apply the following styles: footer { width: 100%; background-color: #yourFooterColor; / Add your preferred background color / text-align: center; padding: 20px; / Adjust padding as needed / position: fixed; / If you want a fixed footer / bottom: 0; / If you want a fixed footer / } Adjust the styles according to your design preferences and the structure of your webpage.

Container Element: If your footer content is wrapped in a container div, make sure to apply styles to the container as well: .footer-container { max-width: 1200px; / Adjust to your preferred max width / margin: 0 auto; / Center the container / } Add the footer-container class to the wrapping div around your footer content.

Describe alternatives you've considered

No response

Additional context

No response

Code of Conduct

github-actions[bot] commented 6 months ago

👋 @12pavani

Thank you for raising an issue. We will investigate into the matter and get back to you as soon as possible.

Please make sure you have given us as much context as possible.

Salonijain2210 commented 6 months ago

Please allow me the opportunity to resolve this issue at hand . I have designed many footers and one of the practice template's footer is given below sample_footer

12pavani commented 6 months ago

Yes I have given the sufficient content ☺️

Salonijain2210 commented 6 months ago

@12pavani should I work on it?

Salonijain2210 commented 6 months ago

@12pavani I have made some suitable changes in footer.