Hi,
We use css script to show transparant menu bar on home page and rest of the pages black menu bar brackground. We want to involve the transparent background on more pages, by example the contact page. How to involve more pages in the css script, so we are able to choose which pages have the transparent background. So include more pavers, whenever we like.
Question: add more pages besides index to display the transparent menu bar.
site: adfarm.nl
theme: dawn
The script:
{% if template.name == 'index' %} .header-wrapper { position: absolute !important; width: 100% !important; top: 0px !important; background-color: transparent !important; color: black !important; /* Set text color to black */ } {% else %} .header-wrapper { background-color: black !important; /* Set background color to black */ color: white !important; /* Set text color to white */ } {% endif %}