okay so my video embed thing still isnt happening (im a mac user btw)
also, was wondering, ow do i make the space a little bigger (where i post pics/my general posts?)
my pics tend to overlap onto the border :S
There's two ways you can do this, either simply choose a larger template for your blog, or edit your existing template codes. I learned the latter, only last night.
If you're using Blogger, and want to edit the codes, to get a custom width, the following should do the trick.
Open up your template (
Design > Edit HTML). Before you begin, I'd recommend saving a copy of the existing template, in case something goes wrong, later on.
Find the section of coding for the wrappers. Easiest way is to click,
Edit > Find (using your internet browser), and type in "outer-wrapper", which should bring you to the beginning of the codes you'll want to edit it.
The
outer-wrapper is the overall width of your blog. The
main-wrapper is the width of your posts, and the
sidebar-wrapper, is of course, your sidebar.
Some say, with their template, that the width is in pixels, mine is in percentages though, and I don't seem to have a width listed for the outer-wrapper.
Code should look something like the following, I bolded the width line, where you can edit the percentage or pixels. Use the
Preview button to see how your changes look, until you have it the way you like, then click
Save Template.
/* Outer-Wrapper
----------------------------------------------- */
#outer-wrapper {
margin:0;
padding:10px;
text-align:$startSide;
font: $bodyfont;
}
#main-wrapper {
margin-$startSide: 2%;
width: 73%;
float: $startSide;
display: inline; /* fix for doubling margin in IE */
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 {
margin-$endSide: 2%;
width: 20%;
float: $endSide;
display: inline; /* fix for doubling margin in IE */
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 */
}
A note, I've been told that in same codes, your main and sidebar wrapper widths should not exceed the outer-wrapper's width when combined. Seeing as the outer wrapper width isn't listed in the above coding, I proceeded regardless. If you can see your outer-wrapper width though, you might want to consider this.
Hope this helps! Let me know if any of it doesn't make sense or you're still confused!