If you haven't used tables much, you may want to read Basics of Tables and Images and Tables to get you started using tables in Office Live. You may also prefer that your image links don't have the beautiful bright blue default border color. To remove the border around image links I used the following code in the Style Sheet. It will apply to the entire website. a, img { border: 0px; } I thought it would be fun to have the border for the image links to change color on hover. I used this code in the Style Sheet instead of the one above: a, img { border: #deecfa; } a, img:hover { border: #f433b1; } To use the Style Sheet, you need to activate the Advanced Design Features (it's free). That is done on the Page Manager, under the Site Actions drop down menu. Once activated, the Style Sheet icon will appear in Site Designer. Click on Style Sheet, paste the code in the area provided and make sure to check the box "apply Custom CSS code to my website". |