Skip to content

[Website] Fix heading color inconsistency in Getting Started section#2569

Open
Mashikha1 wants to merge 7 commits intomeshery:masterfrom
Mashikha1:fix-getting-started-heading
Open

[Website] Fix heading color inconsistency in Getting Started section#2569
Mashikha1 wants to merge 7 commits intomeshery:masterfrom
Mashikha1:fix-getting-started-heading

Conversation

@Mashikha1
Copy link

@Mashikha1 Mashikha1 commented Feb 5, 2026

Description

This PR fixes the inconsistent color of the "Use Meshery Playground" heading in the Getting Started section.

The heading was inheriting an incorrect text color, making it appear different from other step headings.

This change updates the markup to ensure consistent styling and better visual clarity.


Notes for Reviewers

  • Tested locally using Jekyll
  • No functional impact
  • Improves UI consistency and accessibility

Signed commits

  • Yes, I signed my commits.

This PR fixes #2568

Screenshot 2026-02-05 at 11 57 17 AM ![Uploading Screenshot 2026-02-05 at 11.57.17 AM.png…]() ![Uploading Screenshot 2026-02-05 at 11.57.17 AM.png…]()

Notes for Reviewers

Signed commits

  • Yes, I signed my commits.

Signed-off-by: Padhmashikha <padhmashikhaiyapparaju@Padhmashikhas-MacBook-Pro.local>
@netlify
Copy link

netlify bot commented Feb 5, 2026

Deploy Preview for mesheryio-preview ready!

Name Link
🔨 Latest commit bcd8b69
🔍 Latest deploy log https://app.netlify.com/projects/mesheryio-preview/deploys/6992b78f5de2630009f2fcbd
😎 Deploy Preview https://deploy-preview-2569--mesheryio-preview.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify project configuration.

@gemini-code-assist
Copy link
Contributor

Summary of Changes

Hello @Mashikha1, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!

This pull request enhances the visual consistency and accessibility of the website's 'Getting Started' page. It specifically addresses a styling issue with a key heading by correcting its HTML element, ensuring it aligns visually with other similar elements. Additionally, the PR includes minor code formatting adjustments to improve the overall maintainability and readability of the page's source.

Highlights

  • UI Consistency Fix: The 'Use Meshery Playground' heading in the Getting Started section now displays with a consistent color, resolving a previous inconsistency where it inherited an incorrect text color.
  • HTML Structure Correction: The HTML tag for the 'Use Meshery Playground' heading was changed from a <span> to an <h2> to ensure proper semantic structure and consistent styling with other step headings.
  • Code Formatting Improvements: Various sections of the _includes/getting-started.html file, particularly around copy-to-clipboard elements and installation instructions, have been reformatted for improved readability and consistent indentation.
Changelog
  • _includes/getting-started.html
    • Replaced <span> tag with <h2> for the 'Use Meshery Playground' heading to correct styling and semantic structure.
    • Applied consistent formatting and indentation to {% include copy-to-clipboard.html %} Liquid tags and their surrounding HTML elements across various installation method sections (Bash, Brew, Docker, Kubernetes, Windows, Minikube, GKE, EKS).
Activity
  • The changes were tested locally using Jekyll.
  • The author confirmed that there is no functional impact from these changes.
  • The pull request aims to improve UI consistency and accessibility.
  • The author has signed their commits.
  • This PR fixes issue Bug: Inconsistent text color in Step 01 description #2568.
  • Screenshots were provided to illustrate the visual changes.
Using Gemini Code Assist

The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.

Invoking Gemini

You can request assistance from Gemini at any point by creating a comment using either /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands on the current page.

Feature Command Description
Code Review /gemini review Performs a code review for the current pull request in its current state.
Pull Request Summary /gemini summary Provides a summary of the current pull request in its current state.
Comment @gemini-code-assist Responds in comments when explicitly tagged, both in pull request comments and review comments.
Help /gemini help Displays a list of available commands.

Customization

To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/ folder in the base of the repository. Detailed instructions can be found here.

Limitations & Feedback

Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here.

You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension.

Footnotes

  1. Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution.

Copy link
Contributor

@gemini-code-assist gemini-code-assist bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

This pull request successfully addresses the heading color inconsistency by changing a <span> to an <h2> tag, which is a good semantic improvement. The PR also includes a lot of code reformatting for readability.

However, the reformatting has introduced several critical issues:

  1. Invalid HTML: A <div> element is placed inside a <p> tag, which is invalid and can cause rendering problems.
  2. Broken Copy-Paste Functionality: In many places, the clipboard_text attribute for the copy-to-clipboard functionality has been split across multiple lines. This introduces newlines and extra whitespace into the copied commands, which will cause them to fail when pasted into a terminal.
  3. Duplicate HTML IDs: There are multiple elements with the same id (e.g., start-helm-v3, start-windows). Element IDs must be unique within a document. This will break the UI feedback for the copy buttons.

I've added specific comments with suggestions for each of these issues. Please address them to ensure the page functions correctly.

Comment on lines +15 to 17
The fastest way to put your hands on Meshery is in its playground. No installation required. Just click and go!
<div class="button-para"><a class="highlight" href="https://play.meshery.io">Use Meshery Playground</a></div>
</p>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

Placing a block-level element like <div> inside a <p> tag is not valid HTML. This can lead to unexpected rendering issues in browsers. The <p> tag should be closed before the <div> starts.

Suggested change
The fastest way to put your hands on Meshery is in its playground. No installation required. Just click and go!
<div class="button-para"><a class="highlight" href="https://play.meshery.io">Use Meshery Playground</a></div>
</p>
The fastest way to put your hands on Meshery is in its playground. No installation required. Just click and go!
</p>
<div class="button-para"><a class="highlight" href="https://play.meshery.io">Use Meshery Playground</a></div>

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Mashikha1 this comment is valid and needs to be addressed.

@Bhumikagarggg
Copy link
Contributor

@Mashikha1 Thank you for your contribution! Let's discuss this during the website call tomorrow at 6:30 PM IST | 7 AM CST Add it as an agenda item to the meeting minutes, if you would 🙂

Mashikha1 and others added 4 commits February 9, 2026 12:29
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Mashikha <padhmashikha.i@gmail.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Mashikha <padhmashikha.i@gmail.com>
Copy link
Member

@kishore08-07 kishore08-07 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Mashikha1 Keep only the minimal change required to fix this issue.
Specifically, replace the <span> with an <h2> for that heading, and kindly revert all other unrelated changes.

@Bhumikagarggg
Copy link
Contributor

@Mashikha1 Thank you for your contribution! Let's discuss this during the website call tomorrow at 6:30 PM IST | 7 AM CST Add it as an agenda item to the meeting minutes, if you would 🙂

Comment on lines +15 to 17
The fastest way to put your hands on Meshery is in its playground. No installation required. Just click and go!
<div class="button-para"><a class="highlight" href="https://play.meshery.io">Use Meshery Playground</a></div>
</p>
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Mashikha1 this comment is valid and needs to be addressed.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Bug: Inconsistent text color in Step 01 description

4 participants