hi there! is there any way to keep the sidebar from fading to white on your spider-man theme? i assume you have to go into the html, but i have very limited experience in customizing themes.
Yep! You can go into the code and find:
“#web {”
And about halfway down that big block of code you’ll find “opacity:0.15″ and you would just need to change that to “opacity:1″:
#web {display:block;width:290px;padding:5px;margin:80px 90px;background:{color:Sidebar};text-align:justify;position:absolute;opacity:0.15;-webkit-border-top-left-radius:100px;-moz-border-radius-topleft:100px;-o-border-top-left-radius:100px;border-top-left-radius:100px;-webkit-transition:all 0.3s ease-in-out;-moz-transition:all 0.3s ease-in-out;-o-transition:all 0.3s ease-in-out;transition:all 0.3s ease-in-out;}














