Hi there,
Go into your WordPress dashboard, click on “Appearance” -> “Editor” the style.css file should be opened within the window and locate the following;
Locate:
.site-header {
background: #fff;
border-bottom: 1px solid #f5f5f5;
position: relative;
}
Add: so that the above ^^ line looks like this;
.site-header {
background: rgb(255, 255, 255) transparent;
background: rgba(255, 255, 255, 0.8);
border-bottom: 1px solid #f5f5f5;
position: relative;
}
^^^ — the above will make your header transparent background only, not text.
Locate:
.hentry {
background: #fff;
border: 1px solid #f2f2f2;
margin-bottom: 50px;
padding: 0 0 50px;
position: relative;
}
Add: so the above line ^^ now looks like this;
.hentry {
background: rgb(255, 255, 255) transparent;
background: rgba(255, 255, 255, 0.8);
border: 1px solid #f2f2f2;
margin-bottom: 50px;
padding: 0 0 50px;
position: relative;
}
Locate:
.widget {
background: #fff;
border: 1px solid #f2f2f2;
margin-bottom: 30px;
padding: 30px;
width: 100%;
word-wrap: break-word;
-webkit-hyphens: auto;
-moz-hyphens: auto;
-ms-hyphens: auto;
hyphens: auto;
}
Add: add so the ^^ looks like below;
.widget {
background: rgb(255, 255, 255) transparent;
background: rgba(255, 255, 255, 0.8);
border: 1px solid #f2f2f2;
margin-bottom: 30px;
padding: 30px;
width: 100%;
word-wrap: break-word;
-webkit-hyphens: auto;
-moz-hyphens: auto;
-ms-hyphens: auto;
hyphens: auto;
}
Locate: (last one is footer)
.site-info {
background: #f07677;
color: #fff;
font-size: 13px;
padding: 120px 0;
text-align: center;
}
Add: make the above line to look like below;
.site-info {
background: rgb(240,118,119) transparent;
background: rgba(240,118,119,0.8);
color: #fff;
font-size: 13px;
padding: 120px 0;
text-align: center;
}
That should work, just make sure you save the style.css after you update it. The ‘0.8’ in all lines of ‘rgba(240,118,119,0.8)’ is how much transparency you want.. ‘1.0’ = none … ‘0.9’ or lower more transparency to ‘0.0’ meaning clear no background. ??
Hope the above helps.
Thank you.