# Additional CSS

**Additional CSS** section in the WordPress Customizer allows you to add custom CSS to style your site without modifying theme files.

Here's how to use this feature effectively:

<figure><img src="/files/ge9BXziIQZOekpLAq9g7" alt=""><figcaption></figcaption></figure>

#### **Customizing with Additional CSS**: <a href="#customizing-with-additional-css" id="customizing-with-additional-css"></a>

1. **Accessing Additional CSS**:
   * Go to **Appearance > Customize**.
   * Click on the **Additional CSS** section.
2. **Adding Custom CSS**:
   * In the text area, you can write or paste your custom CSS code.
   * As you type, you’ll see a live preview of your changes on the right side.
3. **Best Practices**:
   * **Target Specific Elements**: Use specific selectors to apply styles to particular elements.
   * **Keep It Organized**: Add comments to your CSS to make it easier to understand and maintain.
   * **Test Changes**: Use browser developer tools to test changes before adding them to the Additional CSS section.
4. **Common Uses**:
   * Overriding default theme styles.
   * Changing colors, fonts, and sizes.
   * Adding margins, padding, or borders.
   * Hiding or showing specific elements.

**Example:**

To change the background color of your site’s header:

```
.site-header { background-color: #f4f4f4;}
```


---

# 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://buddhathemes-test.gitbook.io/ogie/theme-customizer/additional-css.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.
