--- id: 5d8a4cfbe6b6180ed9a1ca64 title: Part 133 challengeType: 0 --- ## Description
The legend has all the information is needs, but the title looks a little misaligned. Go to where you created your `legendTitle` variable and set the `position` to `relative` and the `left` to `20px` using `style` functions.
## Instructions
## Tests
```yml tests: - text: test-text testString: const th = $('.dashboard div table thead tr th')[0]; assert(th.style.position === 'relative' && th.style.left === '20px'); ```
## Challenge Seed
```html ```
### Before Test
```html D3 Dashboard
```
## Solution
```html ```