--- id: 5d8a4cfbe6b6180ed9a1ca65 title: Part 134 challengeType: 0 dashedName: part-134 --- # --description-- The legend and pie graph look a little off as well. Go to where you created your `legend` variable and add a `position` of `relative` and a `top` of `30px` using `style` functions. # --hints-- test-text ```js const table = $('.dashboard div table')[0]; assert(table.style.position === 'relative' && table.style.top === '30px'); ``` # --seed-- ## --before-user-code-- ```html D3 Dashboard
``` ## --seed-contents-- ```html ``` # --solutions-- ```html ```