Dawn Theme - Video combined with the menu issue

Hi,

I’ve added an autoplay video that runs in a loop and combined it with my menu.

The issue that occured is the video is running with the menu on all pages, while I want the video to appear only in the main page.

Thanks in advance.

Hi @Yarin2
Can you share the code you have done to show the video on the page or
You can wrap the video with the below code to show only on the home page

{% if template contains 'index' %}

{% endif %}

Hi @Yarin2 , go to your theme.liquid and add the following code before tag :

{% unless template == "index" %}
 
{% endunless %}

Thank you for both answers, I was able to hide the video, but since the text of the menu is white, it’s gone as well.

How can I manage to perform this change and also change the font of the menu to be visible? (It can be Black)

Thanks, just add this to the same code I provide you :

{% unless template == "index" %}
 
{% endunless %}

Perfect. thank you very much