I have been working on an Angular 7 project with fullpagejs by Alvarotrigo. Everything seems to be functioning properly, but I am facing an issue where the content of my website is not visible because the color of fullpagejs covers it all. When I use normal content, it shows up fine.
Works fine under normal circumstances
<div id="fullpage">
<div class="section">Section 1</div>
<div class="section">
<div class="slide" data-anchor="slide1">Slide 2.1</div>
<div class="slide" data-anchor="slide2">Slide 2.2</div>
</div>
<div class="section">Section 3</div>
<div class="section">Section 4</div>
</div>
The content does not display when using selectors from other components
<div id="fullpage">
<div class="section">
<c:home-header-section></c:home-header-section>
</div>
<div class="section">
<c:our-story-section></c:our-story-section>
</div>
<div class="section">
<c:our-business-section></c:our-business-section>
</div>
<div class="section">
<c:our-partner-section></c:our-partner-section>
</div>
<c:footer-section></c:footer-section>
When I inspect the elements, only the background color shows and the content is hidden behind it. I'm unsure how to proceed. Any suggestions? Thanks!