Viewing 1 replies (of 1 total)
  • 1. Find the .mega-container in the css in you template. This is most likely to be in the style.css but may not be. You may need to look through all the css files in your theme.

    2. Add the following line to that selector
    background-color: rgba(255, 255, 255, 0);

    i.e.

    .mega-container {
        background: #f7f5ee;
        max-width: 1170px;
        margin: auto;
        margin-top: 20px;
        overflow: visible;
    }

    should now look like

    .mega-container {
        background: #f7f5ee;
        max-width: 1170px;
        margin: auto;
        margin-top: 20px;
        overflow: visible;
        background-color: rgba(255, 255, 255, 0);
    }

    and then you should get a transparent background

Viewing 1 replies (of 1 total)
  • The topic ‘Making pages transparent’ is closed to new replies.