diff --git a/docs/fetching/dynamic.md b/docs/fetching/dynamic.md
index e62d7b1..007d76b 100644
--- a/docs/fetching/dynamic.md
+++ b/docs/fetching/dynamic.md
@@ -122,9 +122,9 @@ page = DynamicFetcher.fetch('https://example.com', proxy='http://username:passwo
### Downloading Files
```python
-page = DynamicFetcher.fetch('https://raw.githubusercontent.com/D4Vinci/Scrapling/main/images/poster.png')
+page = DynamicFetcher.fetch('https://raw.githubusercontent.com/D4Vinci/Scrapling/main/images/main_cover.png')
-with open(file='poster.png', mode='wb') as f:
+with open(file='main_cover.png', mode='wb') as f:
f.write(page.body)
```
diff --git a/docs/fetching/static.md b/docs/fetching/static.md
index 5b2a2dc..22ce625 100644
--- a/docs/fetching/static.md
+++ b/docs/fetching/static.md
@@ -275,8 +275,8 @@ def scrape_products():
```python
from scrapling.fetchers import Fetcher
-page = Fetcher.get('https://raw.githubusercontent.com/D4Vinci/Scrapling/main/images/poster.png')
-with open(file='poster.png', mode='wb') as f:
+page = Fetcher.get('https://raw.githubusercontent.com/D4Vinci/Scrapling/main/images/main_cover.png')
+with open(file='main_cover.png', mode='wb') as f:
f.write(page.body)
```
diff --git a/docs/index.md b/docs/index.md
index e61b458..68185e8 100644
--- a/docs/index.md
+++ b/docs/index.md
@@ -2,11 +2,16 @@
.md-typeset h1 {
display: none;
}
+[data-md-color-scheme="default"] .only-dark { display: none; }
+[data-md-color-scheme="slate"] .only-light { display: none; }
+