Remove gradient from 2024 nav bar

This commit is contained in:
Vencislav Atanasov 2024-10-10 20:44:34 +03:00
parent 8f0082debe
commit e8a0f338e2
1 changed files with 3 additions and 0 deletions

View File

@ -28,6 +28,9 @@
if ($blog_slug === '2019' || $blog_slug === '2020') {
echo '<nav style="background: url(\''.get_template_directory_uri().'/img/navbg-'.$blog_slug.'.png\'); height: 84px">';
}
elseif ($blog_slug === '2024') {
echo '<nav style="background: none;">';
} else {
echo '<nav>';
}