Contains theme-related question and answers, html and css tutorials, resources of all types.

Themes are located on the website (click the link labeled "tumblr themes").

un-et-deux-deactivated20120311 said: Hello. I have a html question - how do I make the image in the blockquote smaller or cut off overflow? Your help would be very appreciated. Thanks.

you can insert the following in the CSS (after <style> tag)

blockquote img {max-width:XXXpx;}

Replace XXX with a number of your choice (smaller than your post width, generally 500, 400 or 250). 

OR you can find the CSS tag for the post (I usually ID my post div layers “main” or “entry”) and insert the following in the CSS:

overflow:hidden;

But for this one, you need to make sure the CSS tag for the post actually has the width property in it. So example:

#main {
width:400px;
position:absolute;
left:200px;top:50px;
overflow:hidden;
}

Hopefully, that was clear. It would be easier if you told me in specific which theme so I can edit it for your or something. 

Posted on February 25, 2012 with 3 notes
tagged: questions. questions with tutorial answers.
  1. ettudis posted this