Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Python

Paulius Aleksiunas
Paulius Aleksiunas
24,087 Points

I have a problem with Flask Static Files

Hello,

when I change this

body { background: beige; color: mediumorchid; }

to this

body { background: beige; }

my color wouln't change and still are mediumorchid. Why I can't see the black color?

2 Answers

Vittorio Somaschini
Vittorio Somaschini
33,371 Points

Hello Paulius.

I imagine there must be a more specific css rule in your css file that targets whatever element you want to change the color of.

Can you please provide the full css file?

ty

Dmitriy Ignatiev
PLUS
Dmitriy Ignatiev
Courses Plus Student 6,236 Points

Hi, Vittorio, i have the same issue, and i have no idea why it's happens.

My css file have only below record body{ background: red;

     }

but when i restart my server even kill server via shell and inspect my site after it shown me that my css have not changed and contain original records as below: body{ background: beige; color: mediumorchid;

           }

Why it is happened and what should i do to repair this.

Thank a lot in advance.