cancel
Showing results forย 
Search instead forย 
Did you mean:ย 

Text box color not filling in entire widget

ParkerLampman
7 - Data Storage
7 - Data Storage

I am trying to create a dashboard that is completely black. When I use a text box to display a title of my dashboard and have this text box in-between two other widgets I get a white border around my textbox and cannot figure out how to remove it. Has anyone experienced this same issue?

Below are images of the error I am seeing. You can see that when I use a widget that isn't a textbox there is not white bar separating the widgets, but my text boxes all have them.

Image of dashboard error:

ParkerLampman_0-1662574727735.png

 

2 REPLIES 2

Wojtek
9 - Travel Pro
9 - Travel Pro

Try this dashboard script 

dashboard.on('widgetready',function(d) {
$('.dashboard-layout-column').css('background-color', '#000000'); 
$('.dashboard-layout').css('background-color', '#000000');

});

 

Wojtek

ParkerLampman
7 - Data Storage
7 - Data Storage

Thank you! I forgot to mention I had that script in the dashboard already, but I still get the weird white lines around my textbox. If I move the textbox to not have any widgets next to the text box the lines below go away and the one to the right stays. But when I move the widgets to how I want to format them the text boxes show up. Attached are some images to show what I am seeing.

 

Stacked with only the white bar to the right.

ParkerLampman_1-1663072653567.png

 

How I want the format to be:

ParkerLampman_2-1663072811523.png

 

Any insights?