do you have a code that makes photos all same height and width?
img { width: 100%; height: auto; }
let's talk about Bridgerton tea, my ask is open

Noah Kahan

Product Placement
hello vonnie
PUT YOUR BEARD IN MY MOUTH
Monterey Bay Aquarium

@theartofmadeline
The Stonewall Inn

Discoholic 🪩
Fai_Ryy
Aqua Utopia|海の底で記憶を紡ぐ

titsay
cherry valley forever
I'd rather be in outer space 🛸
Today's Document
Claire Keane
trying on a metaphor
Show & Tell

seen from Türkiye

seen from United States
seen from Indonesia
seen from United States

seen from Malaysia

seen from Russia
seen from Canada
seen from United States
seen from Brazil
seen from United States
seen from United States
seen from France

seen from Russia
seen from Malaysia

seen from United States

seen from United States
seen from Ecuador

seen from United States
seen from Türkiye
seen from Albania
@thesnippetx
do you have a code that makes photos all same height and width?
img { width: 100%; height: auto; }

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
You have a post about making grascale filters. But how can I make the same with hover-trick? I mean, it's shown b&w but if hover it becomes colour.
You have to place the filter in the hover state instead.
div:hover {// filter stuff}
On my 2nd blog when i reblog something the comments come up with it, is there any possible way so people cant see them unless the click the picture?
If you're talking about the previous comment from the original poster, if you want remove it completely, you can just delete the comment before you submit the rev logged post. If you want to only show it on permalink page, you can use the {{more}} block and add before the comment so that they have to click to read more. You can find it while you editing the post and it looks like a dotted line or separator.
Hi Snipplx, I thought I was pretty savvy at Tumblr HTML because I how my blog looks but I've managed to make it so certain types of posts come up blank and I cannot find any resources online or any idea how to fix it. From what I can tell, it's only Text and Photos that show up when I post them but not Links, Quotes or the others (some I wouldn't care about because I never used them, but it's still be nice. Can I send you my code somehow and have you figure out where I went wrong? Thank you!
This should able to help : Tumblr Documentation
Where on the html do you put the code for showing the page number? Thanks
It should be anywhere in the body of the document. Anywhere that you want to place it, but make sure before the closing of the <body> tag.
Something like :
...{PageNumber}
Basically, it depends on where on the document that you want it to be show.

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
The code that makes the posts black and white, and then in full color again on hover, doesn't work for some posts. (I think it's mainly photo/gif sets.) Any way to fix it?
As mentioned, its not really work for every image, especially gif and photoset. Furthermore, its compatibility issue means that it can only work on Webkit based browser.
For now, there're no direct solution. You can use plugin to do it for you, for example, Hoverizr and other on the wild.
My problem is with positioning; my theme seems to be unfixed; for example when I open my url via an iPhone or an iPad or minimize the browser window, the sidebars and the menu would scroll down the posts and a link saying "Scroll to Info & Navigation" would appear on top. I have tried everything on the Internet. I tried to change in the CCS box and in the HTML, from absolute to fixed, but still nothing changed. How can I make it always look the same? in term of positioning. thanks in advance :")
I believe that's because your theme was built responsively. So it will adapt to its browser size. Thus, you're getting such layout.
If you don't like it, you can try removing/altering the code by removing this line of code,
I don't know if its gonna work, but I suppose that it should. You can try it to be sure.
Good luck.
You're doing a good thing, friend!
Thank you! :)
Sorry.
Hello everyone.
Sorry for the lack of activity in here. We have been busy with our lives and there are just no time can be spent in here. We will get back to answering all of your questions as soon as possible, but not in this few weeks or so.
Again, apologise for the quietness and for those who have been asking questions in this few weeks.
Ciao.
Hi! How do I get rid of the space sitting between the bottom of my posts and the border?
There's an extra div that purposely put there to give that spaces. Hiding it could work. .tweek { display: none; }

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
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?
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?
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?
Well, look into your code at the quote post block, look for `{Source}` and change it to `
{Source}
`.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
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!
From what I can fork from, this can do. img.highres { margin-bottom: 5px; }Paste it in your custom CSS.

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
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
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?
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.