below is the css.style code, i have try to edit several time, dont know what going wrong.. h1 { font-size: 4em; text-align: left; border:1px solid black; } #headerimg .description { font-size: 1.5em; font-style: italic; text-align: left; margin: 0 0 0 80px; border:1px solid black; } Code (markup): /* Begin Headers */ h1 { padding-top: 70px; padding-left: 30px; } Code (markup): novish here, will appreaciate for your help
By default the h1 tag is going to have padding on it. Try appending the code below. h1 { padding-bottom:0px; margin-bottom:0px; } Code (markup): Also try the same for your div. Images tend to have padding.