Emily,
Thanks for posting your link. It helps out a lot. Your code looks good. The embed divs are there. You added it correctly. The problem is your CSS. It’s not working. It took me a minute or two to realize, you have it commented out. This is your code.
/* Extras emily added
.embed {
width:48%;
float:left;
padding:0 0 0 10px;
margin:0 0 20px 0;
}
/* ======================== */
Everything is commented out between /* and the next */
You need to do this:
/* Extras emily added */
.embed {
width:48%;
float:left;
padding:0 0 0 10px;
margin:0 0 20px 0;
}