Hi, I want my background image to be transparent and the rest not to be inside! I can do it? I work with bootstrap ...
here is the split of my html
<section id="startseite" class="start-section">
<div class="container">
<h1><span style="opacity: 1.0;">Interne Links</span></h1>
<div class="row">
<div class="col-lg-12">
<section id="Startseite" class="pfblock">
<div class="row">
....//Here are Elements how text and divs
</div>
</section>
</div>
</div>
</div>
</section>
The following is a snippet of CSS:
.start-section {
height: 100%;
padding-top: 150px;
text-align: center;
background-image:url('../img/bg.jpg');
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
opacity: 0.7;
}
Info: Transparency 0.7 works, but then I get all transparent :(
source
share