# Adding Custom CSS Styling

The landing page generated by Inveterate is not a Shopify page, therefore you're unable to modify the code directly. But since it still loads on the front-end within your theme you're able to add code to a shared layout file that will affect the page.

To add custom CSS to the landing page:

1. Create a new file in the snippets/ folder. This file can be named whatever you'd like, we recommend using `inveterate-styles.liquid`
2. In the file you created, add an HTML `<style>` tag
3. Wrap the style tag in `{% if request.path == '/community/membership' %}`  - this prevents the styles from leaking out to other pages
4. Render the snippet in layout/theme.liquid anywhere within the `<head>` HTML element: `{% render 'inveterate-styles' %}`
5. Then back in the snippet file you should be able to write any custom CSS for the landing page

**A better view of steps 2 & 3 inside of `inveterate-styles.liquid` :**

```
{% if request.path == '/community/membership' %}
  <style>
    // Add custom CSS here
  </style>
{% endif %}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://help.inveterate.com/help-center/guides/program-setup/landing-page/adding-custom-css-styling.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
