Love this theme but is there some shading layer I need to get rid of to make sure that my background images aren’t made to be darker when they are published? See here: http://kintsugidigitaldev.weebly.com
1 Answers
Hi Brockton,
You can remove the shading layer from the background by these basic steps:
– Open Theme tab.
– Select Edit HTML/CSS and click on main_style.css
– Go down to line 584. Simply add display:none to that css attribute so that it reads as:
.black_opacity:after {
content:””;
position:absolute;
width:100%;
height:100%;
left:0;
top:0;
background:rgba(0,0,0,.4);
z-index:2;
display:none;
}
Click on SAVE button on the top right side then publish your site to see the change.
Thanks.
Please login or Register to submit your answer