---
title: "My tabs appear white"
canonical: "https://support.appfire.com/space/CT/1562411199/My%20tabs%20appear%20white"
format: markdown
---
## Purpose

My tabs appear white.

## Answer

> ⚠️ The following code only applies to Composition 3.3.1 and below. It will **not** work with Composition 4.0.0 and above.

This is the result of the use of Documentation Theme. Steps to remedy:

1. Go to the space having this problem.
2. **Browse** > **Space Admin**.
3. **Stylesheet** > **Edit**.
4. Insert the following and save:

```
.panel, #content .panel { 
border: 1px solid #6699CC; 
background-color: white; 
} 

.tab-navigation .tab a { 
border: 1px solid #6699CC; 
background-color: #6699CC; 
color: #FFFFFF; 
} 

.tab-navigation .tab a:hover { 
border: 1px solid #6699CC; 
background-color: #003366; 
color: #FFFFFF; 
} 

ul.tab-navigation .current a { 
border: 1px solid #6699CC; 
background-color: #FFFFFF; 
border-color-bottom: #FFFFFF; 
color: #000000; 
} 

ul.tab-navigation .tab a:hover { 
border: 1px solid #6699CC; 
background-color: #003366; 
color: #FFFFFF; 
}

.deck table.confluenceTable th.confluenceTh, .deck table.confluenceTable td.confluenceTd {
border: 1px solid #CCCCCC;
}

.deck-card {
background-color: white;
border-radius: 5px 5px 5px 5px;
}

.panel {
background-color: white;
}
```