enapinupieway
New Member
I cannot get Slogan! (id h2) to raise above the picture. h1 is perfectly fine, but not h2.I am new to CSS, HTML, and Stackoverflow if that meens anything.I appreciate the help in advance.The HTML:\[code\]<html><head> <link href="http://stackoverflow.com/questions/14516216/HomePage.css" rel="stylesheet" type="text/css"></head><body><div id="Icon"> <div id="h1">Name</div> <img src="http://stackoverflow.com/questions/14516216/RightArrow.jpg" class="img-circle"> <div id="h2">Slogan!</div></div>\[/code\]The CSS:\[code\]#h1{ line-height:120px;/*to lower it*/ position:absolute; left:-150px; font-size:38.5px;}#h2{ line-height:-300px/*to raise it*/ position:absolute; right:400px; font-size:38.5px;}#Icon{ position:relative; margin-top:25px; margin-bottom:100px; margin-left:600px;}\[/code\]