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.

Read More

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

Related posts

2 comments

  1. 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;
    }
    
  2. 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);
    

    }

Comments are closed.