🔍

Hi! How do I get rid of the space sitting between the bottom of my posts and the border? sakurakai-ng

April 4, 2013

There’s an extra div that purposely put there to give that spaces. Hiding it could work.

.tweek {
    display: none;
}

I want my sidebar to have a background with opacity (like how it is) but I dont want the image and the text to have this opacity and I dont know how to do it… can you help me? unbalancd

April 4, 2013

The solution is RGBA color.

#sidebar { background : rgba(255,255,255, 0.6); }

Increase the 0.6 to increase the opaqueness of the color. The number is between 1 to 0.

Hi! I'm having trouble with transparent posts. Whenever I reblog one, It's not transparent. so is there any way to edit the html code so my theme can support transparent posts? yesterday-was-tuesday-too

April 4, 2013 2 notes

You have to remove the post background color and only put a color on its caption.

.post {
    background : transparent;
}

.caption {
    background : #fff;
}

Hi :) Unsuccessfully, I’ve tried to change the HTML so that when I add a quote my source is in a smaller font than my text. Is there a possible way to do it? amandarej

April 4, 2013

Well, look into your code at the quote post block, look for {Source} and change it to <p class="source">{Source}</p>.

And then apply this CSS in your custom CSS.

.source {
    font-size : 10px;
}

Decrease or increase the number to your preference.

How do you put space between your post? My current theme's post background has a straight shot down the page with no break between post wallmans-spitfire

April 4, 2013

I can there’s a small number of spacing but maybe it can be more. Increase the margin to get more spaces.

#posts {
    margin-top: 24px;
}

Hey, is there a way to change the spacing between photos within a photoset? The "gutter" which I think defaults to 10px. Can I change it to 5px? Thanks! jankphoto

April 4, 2013

From what I can fork from, this can do.

img.highres {
    margin-bottom: 5px;
}

Paste it in your custom CSS.

Hello, all of my posts have a slight border, but it annoys me that photosets do'nt reach all the way to the edge of the border, is there a reason for this? (sorry i'm terrible at explanations), also is there a way to stop text extending past the limits of the border sometimes if i post something with quite a lot of quotes, they're pushed into the next column, it looks so awkward. if you can help at all, would be soo appreciated tigervirus

April 4, 2013

Because it is a photoset, which served through an iframe thus making it impossible to access its contain with CSS. You’ll need to use some JavaScript to alter its width.

I got a grayscale effect on my blog (thanks to your tutorial), but how come it doesn't apply to some posts? With no pattern some of my posts are colored... Do you think you can help? dynazio

April 4, 2013

That because it is a photoset post which the images are wrap inside an iframe. Check out my new posts that covers on the photoset as well.

First of all, thanks for putting yourself out there to help people - it's really awesome of you. I'm using Pixel Union's Effector theme, and when I reblog a post containing text and add my own thoughts, there are multiple "(via xxx)" reblog attributions - one just after whatever I'm reblogging, and one at the end of the post after I've added my thoughts. This makes it look like the entire post is via the OP. Is it possible to remove the second attribution to keep clear whose thoughts are whose? spytap

April 4, 2013

That “via xxx” is on the Theme itself. And usually, if you don’t want it to be there, Tumblr will magically attribute it to the person who your reblog it from. You could just remove the post made by the person you’ve reblog from and just keep the part you needed.

Hi, I'm using the Effector theme and it's great, but I can't for the life of me work out how to sharpen up the date, notes, comments and share button at the bottom of the posts so they stand out better. They look nice and crisp when you hover over them but washed out when not. How do I get them permanently black? servant

April 4, 2013

Hello Mr. Frank,

Paste this in your custom CSS and it should help.

.meta a {
    color: #131414;
}