Stupid blogspot question

There is a 500px limit to the top edge, resize to that and you will be fine.
 
Thanks for the help. Looking at my html, it does have sizes stated already. What I've got is:
<a title="Untitled by the matt1, on Flickr" href="http://www.flickr.com/photos/the-matt/3179284341/"><img height="375" alt="" src="http://farm4.static.flickr.com/3447/3179284341_93ab9797ab.jpg" width="500" /></a>

Should this be working, or am I not quite getting this?
When I do right-click, properties it states that the image is 508 pixels wide, 383 high, but it still looks square to me...
 
I think (I can't find the link for it now) but you amend the template so that the img section reads something like

.post img {
padding: 4px;
border: 1px solid $borderColor;
max-width:600px;
width: expression(this.width > 600 ? 600: true);

And the image is resized to fit properly for you when you embed the html.

There's a bit more info on it here. Obviously the max width will need to be set to the width of your blog entry main page. I use the same 800px width images that I post on the forums and post them in my Astro blog and blogger resizes them at render time correctly to fit.
 
try using it this way <img width='320' src='http://www.virtualvideomap.com/animals/087.jpg'/> - this works in mine
 
It looks like it's not in the HTML, but in the CSS where the problem is.

The outer wrapper is set to 660px, with the main-wrapper at 410 and the right hand sidebar at 210 with a few pixels spare to allow for padding etc.

If you don't want to change the structure of the page too much you could decrease the size of the sidebar to to 130px and increase the main-wrapper to 500px.

That should allow you to show a post 500px wide, but don't forget to make a note of the original values before you change them in case it breaks the whole structure of the page.

/* Outer-Wrapper
----------------------------------------------- */
#outer-wrapper {
width: 660px;
margin:0 auto;
padding:10px;
text-align:left;
font: normal normal 100% 'Trebuchet MS',Trebuchet,Verdana,Sans-serif;
}
#main-wrapper {
width: 410px;
float: left;
word-wrap: break-word; /* fix for long text breaking sidebar float in IE */
overflow: hidden; /* fix for long non-text content breaking IE sidebar float */
}
#sidebar-wrapper {
width: 220px;
float: right;
word-wrap: break-word; /* fix for long text breaking sidebar float in IE */
overflow: hidden; /* fix for long non-text content breaking IE sidebar float */
}
/* Headings


Personally I would increase the size of the page to 800px, that will allow you 520 for posts and a 250 side bar using the same padding, the code that needs changing for that (as far as I can see) is below, but again back up the original CSS before making any changes.

Hope this helps

#header-wrapper {
width:660px;


change to

#header-wrapper {
width:800px;


#outer-wrapper {
width: 660px;


change to

#outer-wrapper {
width: 800px;


#main-wrapper {
width: 410px;


change to

#main-wrapper {
width: 520px;


#sidebar-wrapper {
width: 220px;

change to

#sidebar-wrapper {
width: 250px;


#footer {
width:660px;


change to

#footer {
width:800px;
 
Back
Top