-
Notifications
You must be signed in to change notification settings - Fork 122
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
changing text align centre #391
Open
ambrishgoswami
wants to merge
1
commit into
GarimaSingh0109:main
Choose a base branch
from
ambrishgoswami:main
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,7 @@ | |
<body> | ||
|
||
<header> | ||
<h1>WasteManagement</h1> | ||
<h1>Waste Product Management</h1> | ||
<nav> | ||
<ul> | ||
<li> | ||
|
@@ -208,10 +208,10 @@ <h3>Grow Your Own Food</h3> | |
|
||
<!-- Eco-blogs --> | ||
<section class="eco-blogs" id="eco-blogs"> | ||
<h2 class="blogs-section-title"> | ||
<h2 class="blogs-section-title"style="text-align: center;"> | ||
Essential Eco Blogs: Your Guide to a Greener Tomorrow! | ||
</h2> | ||
<div class="eco-blogs-container"> | ||
<div class="eco-blogs-container" style="text-align: center;"> | ||
Comment on lines
+211
to
+214
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🛠️ Refactor suggestion Avoid inline styles for layout and positioning Using inline styles (
Move the styling to your CSS file: .blogs-section-title,
.eco-blogs-container {
text-align: center;
} Then remove the inline styles: - <h2 class="blogs-section-title"style="text-align: center;">
+ <h2 class="blogs-section-title">
Essential Eco Blogs: Your Guide to a Greener Tomorrow!
</h2>
- <div class="eco-blogs-container" style="text-align: center;">
+ <div class="eco-blogs-container"> |
||
<div class="eco-blogs-card"> | ||
<div | ||
class="card-header" | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
💡 Codebase verification
Title inconsistency detected - "Waste Product Management" appears only once
Based on the search results, the title "Waste Product Management" appears only once in
ecotips.html
as anh1
heading, while everywhere else in the codebase (including other parts of the same file) consistently uses "Waste Management". This creates an inconsistency in branding and user experience.ecotips.html
: Line containing<h1>Waste Product Management</h1>
should be changed to<h1>Waste Management</h1>
to maintain consistency with:🔗 Analysis chain
Verify the title change impact
The heading has been changed to "Waste Product Management", but this change needs to be consistent across the site.
Let's verify the title consistency:
🏁 Scripts executed
The following scripts were executed for the analysis:
Script:
Length of output: 4539