> For the complete documentation index, see [llms.txt](https://ce-docs.keywordrush.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://ce-docs.keywordrush.com/troubleshooting/small-font-size-in-product-blocks.md).

# Small font size in product blocks

The plugin uses a "rem" based approach for font sizing, which means font sizes are relative to the root font size of the document (the `html` tag, usually 16px by default). If your WordPress theme sets a very small base font size, it will affect all text sizes in plugin blocks, making them appear smaller than expected.

#### Possible Solutions

1. **Adjust the root font size.** Navigate to **Appearance > Customize**. Scroll down to **Additional CSS** and add the following:

```css
html {
  font-size: 100%;
}
```

2. **Override the font size for plugin blocks.** If adjusting the theme's font size is not ideal, you can override the font size for the plugin blocks directly. Use the following CSS to set the font sizes in pixels or ems (instead of rems):

```css
.cegg5-container {
    font-size: 16px !important;
}

.cegg5-container .btn {
    --cegg-btn-font-size: 16px;
}

.cegg5-container .fs-6, .cegg5-container .fs-5 {
    font-size: 16px !important;
}

.cegg5-container .fs-4, .cegg5-container .h4 {
    font-size: 18px !important;
}
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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://ce-docs.keywordrush.com/troubleshooting/small-font-size-in-product-blocks.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.
