AshChas
AshChas

Reputation: 21

Change the background colour from white to transparent

I need help with changing the background colour from white to transparent (Website URL is http://whosonlocation.com/). The website is a WordPress website.

The white background behind the menu and the logo should be transparent when page is loaded. But when it scrolls it turns white.

Thanks! I am newbie to Stack Overflow so any suggestions would help.

Upvotes: 1

Views: 158

Answers (2)

Asim Iqbal
Asim Iqbal

Reputation: 148

Here is another solution:

Change the CSS (which is line number 754) in (style.css) file

.is-sticky .navbar-default {

background-color: rgba(0, 0, 0, 0);

}

Upvotes: 0

A. Campbell
A. Campbell

Reputation: 414

Inspecting your website it looks like the nav is transparent. If I'm understanding you correctly, you want the nav to overlap the header image.

At the moment the image is below the nav. One possible solution would be to add the following to style.css in your child theme:

.navbar {
    position: absolute;
}

Upvotes: 1

Related Questions