There’s an extra div that purposely put there to give that spaces. Hiding it could work.
.tweek {
display: none;
}
There’s an extra div that purposely put there to give that spaces. Hiding it could work.
.tweek {
display: none;
}
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.
You have to remove the post background color and only put a color on its caption.
.post {
background : transparent;
}
.caption {
background : #fff;
}
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.
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;
}
From what I can fork from, this can do.
img.highres {
margin-bottom: 5px;
}
Paste it in your custom CSS.
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.
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.
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.
Hello Mr. Frank,
Paste this in your custom CSS and it should help.
.meta a {
color: #131414;
}