Hey Vees, I'm trying to doctor up my tumblr theme a bit. I've got it looking pretty good so far, but I was wondering. In the Effector default theme, it has these big blocky text boxes for text posts, and I was wondering if there was a way to make them more translucent, so that the art that I have as a background can show through at bit? Your theme is pretty snazzy, so I thought you might know.
Looks like on your theme, the class is post-panel, so look for something like:
You basically want to go into the .post-panel section of code, and find the background line. And change that line form background: #FFF; to
background: rgba(255,255,255,0.8);
That will allow you to decide the background’s transparency with that last number, which ranges from 1, fully opaque, to 0, fully transparent. You can also control the background of the post panel’s color by putting in the appropriate RGB triplet, eg 150,150,255 for a dilute, blue jeansy shade of blue.